chenjun 2 жил өмнө
parent
commit
0600ed94ea

+ 9 - 0
package-lock.json

@@ -10128,6 +10128,15 @@
         "ajv-keywords": "^3.5.2"
       }
     },
+    "script-ext-html-webpack-plugin": {
+      "version": "2.1.5",
+      "resolved": "https://registry.npmjs.org/script-ext-html-webpack-plugin/-/script-ext-html-webpack-plugin-2.1.5.tgz",
+      "integrity": "sha512-nMjd5dtsnoB8dS+pVM9ZL4mC9O1uVtTxrDS99OGZsZxFbkZE6pw0HCMued/cncDrKivIShO9vwoyOTvsGqQHEQ==",
+      "dev": true,
+      "requires": {
+        "debug": "^4.2.0"
+      }
+    },
     "select-hose": {
       "version": "2.0.0",
       "resolved": "https://registry.npmmirror.com/select-hose/-/select-hose-2.0.0.tgz",

+ 1 - 0
package.json

@@ -27,6 +27,7 @@
     "eslint-plugin-vue": "^6.2.2",
     "sass": "^1.53.0",
     "sass-loader": "^8.0.2",
+    "script-ext-html-webpack-plugin": "^2.1.5",
     "vue-template-compiler": "^2.6.11"
   }
 }

+ 1 - 0
src/router/index.js

