多次出库bug修改

pro
郑明梁 2 years ago
parent 1c760ada1d
commit 58eb5b87fa

@ -321,6 +321,7 @@ export default {
"12": "采购计划",
"13": "领用单据",
"14": "第三方系统单据",
"18": "多次出入库单据",
},
deleteData: {
billNo: "",

@ -165,7 +165,7 @@ export default {
},
statusMap: {
0: "草稿",
1: "已提交",
1: "未审核",
},
orderMutiVisible: false,

@ -77,6 +77,11 @@
<el-table-column label="失效日期" prop="expireDate"></el-table-column>
<el-table-column label="创建人" prop="createUserName"></el-table-column>
<el-table-column label="创建时间" prop="createTime"></el-table-column>
<el-table-column label="状态" prop="status">
<template slot-scope="scope">
<el-tag :type="statusFilterType(scope.row.status)">{{ statusMap[scope.row.status] }}</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="120px">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="auditDialog(scope.row)">审核</el-button>
@ -158,6 +163,10 @@ export default {
loading: false,
list: [],
formName: "审核使用出库",
statusMap: {
0: "草稿",
1: "未审核",
},
orderMutiVisible: false,
actDateRange: [],
detailList: [],
@ -195,6 +204,15 @@ export default {
};
},
methods: {
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
},
onReset(){
this.filterQuery={
udiCode: null,

@ -167,7 +167,8 @@ export default {
formName: "审核使用出库",
statusMap: {
0: "草稿",
1: "已提交",
1: "未审核",
2: "已审核",
},
orderMutiVisible: false,
actDateRange: [],

Loading…
Cancel
Save