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 #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'"> <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>
</template> </template>
</tablecmt> </tablecmt>
@ -3295,6 +3302,10 @@ export default {
this.dialogVisibleF = true; this.dialogVisibleF = true;
}, },
cancelReservationPackage(row){
console.log("row",row);
},
/** /**
* 打印 * 打印
*/ */

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

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

Loading…
Cancel
Save