...
|
...
|
@@ -603,6 +603,27 @@ |
|
|
Also Notify Area
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row style="padding-top: 10px">
|
|
|
<el-col :span="22" style="border-right: 1px solid #a5a5a5;border-bottom:1px solid #a5a5a5;border-left:1px solid #a5a5a5;padding: 5px">
|
|
|
<span style="font-size: 12px">
|
|
|
Special Handling Details
|
|
|
</span>
|
|
|
<el-row style="margin-bottom: -2px">
|
|
|
<el-col style="width: 100%">
|
|
|
<el-form-item>
|
|
|
<!-- 每行65个字符-->
|
|
|
<el-input
|
|
|
v-model="sphCodes"
|
|
|
show-word-limit
|
|
|
maxlength="27"
|
|
|
type="textarea"
|
|
|
:autosize="{ minRows: 1, maxRows: 9}"
|
|
|
auto-complete="off" placeholder="特殊操作代码列表,一行一个代码,最多9行"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 处理信息-->
|
|
|
<el-row style="padding-top: 10px">
|
|
|
<el-col :span="22" style="border-right: 1px solid #a5a5a5;border-bottom:1px solid #a5a5a5;border-left:1px solid #a5a5a5;padding: 5px">
|
...
|
...
|
@@ -2290,8 +2311,12 @@ Handling Information |
|
|
},
|
|
|
cer:{
|
|
|
cer_signature:' DHL GLOBAL'
|
|
|
},
|
|
|
sph:{
|
|
|
sph_code:[]
|
|
|
}
|
|
|
},
|
|
|
sphCodes: "",
|
|
|
ssr_content:"NO SOLID WOODEN PACKING MATERIALS",
|
|
|
cne_contact:{
|
|
|
contact_id:'TE',
|
...
|
...
|
@@ -3049,6 +3074,13 @@ Handling Information |
|
|
//const O38 = (worksheet['O38'] && worksheet['O38'].v) || '';
|
|
|
const X38 = (worksheet['X38'] && worksheet['X38'].v) || '';
|
|
|
const AF38 = (worksheet['AF38'] && worksheet['AF38'].v) || '';
|
|
|
//判定acc 中是否包含COU 特殊操作代码
|
|
|
const S10 = (worksheet['S10'] && worksheet['S10'].v) || '';
|
|
|
|
|
|
if (S10.includes("COU")){
|
|
|
this.sphCodes += "COU"
|
|
|
}
|
|
|
|
|
|
|
|
|
if(I18.includes("/")){
|
|
|
const inFlightInfo = I18.split('/');
|
...
|
...
|
@@ -3221,6 +3253,26 @@ Handling Information |
|
|
this.ssr_content = value; // 更新视图中的数据
|
|
|
}
|
|
|
},
|
|
|
sphCodeFormat:{
|
|
|
get(){
|
|
|
return this.sphCodes;
|
|
|
},
|
|
|
set(value){
|
|
|
const lines = value.split('\n');
|
|
|
if (lines.length > 9) {
|
|
|
this.$message.error('最多只能输入9行文本!');
|
|
|
return;
|
|
|
}
|
|
|
for (let line of lines) {
|
|
|
if (line.length > 3) {
|
|
|
this.$message.error('每行不能超过3个字符!每行一个特殊操作代码,如:ELI');
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
|
this.form.sph.sph_code = lines
|
|
|
this.sphCodes = value;
|
|
|
}
|
|
|
},
|
|
|
flightNumber: {
|
|
|
get() {
|
|
|
// 返回拼接后的完整航班号
|
...
|
...
|
@@ -3254,6 +3306,12 @@ Handling Information |
|
|
this.formattedSsrContent = newVal; // 触发计算属性的setter
|
|
|
},
|
|
|
immediate: true // 立即执行监听器
|
|
|
},
|
|
|
sphCodes:{
|
|
|
handler(newVal) {
|
|
|
this.sphCodeFormat = newVal; // 触发计算属性的setter
|
|
|
},
|
|
|
immediate: true // 立即执行监听器
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
|