|
|
|
@ -555,6 +555,11 @@
|
|
|
|
|
:headers="headers" |
|
|
|
|
multiple |
|
|
|
|
> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-icon><Plus /></el-icon> |
|
|
|
|
</el-upload> |
|
|
|
|
<el-dialog v-model="dialogVisibleA"> |
|
|
|
@ -581,6 +586,9 @@
|
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="imgName"> |
|
|
|
|
<span>易碎照</span> |
|
|
|
|
<el-upload |
|
|
|
@ -600,6 +608,8 @@
|
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="imgName"> |
|
|
|
|
<span>家配照</span> |
|
|
|
|
<el-upload |
|
|
|
@ -3296,9 +3306,10 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
// 复核签收确认弹窗 |
|
|
|
|
submitForm() { |
|
|
|
|
console.log(this.reservationId); |
|
|
|
|
console.log(this.CheckStore,'要处理的值'); |
|
|
|
|
this.checkloading=true;//开启复核签收加载效果 |
|
|
|
|
this.signBox = false; |
|
|
|
|
// this.signBox = false; |
|
|
|
|
// console.log('--------------->this.signtitle', this.signtitle); |
|
|
|
|
// console.log('--------------->this.signtitle', this.submitForm); |
|
|
|
|
let row = {}; |
|
|
|
@ -3330,22 +3341,21 @@ export default {
|
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
const pushPhotoToRow = (photoArray, photoType) => { |
|
|
|
|
|
|
|
|
|
photoArray.forEach(item => { |
|
|
|
|
row.map[photoType].push({ |
|
|
|
|
name: item.response.data.originalName, |
|
|
|
|
name: item.response && item.response.data ? item.response.data.originalName : '', |
|
|
|
|
reservationId: this.reservationId, |
|
|
|
|
type: photoType, |
|
|
|
|
urlRoute: item.response.data.link, |
|
|
|
|
urlRoute: item.response && item.response.data ? item.response.data.link : item.url, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
pushPhotoToRow(this.DoorstepPhoto, 'photo_1'); |
|
|
|
|
pushPhotoToRow(this.StackingPhoto, 'photo_2'); |
|
|
|
|
pushPhotoToRow(this.FragilePhotos, 'photo_3'); |
|
|
|
|
pushPhotoToRow(this.HomePhotos, 'photo_4'); |
|
|
|
|
pushPhotoToRow(this.SignForPhotos, 'photo_5'); |
|
|
|
|
console.log(row, '准备提交的参数'); |
|
|
|
|
this.TCloading = true; //禁止确定 |
|
|
|
|
this.signBox = false; |
|
|
|
|
getOneclickq(row) |
|
|
|
@ -3538,10 +3548,42 @@ export default {
|
|
|
|
|
handleSign(row) { |
|
|
|
|
console.log('签收>>>>>>>>>>', row); |
|
|
|
|
console.log(row.signId, '复合签收'); |
|
|
|
|
this.reservationId =row.id |
|
|
|
|
$_getDetail({ id: row.signId }).then(res => { |
|
|
|
|
console.log(res, '复合返回值'); |
|
|
|
|
if(res.data.data){ |
|
|
|
|
this.CheckStore=res.data.data |
|
|
|
|
|
|
|
|
|
if(res.data.data.printVOList){ |
|
|
|
|
// DoorstepPhoto 上门照片 |
|
|
|
|
// StackingPhoto 堆码照片 |
|
|
|
|
// FragilePhotos 易碎照 |
|
|
|
|
// HomePhotos 家配照 |
|
|
|
|
// SignForPhotos 签收照 |
|
|
|
|
this.DoorstepPhoto=[] |
|
|
|
|
this.StackingPhoto=[] |
|
|
|
|
this.FragilePhotos=[] |
|
|
|
|
this.HomePhotos=[] |
|
|
|
|
this.SignForPhotos=[] |
|
|
|
|
res.data.data.printVOList.forEach(item=>{ |
|
|
|
|
if(item.type =='photo_1'){ |
|
|
|
|
this.DoorstepPhoto.push({name:'',url:item.urlRoute}) |
|
|
|
|
} |
|
|
|
|
if(item.type =='photo_2'){ |
|
|
|
|
this.StackingPhoto.push({name:'',url:item.urlRoute}) |
|
|
|
|
} |
|
|
|
|
if(item.type =='photo_3'){ |
|
|
|
|
this.FragilePhotos.push({name:'',url:item.urlRoute}) |
|
|
|
|
} |
|
|
|
|
if(item.type =='photo_4'){ |
|
|
|
|
this.HomePhotos.push({name:'',url:item.urlRoute}) |
|
|
|
|
} |
|
|
|
|
if(item.type =='photo_5'){ |
|
|
|
|
this.SignForPhotos.push({name:'',url:item.urlRoute}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
console.log(this.CheckStore,'data'); |
|
|
|
|
console.log(res.data.data,'res'); |
|
|
|
|
} |
|
|
|
@ -3590,6 +3632,7 @@ export default {
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.reservationId = row.reservationId; //存储当前行的ID |
|
|
|
|
console.log(row,'当前行数据'); |
|
|
|
|
this.signtitle = '一键签收'; |
|
|
|
|
this.signform = row; |
|
|
|
|
this.TcForm = row; |
|
|
|
|