作者 唐俊升

Merge remote-tracking branch 'origin/master'

@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 3
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 - <title>易通链快速通关申报平台</title> 6 + <title>物流信息平台</title>
7 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> 7 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
8 </head> 8 </head>
9 9
@@ -14,4 +14,4 @@ @@ -14,4 +14,4 @@
14 <!-- built files will be auto injected --> 14 <!-- built files will be auto injected -->
15 </body> 15 </body>
16 16
17 -</html>  
  17 +</html>
@@ -20,7 +20,7 @@ @@ -20,7 +20,7 @@
20 20
21 <div align="center" style="height: 66px;line-height: 66px;"> 21 <div align="center" style="height: 66px;line-height: 66px;">
22 <!-- <img id="logo" src="~@/assets/logo1.png">--> 22 <!-- <img id="logo" src="~@/assets/logo1.png">-->
23 - <h1 id="logo-text" style="color:white;display: inline-block;font-weight: 600;font-size: 15px;line-height: 50px"> &nbsp; &nbsp;物流公共信息服务平台</h1> 23 + <h1 id="logo-text" style="color:white;display: inline-block;font-weight: 600;font-size: 15px;line-height: 50px"> &nbsp; &nbsp;物流信息平台</h1>
24 </div> 24 </div>
25 <template v-for="(item,index) in menu"> 25 <template v-for="(item,index) in menu">
26 <el-submenu :index="index+''" v-if="item.hasChild"> 26 <el-submenu :index="index+''" v-if="item.hasChild">
@@ -603,6 +603,27 @@ @@ -603,6 +603,27 @@
603 Also Notify Area 603 Also Notify Area
604 </el-col> 604 </el-col>
605 </el-row> 605 </el-row>
  606 + <el-row style="padding-top: 10px">
  607 + <el-col :span="22" style="border-right: 1px solid #a5a5a5;border-bottom:1px solid #a5a5a5;border-left:1px solid #a5a5a5;padding: 5px">
  608 + <span style="font-size: 12px">
  609 + Special Handling Details
  610 + </span>
  611 + <el-row style="margin-bottom: -2px">
  612 + <el-col style="width: 100%">
  613 + <el-form-item>
  614 + <!-- 每行65个字符-->
  615 + <el-input
  616 + v-model="sphCodes"
  617 + show-word-limit
  618 + maxlength="27"
  619 + type="textarea"
  620 + :autosize="{ minRows: 1, maxRows: 9}"
  621 + auto-complete="off" placeholder="特殊操作代码列表,一行一个代码,最多9行"></el-input>
  622 + </el-form-item>
  623 + </el-col>
  624 + </el-row>
  625 + </el-col>
  626 + </el-row>
606 <!-- 处理信息--> 627 <!-- 处理信息-->
607 <el-row style="padding-top: 10px"> 628 <el-row style="padding-top: 10px">
608 <el-col :span="22" style="border-right: 1px solid #a5a5a5;border-bottom:1px solid #a5a5a5;border-left:1px solid #a5a5a5;padding: 5px"> 629 <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 @@ -2290,8 +2311,12 @@ Handling Information
2290 }, 2311 },
2291 cer:{ 2312 cer:{
2292 cer_signature:' DHL GLOBAL' 2313 cer_signature:' DHL GLOBAL'
  2314 + },
  2315 + sph:{
  2316 + sph_code:[]
2293 } 2317 }
2294 }, 2318 },
  2319 + sphCodes: "",
2295 ssr_content:"NO SOLID WOODEN PACKING MATERIALS", 2320 ssr_content:"NO SOLID WOODEN PACKING MATERIALS",
2296 cne_contact:{ 2321 cne_contact:{
2297 contact_id:'TE', 2322 contact_id:'TE',
@@ -3049,6 +3074,13 @@ Handling Information @@ -3049,6 +3074,13 @@ Handling Information
3049 //const O38 = (worksheet['O38'] && worksheet['O38'].v) || ''; 3074 //const O38 = (worksheet['O38'] && worksheet['O38'].v) || '';
3050 const X38 = (worksheet['X38'] && worksheet['X38'].v) || ''; 3075 const X38 = (worksheet['X38'] && worksheet['X38'].v) || '';
3051 const AF38 = (worksheet['AF38'] && worksheet['AF38'].v) || ''; 3076 const AF38 = (worksheet['AF38'] && worksheet['AF38'].v) || '';
  3077 + //判定acc 中是否包含COU 特殊操作代码
  3078 + const S10 = (worksheet['S10'] && worksheet['S10'].v) || '';
  3079 +
  3080 + if (S10.includes("COU")){
  3081 + this.sphCodes += "COU"
  3082 + }
  3083 +
3052 3084
3053 if(I18.includes("/")){ 3085 if(I18.includes("/")){
3054 const inFlightInfo = I18.split('/'); 3086 const inFlightInfo = I18.split('/');
@@ -3221,6 +3253,26 @@ Handling Information @@ -3221,6 +3253,26 @@ Handling Information
3221 this.ssr_content = value; // 更新视图中的数据 3253 this.ssr_content = value; // 更新视图中的数据
3222 } 3254 }
3223 }, 3255 },
  3256 + sphCodeFormat:{
  3257 + get(){
  3258 + return this.sphCodes;
  3259 + },
  3260 + set(value){
  3261 + const lines = value.split('\n');
  3262 + if (lines.length > 9) {
  3263 + this.$message.error('最多只能输入9行文本!');
  3264 + return;
  3265 + }
  3266 + for (let line of lines) {
  3267 + if (line.length > 3) {
  3268 + this.$message.error('每行不能超过3个字符!每行一个特殊操作代码,如:ELI');
  3269 + return;
  3270 + }
  3271 + }
  3272 + this.form.sph.sph_code = lines
  3273 + this.sphCodes = value;
  3274 + }
  3275 + },
3224 flightNumber: { 3276 flightNumber: {
3225 get() { 3277 get() {
3226 // 返回拼接后的完整航班号 3278 // 返回拼接后的完整航班号
@@ -3254,6 +3306,12 @@ Handling Information @@ -3254,6 +3306,12 @@ Handling Information
3254 this.formattedSsrContent = newVal; // 触发计算属性的setter 3306 this.formattedSsrContent = newVal; // 触发计算属性的setter
3255 }, 3307 },
3256 immediate: true // 立即执行监听器 3308 immediate: true // 立即执行监听器
  3309 + },
  3310 + sphCodes:{
  3311 + handler(newVal) {
  3312 + this.sphCodeFormat = newVal; // 触发计算属性的setter
  3313 + },
  3314 + immediate: true // 立即执行监听器
3257 } 3315 }
3258 } 3316 }
3259 } 3317 }
@@ -2989,7 +2989,7 @@ Handling Information @@ -2989,7 +2989,7 @@ Handling Information
2989 if (totalVolume>0){ 2989 if (totalVolume>0){
2990 totalVolume = Math.floor(totalVolume * 100) / 100; 2990 totalVolume = Math.floor(totalVolume * 100) / 100;
2991 } 2991 }
2992 - 2992 + this.form.bill.quantity_volume=totalVolume;
2993 return { 2993 return {
2994 converted: output.trim(), 2994 converted: output.trim(),
2995 totalVolume: totalVolume 2995 totalVolume: totalVolume