|
|
|
@ -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,
|
|
|
|
|