|
|
|
@ -141,6 +141,7 @@
|
|
|
|
|
slotProps.scope.row.sijiSigningStatus == '司机已签收' && |
|
|
|
|
slotProps.scope.row.wenyuanSigningStatus == '文员待审核' |
|
|
|
|
" --> |
|
|
|
|
|
|
|
|
|
<el-text |
|
|
|
|
v-if=" |
|
|
|
|
slotProps.scope.row.sijiSigningStatus == '司机已签收' && |
|
|
|
@ -180,7 +181,7 @@
|
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> --> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<el-row class="el-fy"> |
|
|
|
|
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
|
|
|
|
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
@ -1425,34 +1426,16 @@ export default {
|
|
|
|
|
this.name[this.name.length - 1].url = data.data.link; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 通用的图片上传成功处理函数 |
|
|
|
|
handleImageUploadSuccess(response, uploadFile, photoArray) { |
|
|
|
|
if (response.success === true) { |
|
|
|
|
console.log(response, '图片上传成功'); |
|
|
|
|
this.$set(photoArray, photoArray.length - 1, { url: response.data.link }); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 上门照图片上传成功 |
|
|
|
|
ImgSuccessA(response, uploadFile) { |
|
|
|
|
this.handleImageUploadSuccess(response, uploadFile, this.DoorstepPhoto); |
|
|
|
|
}, |
|
|
|
|
ImgSuccessA(response, uploadFile) {}, |
|
|
|
|
// 堆门图片上传成功 |
|
|
|
|
ImgSuccessB(response, uploadFile) { |
|
|
|
|
this.handleImageUploadSuccess(response, uploadFile, this.StackingPhoto); |
|
|
|
|
}, |
|
|
|
|
ImgSuccessB(response, uploadFile) {}, |
|
|
|
|
// 易碎图片上传成功 |
|
|
|
|
ImgSuccessC(response, uploadFile) { |
|
|
|
|
this.handleImageUploadSuccess(response, uploadFile, this.FragilePhotos); |
|
|
|
|
}, |
|
|
|
|
ImgSuccessC(response, uploadFile) {}, |
|
|
|
|
// 家配图片上传成功 |
|
|
|
|
ImgSuccessD(response, uploadFile) { |
|
|
|
|
this.handleImageUploadSuccess(response, uploadFile, this.HomePhotos); |
|
|
|
|
}, |
|
|
|
|
ImgSuccessD(response, uploadFile) {}, |
|
|
|
|
// 签收图片上传成功 |
|
|
|
|
ImgSuccessE(response, uploadFile) { |
|
|
|
|
this.handleImageUploadSuccess(response, uploadFile, this.SignForPhotos); |
|
|
|
|
}, |
|
|
|
|
ImgSuccessE(response, uploadFile) {}, |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 弹窗的勾选回调,用于更改头部数组 |
|
|
|
@ -1717,7 +1700,7 @@ export default {
|
|
|
|
|
path: '/distribution/signfor/distributionSignforedt', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
reservationId:row.reservationId, |
|
|
|
|
reservationId: row.reservationId, |
|
|
|
|
name: '待签收查看', |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
@ -2047,4 +2030,23 @@ export default {
|
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
:deep(.avue-crud) { |
|
|
|
|
display: flex; |
|
|
|
|
height: 100%; |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
:deep(.el-card__body) { |
|
|
|
|
height: 100%; |
|
|
|
|
} |
|
|
|
|
:deep(.el-card) { |
|
|
|
|
height: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
.el-fy { |
|
|
|
|
flex: 1; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|