zhaoke 9 月之前
父節點
當前提交
a211d1ebed
共有 2 個文件被更改,包括 84 次插入23 次删除
  1. 2 0
      public/config.js
  2. 82 23
      src/views/newQuery/components/table.vue

+ 2 - 0
public/config.js

@@ -29,6 +29,7 @@ window.SERVICE_ID = {
   baggageTypeId: 86, //高级查询-特殊行李类型下拉选项查询-id
   advancedQueryId: 30, //高级查询-数据查询-id
   advancedQueryNew: 93, //高级查询-数据查询-id
+  advancedRemakesId: 2006023,//高级查询-数据说明-id
 
   /***-----进港管理------***/
   arrivalAirId: 67, //进港管理-机场选择
@@ -72,6 +73,7 @@ window.SERVICE_ID = {
   baggageDetailsNew: 441, // 行李-详情列表
   baggageMessageNew: 3068, // 行李-原始报文
   baggageTime: 20039, //行李-起飞降落日期
+  baggageRemakes: 2006026, //行李-数据说明-id
 
   /***-----容器视图------***/
   containerHistory: 18026,

+ 82 - 23
src/views/newQuery/components/table.vue

@@ -755,30 +755,51 @@ export default {
         if (column.property === 'scon_number' && row['scon_number'] && row['scon_number'] != 0) {
           classes.push('cell-toUnload')
         }
-        if (column.property === 'depstandCd' && row['depstandCd_num'] >= 2) {
-          classes.push('cell-toUnload')
+        if (column.property === 'depstandCd' && row['depstandCd_num'] > 2) {
+          classes.push('cell-toBule-red')
         }
-        if (column.property === 'craftNo' && row['craftType_num'] >= 2) {
-          classes.push('cell-toUnload')
+        if (column.property === 'depstandCd' && row['depstandCd_num'] == 2) {
+          classes.push('cell-toBule')
+        }
+        if (column.property === 'craftNo' && row['craftType_num'] > 2) {
+          classes.push('cell-toBule-red')
+        }
+        if (column.property === 'craftNo' && row['craftType_num'] == 2) {
+          classes.push('cell-toBule')
         }
       }
       if (this.$route.path == '/newArrival') {
-        if (column.property === 'arrstandCd' && row['arrstandCd_num'] >= 2) {
-          classes.push('cell-toUnload')
+        if (column.property === 'arrstandCd' && row['arrstandCd_num'] > 2) {
+          classes.push('cell-toBule-red')
         }
-        if (column.property === 'craftNo' && row['craftType_num'] >= 2) {
-          classes.push('cell-toUnload')
+        if (column.property === 'arrstandCd' && row['arrstandCd_num'] == 2) {
+          classes.push('cell-toBule')
+        }
+        if (column.property === 'craftNo' && row['craftType_num'] > 2) {
+          classes.push('cell-toBule-red')
+        }
+        if (column.property === 'craftNo' && row['craftType_num'] == 2) {
+          classes.push('cell-toBule')
         }
       }
       if (this.$route.path.startsWith('/newTransfer')) {
-        if (column.property === 'Inbound_flight_stand' && row['arrstandCd_num'] >= 2) {
-          classes.push('cell-toUnload')
+        if (column.property === 'Inbound_flight_stand' && row['arrstandCd_num'] > 2) {
+          classes.push('cell-toBule-red')
         }
-        if (column.property === 'departure_flights_leave_stand' && row['depstandCd_num'] >= 2) {
-          classes.push('cell-toUnload')
+        if (column.property === 'Inbound_flight_stand' && row['arrstandCd_num'] == 2) {
+          classes.push('cell-toBule')
         }
-        if (column.property === 'craftNo' && row['craftType_num'] >= 2) {
-          classes.push('cell-toUnload')
+        if (column.property === 'departure_flights_leave_stand' && row['depstandCd_num'] > 2) {
+          classes.push('cell-toBule-red')
+        }
+        if (column.property === 'departure_flights_leave_stand' && row['depstandCd_num'] == 2) {
+          classes.push('cell-toBule')
+        }
+        if (column.property === 'craftNo' && row['craftType_num'] > 2) {
+          classes.push('cell-toBule-red')
+        }
+        if (column.property === 'craftNo' && row['craftType_num'] == 2) {
+          classes.push('cell-toBule')
         }
       }
       return classes.join(' ')
@@ -851,28 +872,35 @@ export default {
     headerClick (row, column) {
       const { property } = column
       const path = this.$route.path
-      const newPath = (path.endsWith('/in') || path.endsWith('/out')) ? true : false
-      if (!newPath && property != 'remarks') return
-      this.form.desc = row.remarks || ''
-      this.reamkeFlag = true
-      this.reamkeMap = row
+      const newPath = (path.endsWith('/in') || path.endsWith('/out') || path.endsWith('/newQueryAdvance') || path.endsWith('/newBagDetails')) ? true : false
+      if (newPath && (property == 'remarks' || property == 'luggage_describe')) {
+        if (property == 'remarks') {
+          this.form.desc = row.remarks || ''
+        } else if (property == 'luggage_describe') {
+          this.form.desc = row.luggage_describe || ''
+        }
+        this.reamkeFlag = true
+        this.reamkeMap = row
+      }
     },
     // 表格-备注-单元格点击-弹框确定
     onReamkeCheck () {
-      this.sendReamkesHttp()
+      const path = this.$route.path
+      const name = path.endsWith('/in') || path.endsWith('/out') ? 'remarks' : path.endsWith('/newQueryAdvance') ? 'luggage_describe' : 'bag'
+      this.sendReamkesHttp(name)
     },
     //发送备注请求
-    async sendReamkesHttp () {
+    async sendReamkesHttp (key) {
       const parmas = {
-        "serviceId": SERVICE_ID.transferReamkesId,
+        "serviceId": key == 'remarks' ? SERVICE_ID.transferReamkesId : key == 'luggage_describe' ? SERVICE_ID.advancedRemakesId : SERVICE_ID.baggageRemakes,
         "page": 1,
         "pageSize": 10,
         "dataContent": {
           "ID": this.reamkeMap.ID,
-          "remarks": this.form.desc
         },
         "event": "2"
       }
+      key == 'remarks' ? parmas.dataContent.remarks = this.form.desc : parmas.dataContent.luggage_describe = this.form.desc
       const { code } = await modifyData(parmas)
       if (code == 0) this.$message.success('操作成功')
       this.restTable()
@@ -968,6 +996,37 @@ export default {
         border: 2px dashed red;
       }
     }
+    td.cell-toBule {
+      background: rgba(45, 124, 255, 0.5) !important;
+      position: relative;
+      &::after {
+        content: "";
+        display: block;
+        width: 100%;
+        height: 100%;
+        position: absolute;
+        top: 0;
+        left: 0;
+        border: 2px dashed #2d7cff;
+      }
+    }
+    td.cell-toBule-red {
+      background: rgba(45, 124, 255, 0.5) !important;
+      position: relative;
+      .cell {
+        color: red;
+      }
+      &::after {
+        content: "";
+        display: block;
+        width: 100%;
+        height: 100%;
+        position: absolute;
+        top: 0;
+        left: 0;
+        border: 2px dashed #2d7cff;
+      }
+    }
   }
   .btns {
     position: absolute;