Browse Source

异常审核字段改变

dev-xx
汤建军 1 year ago
parent
commit
8216537b85
  1. 13
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  2. 15
      src/views/distribution/signfor/distributionSignfortreat.vue

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

@ -471,7 +471,14 @@
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<el-button size="small" @click="handleQRCode(slotProps.scope.row)">查看二维码</el-button>
<el-text size="small" @click="handleQRCode(slotProps.scope.row)">查看二维码</el-text>
<el-text v-if="slotProps.scope.row.orderPackageLoadingStatus === '10'
|| slotProps.scope.row.orderPackageLoadingStatusName === '待装车'
|| slotProps.scope.row.orderPackageStatus !== '70'
|| slotProps.scope.row.orderPackageStatusName !== '已签收'"
size="small"
@click="cancelReservationPackage(slotProps.scope.row)">计划取消</el-text>
</template>
</template>
</tablecmt>
@ -3295,6 +3302,10 @@ export default {
this.dialogVisibleF = true;
},
cancelReservationPackage(row){
console.log("row",row);
},
/**
* 打印
*/

15
src/views/distribution/signfor/distributionSignfortreat.vue

@ -454,7 +454,7 @@
:columnList="columnList"
></edittablehead>
<el-dialog
title="异常装车包件列表"
title="异常审核列表"
v-model="abnormalBox"
width="50%"
:before-close="beforeClose"
@ -1424,12 +1424,7 @@ export default {
// width: '100px'
// },
{
label: '包件状态',
prop: 'orderPackageStatusName',
search: true,
width: '100px',
},
{
label: '冻结状态',
prop: 'orderPackageFreezeStatusName',
@ -1460,6 +1455,12 @@ export default {
search: true,
width: '100px',
},
{
label: '签收状态',
prop: 'orderPackageStatusName',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'orderPackageDeliveryStatus',

Loading…
Cancel
Save