Parcourir la source

局方报文查询修改

zhongxiaoyu il y a 2 ans
Parent
commit
4d7c96ffcf

+ 1 - 1
public/config.js

@@ -69,7 +69,7 @@ var DATACONTENT_ID = {
   flightDataQuery: 1803439, //数据查询-航班-表格
   waybillDataQuery: 1803441, //数据查询-运单-表格
   freightDataQuery: 1803440, //数据查询-货物-表格
-  messageDataQuery: null, //数据查询-报文-表格
+  messageDataQuery: 100103, //数据查询-报文-表格
 
   /***-----高级查询------***/
   baggageTypeId: 86, //高级查询-特殊行李类型下拉选项查询-id

+ 6 - 0
public/nodeCode.js

@@ -31,3 +31,9 @@ var NODE_CODE = {
   RCF报: '理货',
   CARGOS_HANDOVER_STATUS99: '货站交接',
 }
+
+var MESSAGE_TYPE = {
+  FFM: 'FFM',
+  IMP_TALLY: '理货',
+  FSUDLV: '出库',
+}

+ 6 - 6
src/router/routes/routes-file-five.ts

@@ -73,12 +73,12 @@ const HomeRoutes = {
       meta: { title: '货物查询', roles: ['freight_inquiry_page'] },
       component: () => import('@/views/dataQuery/freight/index.vue'),
     },
-    // {
-    //   path: '/dataQuery/messageQuery',
-    //   name: 'MessageQuery',
-    //   meta: { title: '局方报文' },
-    //   component: () => import('@/views/dataQuery/message/index.vue'),
-    // },
+    {
+      path: '/dataQuery/messageQuery',
+      name: 'MessageQuery',
+      meta: { title: '局方报文' },
+      component: () => import('@/views/dataQuery/message/index.vue'),
+    },
   ],
 }
 

+ 43 - 10
src/views/dataQuery/message/index.vue

@@ -54,7 +54,7 @@
               />
             </el-select>
           </el-form-item>
-          <el-form-item prop="keyWords">
+          <el-form-item prop="waybillNO">
             <el-input
               v-model.trim="formData.waybillNO"
               size="default"
@@ -85,6 +85,7 @@
         ref="tableRef"
         :data="tableData"
         :columns="tableColumns"
+        :column-props="{ formatter }"
         sequence
         @scroll-over="load"
       />
@@ -105,7 +106,12 @@ import SimpleTable from '@/components/SimpleTable/index.vue'
 import { ElMessage, FormInstance } from 'element-plus'
 import { parseTime } from '@/utils/validate'
 import { useTableColumnSet } from '@/hooks/useTableColumnSet'
-import { CommonData, CommonTableColumn, CommonValue } from '~/common'
+import {
+  CommonData,
+  CommonTableColumn,
+  CommonTableFormatter,
+  CommonValue,
+} from '~/common'
 import { Query } from '@/api/webApi'
 
 const today = parseTime(new Date(), '{y}-{m}-{d}') as string
@@ -141,14 +147,17 @@ const datePreTitle = (title: string) => {
   return <div class="date-pre-title">{title}:</div>
 }
 
-const messageTypeOptions = ref([
-  {
-    value: '1',
-    label: '1',
-  },
-])
+const messageTypeOptions = ref(
+  Object.entries(MESSAGE_TYPE).map(([value, label]) => ({
+    label,
+    value,
+  }))
+)
 
 const waybillValidator = (rule: any, value: any, callback: any) => {
+  if (!value) {
+    return callback()
+  }
   const notMatched = [
     /^[0-9]{8}$/,
     /^[0-9]{11}$/,
@@ -241,6 +250,10 @@ const tableInit = () => {
 const { columnChecked } = useTableColumnSet(tableColumns)
 
 const columns = [
+  {
+    columnName: 'waybillNO',
+    columnLabel: '运单号',
+  },
   {
     columnName: 'fileName',
     columnLabel: '文件名称',
@@ -264,18 +277,20 @@ const columns = [
   {
     columnName: 'messageDetails',
     columnLabel: '报文明细',
+    showOverflowTooltip: true,
+    width: 300,
   },
 ]
 onMounted(() => {
   tableColumns.value = columns.map(column => ({
     columnDescribe: '',
     dataType: '',
-    needCount: 0,
+    needCount: null,
     needFilters: null,
     needGroup: null,
     needSearch: null,
     needShow: 1,
-    needSort: 0,
+    needSort: null,
     listqueryTemplateID: null,
     queryTemplateColumnSetID: null,
     queryTemplateID: null,
@@ -283,6 +298,24 @@ onMounted(() => {
     ...column,
   }))
 })
+
+const messageStateMap = {
+  in: '收',
+  out: '发',
+}
+const formatter: CommonTableFormatter = (row, column, cellValue, index) => {
+  const value = String(cellValue ?? '').trim()
+  if (['fileName', 'messageName'].includes(column.property)) {
+    return MESSAGE_TYPE[value] ?? value
+  }
+  if (column.property === 'execTime') {
+    return value.replace('T', ' ')
+  }
+  if (column.property === 'messageState') {
+    return messageStateMap[value] ?? ''
+  }
+  return value
+}
 </script>
 
 <style lang="scss" scoped>

+ 1 - 0
typings/global.d.ts

@@ -12,6 +12,7 @@ declare global {
   declare var DATACONTENT_ID: any
   declare var SERVICE_ID: any
   declare var NODE_CODE: any
+  declare var MESSAGE_TYPE: any
 }
 
 export {}