@@ -74,6 +74,7 @@ const routes = [
       },
       {
         path: '/waybillTable',
+        
         component: () => import('@/views/securityCheck/views/waybillTable'),
         meta: {
           title: '运单管理'

+ 2 - 1
src/utils/request.js

@@ -9,7 +9,8 @@ import errorCode from '@/utils/errorCode'
 // 创建 axios 实例
 const request = axios.create({
   // API 请求的默认前缀
-  baseURL: 'dev-api',
+   baseURL: 'dev-api',
+  // baseURL: 'http://106.14.243.117:8080',
   // baseURL: 'https://aidex.setworld.net',
   timeout: 20000 // 请求超时时间
 })

+ 2 - 2
src/views/securityCheck/components/securityCheckTable.vue

@@ -72,8 +72,8 @@ export default {
       default: false
     },
     pagination: {
-      type: Object,
-      default: null
+      type: Boolean,
+      default: false
     }
   },
   data() {

+ 194 - 0
src/views/securityCheck/components/securityCheckTableWaybill.vue

@@ -0,0 +1,194 @@
+<template>
+  <div
+    class="security-check-table-wrapper"
+    :style="{ height: tableWrapperHeight }"
+  >
+    <a-table
+      :data-source="tableData"
+      :columns="columns"
+      :row-key="rowKey"
+      :row-selection="
+        withSelection
+          ? { selectedRowKeys: selectedRowKeys, onChange: onSelectChange }
+          : null
+      "
+      :rowClassName="rowClassName"
+      bordered
+      :pagination="pagination"
+      @change="handleTableChange"
+      :loading="loading"
+      :scroll="{ y: 650 }"
+    >
+      <template
+        v-if="withOperateColumn"
+        slot="operation"
+        slot-scope="text, record"
+      >
+        <div class="column-operate">
+          <span
+            class="cell-operate-edit"
+            @click="editRow(record)"
+          >修改</span>
+          <span
+            class="cell-operate-delete"
+            @click="deleteRow(record)"
+          >删除</span>
+        </div>
+      </template>
+    </a-table>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'SecurityCheckTable',
+  props: {
+    height: {
+      type: [Number, String],
+      default: '50vh'
+    },
+    tableCols: {
+      type: Array,
+      default: () => []
+    },
+    tableData: {
+      type: Array,
+      default: () => []
+    },
+    rowKey: {
+      type: String,
+      default: 'key'
+    },
+    withSelection: {
+      type: Boolean,
+      default: false
+    },
+    loading: {
+      type: Boolean,
+      default: false
+    },
+    showSummary: {
+      type: Boolean,
+      default: false
+    },
+    pagination: {
+      type: Object,
+      default: null
+    }
+  },
+  data() {
+    return {
+      selectedRowKeys: []
+    }
+  },
+  computed: {
+    columns() {
+      function setClickHandler(columns) {
+        return columns.map(col => {
+          if (col.clickHandler) {
+            col.customCell = (row, rowIndex) => {
+              return {
+                class: 'cell-click',
+                on: {
+                  click: () => {
+                    col.clickHandler(row, rowIndex)
+                  }
+                }
+              }
+            }
+          }
+          if (col.children) {
+            setClickHandler(col.children)
+          }
+          return col
+        })
+      }
+      return setClickHandler(this.tableCols)
+    },
+    tableWrapperHeight() {
+      return typeof this.height === 'number' ? this.height + 'px' : this.height
+    },
+    withOperateColumn() {
+      return this.columns.find(col => col.dataIndex === 'operation')
+    }
+  },
+  methods: {
+    onSelectChange(selectedRowKeys, selectedRows) {
+      // console.log(selectedRowKeys)
+      this.selectedRowKeys = selectedRowKeys
+    },
+    rowClassName(index) {
+      if (index.index % 2 == 0) {
+        return 'warning-row'
+      } else {
+        return 'warning-rows'
+      }
+    },
+    editRow(row) {
+      console.log('edit')
+    },
+    deleteRow(row) {
+      console.log('delete')
+    },
+    clickHandler(index) {
+      console.log(index)
+    },
+    handleTableChange(pagination, filters, sorter) {
+      this.$emit('handleTableChange', pagination)
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.security-check-table-wrapper {
+  width: 100%;
+  ::v-deep .ant-table {
+    width: 100%;
+    .ant-table-thead {
+      th {
+        padding: 18px 12px;
+      }
+      .ant-table-column-title {
+        font-size: 14px;
+        font-family: Helvetica, 'Microsoft YaHei';
+        color: #101116;
+        font-weight: bold;
+      }
+    }
+    .ant-table-tbody {
+      .warning-row {
+        background-color: #f3f5f8;
+        padding: 9px 16px;
+      }
+      .warning-rows {
+        background-color: #fff;
+        padding: 9px 16px;
+      }
+      td {
+        font-size: 14px;
+        font-family: Helvetica, 'Microsoft YaHei';
+        color: #101116;
+        &.cell-click {
+          color: #2d67e3;
+          cursor: pointer;
+        }
+      }
+      .column-operate {
+        span {
+          cursor: pointer;
+          &:not(:last-child) {
+            margin-right: 25px;
+          }
+          &.cell-operate-edit {
+            color: #2d67e3;
+          }
+          &.cell-operate-delete {
+            color: #ea4545;
+          }
+        }
+      }
+    }
+  }
+}
+</style>

+ 13 - 17
src/views/securityCheck/index.vue

@@ -46,26 +46,26 @@ export default {
           path: "/cargoCharts",
           name: "航空货物关联统计图",
         },
-        {
-          path: "/cargoRelevanceTable",
-          name: "航空货物关联统计表",
-        },
+        // {
+        //   path: "/cargoRelevanceTable",
+        //   name: "航空货物关联统计表",
+        // },
         {
           path: "/cargoStatistics",
           name: "航空货物综合统计",
         },
-        {
-          path: "/cargoTable",
-          name: "航空货物综合统计表",
-        },
+        // {
+        //   path: "/cargoTable",
+        //   name: "航空货物综合统计表",
+        // },
         {
           path: "/agent",
           name: "代理人信息统计",
         },
-        {
-          path: "/agentTable",
-          name: "代理人信息统计表",
-        },
+        // {
+        //   path: "/agentTable",
+        //   name: "代理人信息统计表",
+        // },
         {
           path: "/securityChannel",
           name: "安检通道综合效率",
@@ -73,11 +73,7 @@ export default {
         {
           path: "/comprehensive",
           name: "安检通道综合效率日月",
-        },
-        {
-          path: "/waybillTable",
-          name: "运单管理",
-        },
+        }
       ],
     };
   },

+ 2 - 1
src/views/securityCheck/views/waybillTable.vue

@@ -28,7 +28,7 @@
 
 <script>
 import SecurityCheckHeader from "../components/securityCheckHeader.vue";
-import SecurityCheckTable from "../components/securityCheckTable.vue";
+import SecurityCheckTable from "../components/securityCheckTableWaybill.vue";
 import { waybill } from "@/api/statistics/statistics.js";
 export default {
   components: { SecurityCheckHeader, SecurityCheckTable },
@@ -203,6 +203,7 @@ export default {
 <style lang="scss" scoped>
 .table-wrapper {
   padding: 0 24px;
+  
   .table-header-wrapper {
     padding-top: 24px;
   }