Browse Source

解决符合签收图片回显,

pre-production
马远东 1 year ago
parent
commit
fcf2a06fe9
  1. 4
      src/views/aftersales/aftersalesWorkOrderend.vue
  2. 53
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  3. 4
      vite.config.js

4
src/views/aftersales/aftersalesWorkOrderend.vue

@ -1033,7 +1033,7 @@ const onLoad = () => {
if (item.typesOf == 2) {
//
endFrom.value.processor.push(item.businessId);
//MessageResponsibility.value.push(item.businessId)
MessageResponsibility.value.push(item.businessId)
}
});
console.log(endFrom.value.processor, ' endFrom.value.processor');
@ -1068,7 +1068,7 @@ const onLoad = () => {
item.responsibilityRatio = item.responsibilityRatio + '%';
});
companyProportion.value = 100 - sum;
if (res.data.data.processingResultsVO.processingMoneyEntityList.length) {
if (res.data.data.processingResultsVO.processingMoneyEntityList) {
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map(
item => {
endFrom.value.result.push(item.resultType);

53
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -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;

4
vite.config.js

@ -23,9 +23,9 @@ export default ({ mode, command }) => {
// 新zyc
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.10.25:13000',
target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.25:2888',
target: 'http://192.168.6.148:9777',//CYZ
// target: 'http://192.168.6.148:9777',//CYZ
// target: 'http://192.168.10.57:13000',
// target: 'http://192.168.10.200:13000',
// target: 'http://192.168.10.29:13000',

Loading…
Cancel
Save