|
|
|
@ -99,9 +99,9 @@
|
|
|
|
|
@current-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型" prop="billTypeName" width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="往来单位" prop="fromName" width="220">
|
|
|
|
|
<el-table-column label="往来单位" prop="fromName" width="180">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" show-overflow-tooltip width="150"
|
|
|
|
|
sortable="custom"
|
|
|
|
@ -146,7 +146,7 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="提交状态" prop="exportStatus" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.status ===-1 ) | statusFilterType">{{
|
|
|
|
|
<el-tag :type="statusFilterType(scope.row.exportStatus)">{{
|
|
|
|
|
exportStatusMap[scope.row.exportStatus]
|
|
|
|
|
}}
|
|
|
|
|
</el-tag>
|
|
|
|
@ -160,7 +160,7 @@
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="150">
|
|
|
|
|
<el-table-column label="操作" width="100" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
@ -220,6 +220,11 @@
|
|
|
|
|
prop="coName"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="DI/物资编码"
|
|
|
|
|
prop="nameCode"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="规格型号"
|
|
|
|
|
prop="spec"
|
|
|
|
@ -470,6 +475,7 @@ export default {
|
|
|
|
|
2: "提交失败"
|
|
|
|
|
},
|
|
|
|
|
checkDateStatus: {
|
|
|
|
|
null:"未确认",
|
|
|
|
|
1: '已确认',
|
|
|
|
|
0: '未确认'
|
|
|
|
|
},
|
|
|
|
@ -706,15 +712,18 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
return statusMap[status]
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
false: "success",
|
|
|
|
|
true: "warning",
|
|
|
|
|
null: "",
|
|
|
|
|
1: "success",
|
|
|
|
|
0: "warning",
|
|
|
|
|
2: "danger"
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
|