Commit 4741fdde authored by zhoutong's avatar zhoutong
parents f306c9ec 497e23d3
...@@ -297,10 +297,11 @@ ...@@ -297,10 +297,11 @@
<el-table-column :label="$t('货值')" prop="worth" /> <el-table-column :label="$t('货值')" prop="worth" />
</el-table> </el-table>
<div class="overweight_order" v-if="(['overweight_exception','channel_packaging_overweight_exception'].indexOf(orderExceptionData.orderExceptionType) > -1&&handlerParams.orderExceptionHandlerResult=='update_weight_limit')||(['line_weight_exception',].indexOf(orderExceptionData.orderExceptionType) > -1&&handlerParams.orderExceptionHandlerResult=='change_line_weight')"> <div class="overweight_order" v-if="(['overweight_exception','channel_packaging_overweight_exception'].indexOf(orderExceptionData.orderExceptionType) > -1&&handlerParams.orderExceptionHandlerResult=='update_weight_limit')||(['line_weight_exception',].indexOf(orderExceptionData.orderExceptionType) > -1&&handlerParams.orderExceptionHandlerResult=='change_line_weight')">
<span>{{$t('空运订单重量上限')}}(kg)</span> <span v-if="orderExceptionData.orderExceptionType=='line_weight_exception'">{{$t('路线重量上限')}}(kg)</span>
<span v-else>{{$t('空运订单重量上限')}}(kg)</span>
<div style="width:200px;margin-left:20px"><el-input type="number" v-model="handlerParams.weightLimit"></el-input></div> <div style="width:200px;margin-left:20px"><el-input type="number" v-model="handlerParams.weightLimit"></el-input></div>
</div> </div>
<!-- 未分配客户经理 --> <!-- 未分配客户经理 -->
<div v-if="orderExceptionData.orderExceptionType=='not_customer_service_exception'"> <div v-if="orderExceptionData.orderExceptionType=='not_customer_service_exception'">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="8" v-if="orderData.consignorVO"> <el-col :span="8" v-if="orderData.consignorVO">
...@@ -1458,9 +1459,13 @@ ...@@ -1458,9 +1459,13 @@
return return
} }
} }
if(['channel_packaging_overweight_exception','line_weight_exception','overweight_exception'].indexOf(this.orderExceptionData.orderExceptionType)>-1&&this.handlerParams.orderExceptionHandlerResult=='update_weight_limit'){ if((['channel_packaging_overweight_exception','line_weight_exception','overweight_exception'].indexOf(this.orderExceptionData.orderExceptionType)>-1&&this.handlerParams.orderExceptionHandlerResult=='update_weight_limit')||(['line_weight_exception'].indexOf(this.orderExceptionData.orderExceptionType)>-1&&this.handlerParams.orderExceptionHandlerResult=='change_line_weight')){
if(!this.handlerParams.weightLimit){ if(!this.handlerParams.weightLimit){
this.$modal.msgError(this.$t('请输入空运订单上限')); if(this.orderExceptionData.orderExceptionType=='line_weight_exception'){
this.$modal.msgError(this.$t('请输入路线重量上限'));
}else{
this.$modal.msgError(this.$t('请输入空运订单上限'));
}
return return
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment