|
@@ -266,6 +266,16 @@ export default {
|
|
|
this.getSpanArr(this.selectionList);
|
|
|
}
|
|
|
});
|
|
|
+ //若没有承运商可选
|
|
|
+ if(this.carrierNameOptions[0].length==0){
|
|
|
+ //初始化
|
|
|
+ this.carrierNameOptions = [];
|
|
|
+ this.axios
|
|
|
+ .get("/api/v1/uc/getNoListCarrier")
|
|
|
+ .then((res)=>{
|
|
|
+ this.carrierNameOptions.push(res.data.data)
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
onInput(val){
|