Showing
3 changed files
with
5 additions
and
4 deletions
| ... | @@ -73,7 +73,7 @@ | ... | @@ -73,7 +73,7 @@ |
| 73 | <el-option | 73 | <el-option |
| 74 | v-for="(item, idx) in dictData.uploadStatus" | 74 | v-for="(item, idx) in dictData.uploadStatus" |
| 75 | :key="idx" | 75 | :key="idx" |
| 76 | - :label="item.description" | 76 | + :label="item.englishName" |
| 77 | :value="item.code" | 77 | :value="item.code" |
| 78 | ></el-option> | 78 | ></el-option> |
| 79 | <el-option label=" " value="null"></el-option> | 79 | <el-option label=" " value="null"></el-option> | ... | ... |
| ... | @@ -264,6 +264,7 @@ export default { | ... | @@ -264,6 +264,7 @@ export default { |
| 264 | let arr = [ | 264 | let arr = [ |
| 265 | { title: "WAYBILL", list: wab }, | 265 | { title: "WAYBILL", list: wab }, |
| 266 | { title: "INVOICE", list: inv }, | 266 | { title: "INVOICE", list: inv }, |
| 267 | + { title: "PACKING LIST", list: pink }, | ||
| 267 | { title: "OTHER FILES ", list: oth }, | 268 | { title: "OTHER FILES ", list: oth }, |
| 268 | ]; | 269 | ]; |
| 269 | this.tableData.forEach((item) => { | 270 | this.tableData.forEach((item) => { | ... | ... |
| ... | @@ -311,12 +311,12 @@ export default { | ... | @@ -311,12 +311,12 @@ export default { |
| 311 | } else if (item.uploadType == "attachmentBizType_02") { | 311 | } else if (item.uploadType == "attachmentBizType_02") { |
| 312 | item.files = res[1].list; | 312 | item.files = res[1].list; |
| 313 | } else if (item.uploadType == "attachmentBizType_03") { | 313 | } else if (item.uploadType == "attachmentBizType_03") { |
| 314 | - item.files = []; | ||
| 315 | - } else if (item.uploadType == "attachmentBizType_04") { | ||
| 316 | item.files = res[2].list; | 314 | item.files = res[2].list; |
| 315 | + } else if (item.uploadType == "attachmentBizType_04") { | ||
| 316 | + item.files = res[3].list; | ||
| 317 | } | 317 | } |
| 318 | }); | 318 | }); |
| 319 | - | 319 | + |
| 320 | this.$emit("fileDataChange", this.fileData); | 320 | this.$emit("fileDataChange", this.fileData); |
| 321 | }); | 321 | }); |
| 322 | } | 322 | } | ... | ... |
-
Please register or login to post a comment