修复寄件签收图片上传页只读一张图片的问题
This commit is contained in:
parent
94a87cdc4c
commit
e2044cd860
@ -50,8 +50,8 @@
|
||||
|
||||
<el-table-column :label="$t('运单编号')" align="center" prop="billCode" min-width="150" />
|
||||
<el-table-column :label="$t('图片URL')" align="center" prop="fileUrl" min-width="100" />
|
||||
<el-table-column :label="$t('上传网点')" align="center" prop="createSiteName" min-width="100" />
|
||||
<el-table-column :label="$t('上传人')" align="center" prop="createByName" min-width="100" />
|
||||
<el-table-column :label="$t('上传网点')" align="center" prop="createSite" min-width="100" />
|
||||
<el-table-column :label="$t('上传人')" align="center" prop="createBy" min-width="100" />
|
||||
<el-table-column :label="$t('大小')" align="center" prop="volumeWeight" min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.fileSiez + "KB" }}</span>
|
||||
@ -130,7 +130,7 @@ export default {
|
||||
let scList = item.trim().split(/[;\;\,\,\n]/)||[];
|
||||
this.form.picUrl =[];
|
||||
for(let s = 0; s<scList.length; s++){
|
||||
let billCode = this.extractSubstring(item);
|
||||
let billCode = this.extractSubstring(scList[s]);
|
||||
if(this.dataMap[billCode]) return;
|
||||
let response = await getWaybillDetail(billCode)
|
||||
if(!response || response.code != 200){
|
||||
@ -163,7 +163,6 @@ export default {
|
||||
},
|
||||
/** 上传按钮操作 */
|
||||
handleScanUpload(){
|
||||
|
||||
if(!this.selection){
|
||||
this.$modal.msgError("请先上传图片!");
|
||||
return;
|
||||
|
||||
@ -51,8 +51,8 @@
|
||||
|
||||
<el-table-column :label="$t('运单编号')" align="center" prop="billCode" min-width="150" />
|
||||
<el-table-column :label="$t('图片URL')" align="center" prop="fileUrl" min-width="100" />
|
||||
<el-table-column :label="$t('上传网点')" align="center" prop="createSiteName" min-width="100" />
|
||||
<el-table-column :label="$t('上传人')" align="center" prop="createByName" min-width="100" />
|
||||
<el-table-column :label="$t('上传网点')" align="center" prop="createSite" min-width="100" />
|
||||
<el-table-column :label="$t('上传人')" align="center" prop="createBy" min-width="100" />
|
||||
<el-table-column :label="$t('大小')" align="center" prop="volumeWeight" min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.fileSiez + "KB" }}</span>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user