jinhui.wang

字典修改,历史展示箱单

......@@ -73,7 +73,7 @@
<el-option
v-for="(item, idx) in dictData.uploadStatus"
:key="idx"
:label="item.description"
:label="item.englishName"
:value="item.code"
></el-option>
<el-option label=" " value="null"></el-option>
......
......@@ -264,6 +264,7 @@ export default {
let arr = [
{ title: "WAYBILL", list: wab },
{ title: "INVOICE", list: inv },
{ title: "PACKING LIST", list: pink },
{ title: "OTHER FILES ", list: oth },
];
this.tableData.forEach((item) => {
......
......@@ -311,9 +311,9 @@ export default {
} else if (item.uploadType == "attachmentBizType_02") {
item.files = res[1].list;
} else if (item.uploadType == "attachmentBizType_03") {
item.files = [];
} else if (item.uploadType == "attachmentBizType_04") {
item.files = res[2].list;
} else if (item.uploadType == "attachmentBizType_04") {
item.files = res[3].list;
}
});
......