Browse Source

零担签收状态修改

pre-production
马远东 7 months ago
parent
commit
8e03943d60
  1. 6
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue

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

@ -4690,15 +4690,15 @@ if($useStore.getters && $useStore.getters.permission){
return;
}
let temp = {};
temp= this.LessThantruckloadListData.every(item=>item.signingStatusName == '未签收')
temp= this.LessThantruckloadListData.every(item=>item.signingStatusName == '待签收')
console.log(temp,'temp');
if(!temp){
ElMessage({
message: `要都满足条件为‘未签收’才可以批量签收`,
message: `签收状态要都满足条件为‘待签收’才可以批量签收`,
type: 'warning',
});
return;
}
console.log(temp,'temp');
this.$confirm('是否进行批量签收?')
.then(() => {
this.loading = true; //

Loading…
Cancel
Save