新增凭证选择组件
parent
059486a095
commit
1480adf506
@ -0,0 +1,178 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
title="凭证选择"
|
||||
v-if="showFlag"
|
||||
:visible.sync="showFlag"
|
||||
:modal="false"
|
||||
width="80%"
|
||||
center
|
||||
>
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="accountList"
|
||||
@current-change="handleCurrent"
|
||||
@row-dblclick="handleRowDbClick"
|
||||
>
|
||||
<el-table-column width="50" align="center">
|
||||
<template v-slot="scope">
|
||||
<el-radio
|
||||
v-model="selectedVoucherId"
|
||||
:label="scope.row.id"
|
||||
@change="handleRowChange(scope.row)"
|
||||
>{{ "" }}</el-radio
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="凭证号" align="center" prop="voucherNum" />
|
||||
<el-table-column label="凭证日期" align="center" prop="voucherTime" />
|
||||
<el-table-column label="摘要" align="center" prop="digest" />
|
||||
<el-table-column label="会计年份" align="center" prop="year" />
|
||||
<el-table-column label="会计月份" align="center" prop="period" />
|
||||
<el-table-column label="纸档位置" align="center" prop="position" />
|
||||
<el-table-column label="审核人" align="center" prop="audit" />
|
||||
<el-table-column label="制单人" align="center" prop="createBy" />
|
||||
<el-table-column label="凭证类型" align="center" prop="type">
|
||||
<template v-slot="scope">
|
||||
<dict-tag
|
||||
:type="DICT_TYPE.ACCOUNTING_VOUCHER_TYPE"
|
||||
:value="scope.row.type"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="完整性" align="center" prop="cherks">
|
||||
<template v-slot="scope">
|
||||
<dict-tag
|
||||
:type="DICT_TYPE.ACCOUNTING_FILE_STATUS"
|
||||
:value="scope.row.cherks"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="confirmSelect">确 定</el-button>
|
||||
<el-button @click="showFlag = false">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getVoucherPage } from "@/api/accounting/voucher";
|
||||
export default {
|
||||
name: "VoucherSelect",
|
||||
data() {
|
||||
return {
|
||||
showFlag: false,
|
||||
selectedVoucherId: undefined,
|
||||
selectedRow: undefined,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 会计凭证
|
||||
accountList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
companyId: null,
|
||||
company: null,
|
||||
frequency: null,
|
||||
fileType: null,
|
||||
year: null,
|
||||
period: null,
|
||||
vouNum: null,
|
||||
caseNum: null,
|
||||
catalogNum: null,
|
||||
filesNum: null,
|
||||
site: null,
|
||||
flowId: null,
|
||||
createTime: [],
|
||||
status: null,
|
||||
note: null,
|
||||
fileStatus: null,
|
||||
borrowStatus: null,
|
||||
identifyStatus: null,
|
||||
remark: null,
|
||||
recordTime: [],
|
||||
deptId: null,
|
||||
deptName: null,
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
getVoucherPage(this.queryParams).then((response) => {
|
||||
this.accountList = response.data.list;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
handleCurrent(row) {
|
||||
if (row) {
|
||||
this.selectedRow = row;
|
||||
}
|
||||
},
|
||||
//行双击选中
|
||||
handleRowDbClick(row) {
|
||||
if (row) {
|
||||
this.selectedRow = row;
|
||||
this.$emit("onSelected", this.selectedRow);
|
||||
this.showFlag = false;
|
||||
}
|
||||
},
|
||||
// 单选选中数据
|
||||
handleRowChange(row) {
|
||||
if (row) {
|
||||
this.selectedRow = row;
|
||||
}
|
||||
},
|
||||
//确定选中
|
||||
confirmSelect() {
|
||||
if (this.selectedVoucherId == null || this.selectedVoucherId == 0) {
|
||||
this.$notify({
|
||||
title: "提示",
|
||||
type: "warning",
|
||||
message: "请至少选择一条数据!",
|
||||
});
|
||||
return;
|
||||
}
|
||||
this.$emit("onSelected", this.selectedRow);
|
||||
this.showFlag = false;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
Loading…
Reference in New Issue