zhaoke il y a 1 an
Parent
commit
60fe226c52

+ 3 - 0
src/layout/mixin/publicFunc.js

@@ -8,6 +8,7 @@ export default {
       AauthTable: [],
       TauthId: null,
       TqueryId: null,
+      AqueryParams: null
     }
   },
   created () {
@@ -17,12 +18,14 @@ export default {
     const table2 = arrs.filter(item => item.auth_type == 5)
     if (table2 && table2.length) {
       const obj = table2[0]
+      this.AqueryParams = obj
       this.TqueryId = obj.queryTemplateID
       this.TauthId = obj.auth_id
     }
     if (table && table.length) {
       if (table.length == 1) {
         const obj = table[0]
+        this.AqueryParams = obj
         this.AqueryId = obj.queryTemplateID
         this.AauthId = obj.auth_id
       } else {

+ 0 - 1
src/views/newBagDetails/index.vue

@@ -220,7 +220,6 @@ export default {
           }
         }
         this.tagObj = parmObj
-        console.log(this.tagObj)
       }
       setTimeout(() => {
         this.tabIndex = index

+ 63 - 42
src/views/newContainer/index.vue

@@ -6,14 +6,18 @@
         <el-button size="small" type="primary">历史记录</el-button>
       </div>
       <div class="newContainer-top-table">
-        <scroll-pane ref="scrollPane" class="tags-view-wrapper">
-          <div v-for="(item,index) in detailsArr" class="tags-view-item" :key="index">{{ item.luggageNum }}</div>
-        </scroll-pane>
+        <el-row class="msgs-ds" :gutter="20">
+          <el-col :span="3" class="msgs-list" v-for="(item,index) in detailsArr" :key="index">{{ item.columnLabel }}:
+            <el-tooltip class="item" effect="dark" :content="item.value" placement="top">
+              <span>{{ item.value }}</span>
+            </el-tooltip>
+          </el-col>
+        </el-row>
       </div>
     </div>
     <div class="newContainer-bootom">
       <div class="newContainer-bootom-title flex">
-        <div class="manageTitle">容器基本信息</div>
+        <div class="manageTitle">容器行李列表</div>
         <div>2</div>
       </div>
       <div class="newContainer-bootom-table">
@@ -27,6 +31,7 @@
 import pf from '@/layout/mixin/publicFunc'
 import Table from '@/views/newQuery/components/table.vue'
 import ScrollPane from "@/layout/components/TagsView/ScrollPane.vue"
+import { getToken } from '@/utils/auth'
 export default {
   name: 'NewContainer',
   mixins: [pf],
@@ -46,13 +51,53 @@ export default {
     this.query = query
   },
   mounted () {
-    this.tabObj = this.query
-    this.getTableInfo()
+    const { container_ID, carrierFlights, carrierFlightsDate } = this.query
+    this.tabObj = {
+      container_ID,
+      carrierFlights,
+      carrierFlightsDate
+    }
+    this.getColumnData()
   },
   methods: {
-    async getTableInfo () {
+    // 获取表头数据
+    async getColumnData () {
+      try {
+        const { code, returnData } = await this.getQueryList(
+          SERVICE_ID.sysUserAuthId,
+          [
+            {
+              user_id: getToken('userid'),
+              auth_id: this.TauthId,
+            },
+          ]
+        )
+        if (code == 0) {
+          if (returnData && returnData.length) {
+            const msgDatas = returnData.filter(item => item.needShow)
+            this.getTableInfo(msgDatas)
+          }
+        } else {
+          this.$message.error('获取表头数据失败')
+        }
+      } catch (error) {
+        console.log(error)
+      }
+    },
+    async getTableInfo (arrs) {
       const { code, returnData } = await this.getQueryListAuth(this.TqueryId, this.query, 1, 999, this.TauthId)
-      console.log(returnData)
+      if (code == 0 && returnData && returnData.length) {
+        const datas = _.cloneDeep(arrs)
+        const datasObj = returnData[0]
+        for (const key in datasObj) {
+          datas.map(item => {
+            if (item.columnName == key) {
+              item.value = datasObj[key]
+            }
+          })
+        }
+        this.detailsArr = datas
+      }
     }
   }
 }
@@ -62,45 +107,21 @@ export default {
 .newContainer {
   height: calc(100vh - 80px);
   padding: 24px;
-  .tags-view-wrapper {
-    width: calc(100%);
-    ::v-deep .el-scrollbar__wrap {
-      // margin-top: 8.5px;
-    }
-    .tags-view-item {
-      display: inline-block;
-      position: relative;
-      cursor: pointer;
-      height: 32px;
-      line-height: 32px;
-      // border: 1px solid #767eba;
-      // border-radius: 4px;
-      font-size: 14px;
-      font-family: Microsoft YaHei;
-      font-weight: 400;
-      color: #aaacb2;
-      margin-right: 100px;
-      &:last-child {
-        margin-right: 0;
-      }
-      &.active {
-        color: #fff;
-        position: relative;
-        &::after {
-          position: absolute;
-          content: "";
-          width: 100%;
-          left: 0;
-          bottom: 0;
-          height: 3px;
-          background: #2d67e3;
-        }
+  &-top {
+    &-table {
+      margin-top: 24px;
+      background: #041741;
+      line-height: 50px;
+      color: #fff;
+      padding-left: 35px;
+      .msgs-list {
+        text-align: center;
       }
     }
   }
   &-bootom {
     margin-top: 24px;
-    height: calc(100% - 150px);
+    height: calc(100% - 180px);
     &-table {
       margin-top: 24px;
       height: 100%;

+ 1 - 0
src/views/newQuery/components/table.vue

@@ -168,6 +168,7 @@ export default {
     if (this.AauthTable && this.AauthTable.length) {
       const t = this.AauthTable.filter(item => item.auth_name == this.tableName)
       const obj = t[0]
+      this.AqueryParams = obj
       this.AqueryId = obj.queryTemplateID
       this.AauthId = obj.auth_id
     }

+ 4 - 8
src/views/systemSettings/views/newAuth/components/menu.vue

@@ -20,14 +20,11 @@
         </el-form-item>
       </div>
       <div class="flex-wrap fr-list">
-        <el-form-item class="flex1" label="页面地址">
-          <el-input size="small" clearable placeholder="请输入页面地址" v-model="form.route_info"></el-input>
+        <el-form-item label="页面地址">
+          <el-input style="width: 263px;" size="small" clearable placeholder="请输入页面地址" v-model="form.route_info"></el-input>
         </el-form-item>
-        <el-form-item class="flex1" label="文件路径">
-          <el-input size="small" clearable placeholder="请输入文件路径" v-model="form.file_link"></el-input>
-        </el-form-item>
-        <el-form-item class="flex1" label="接收参数">
-          <el-input size="small" clearable placeholder="请输入接收参数" v-model="form.pass_parameters"></el-input>
+        <el-form-item label="文件路径">
+          <el-input style="width: 263px;" size="small" clearable placeholder="请输入文件路径" v-model="form.file_link"></el-input>
         </el-form-item>
       </div>
       <el-form-item class="flex1" label="权限描述">
@@ -63,7 +60,6 @@ export default {
         route_info: '',
         file_link: '',
         auth_comment: '',
-        pass_parameters: ''
       },
     }
   },

+ 5 - 1
src/views/systemSettings/views/newAuth/components/table.vue

@@ -19,6 +19,9 @@
               <el-option v-for="(item,index) in authArrs" :key="index" :label="item.serviceName" :value="item.serviceID"></el-option>
             </el-select>
           </el-form-item>
+          <el-form-item class="flex1" label="接收参数">
+            <el-input size="small" clearable placeholder="请输入接收参数" v-model="form.queryparams"></el-input>
+          </el-form-item>
           <el-form-item class="flex1" label="权限描述">
             <el-input size="small" type="textarea" :rows="1" placeholder="请输入权限描述" v-model="form.auth_comment"></el-input>
           </el-form-item>
@@ -260,6 +263,7 @@ export default {
         auth_comment: '',
         table_width: '',
         table_height: '',
+        queryparams: '',
         serviceID: ''
       },
       tableForm: {
@@ -277,7 +281,7 @@ export default {
         needSearch: "",
         is_search: '',
         default_query_parameters: '',
-        groupName: ''
+        groupName: '',
       },
       tableData: [],
       tableDataCopys: [],