From cc1c0a396698648256c350f6f0fe2cb2f0b02c7e Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Wed, 27 Mar 2024 15:44:10 +0800
Subject: [PATCH] 许可按钮放出,备案审批按钮放出

---
 src/views/securityUnitOperation/economicTable.vue |  244 +++++++++++++++++++++++++++++++-----------------
 1 files changed, 158 insertions(+), 86 deletions(-)

diff --git a/src/views/securityUnitOperation/economicTable.vue b/src/views/securityUnitOperation/economicTable.vue
index 129dc33..816d370 100644
--- a/src/views/securityUnitOperation/economicTable.vue
+++ b/src/views/securityUnitOperation/economicTable.vue
@@ -1,13 +1,25 @@
 <template>
-  <basic-container>
+  <basic-container
+    :class="[
+      $store.state.control.screenSize == 1366 ? 'smallSize' : 'normalSize',
+      $store.state.control.windowWidth >= 1024 ? 'tooRowSearch1' : '',
+    ]"
+  >
     <avue-crud
+      class="tablesss smileTableFromSize"
       :option="tableOption"
-      :data="tableData"
       :table-loading="loading"
-      :page.sync="tablePage"
+      :data="tableData"
+      :page.sync="page"
       :permission="permissionList"
-      :before-open="beforeOpen"
-      @date-change="dateChange"
+      ref="crud"
+      @row-update="rowUpdates"
+      @row-save="rowSave"
+      @search-change="searchChange"
+      @search-reset="searchReset"
+      @current-change="currentChange"
+      @size-change="sizeChange"
+      @refresh-change="refreshChange"
     >
     </avue-crud>
   </basic-container>
@@ -17,10 +29,18 @@
 import XLSX from "xlsx";
 import { mapGetters } from "vuex";
 import { selectJj } from "../../api/securityUnitOperation/securityUnitOperation";
+import { lazyTreeJu, lazyTrees } from "../../api/index/index";
 export default {
   name: "公司经济情况智能分析详情表",
   data() {
     return {
+      page: {
+        pageSize: 10,
+        currentPage: 1,
+        total: 0,
+        ...this.$store.state.control.changePageSize,
+      },
+      query: {},
       value1: "",
       value2: "",
       tableData: [
@@ -55,11 +75,6 @@
         //   bz: ""
         // }
       ],
-      tablePage: {
-        pageSize: 10,
-        currentPage: 1,
-        total: 0
-      },
       tableOption: {
         excelBtn: true,
         delBtn: false,
@@ -76,8 +91,10 @@
         searchShow: true,
         searchMenuSpan: 6,
         index: true,
+        indexLabel: "序号",
         viewBtn: true,
         dialogClickModal: false,
+        ...this.$store.state.control.clearOtherBut,
         column: [
           // {
           //   label: "类别",
@@ -129,49 +146,29 @@
             prop: "enterpriseName",
             search: true,
             searchSpan: 4,
-            display: false
+            width: 300,
+            display: false,
           },
           {
             label: "所属辖区",
             prop: "jurname",
             searchSpan: 4,
-            type: "select",
+            type: "tree",
             props: {
-              label: "label",
-              value: "value"
+              label: "title",
+              value: "id",
             },
             // cascaderItem: ["city", "area"],
             // dicUrl:subofficeOptions,
-            dicData: [
-              {
-                value: "0",
-                label: "南昌市公安局"
-              },
-              {
-                value: "2",
-                label: "东湖分局"
-              },
-              {
-                value: "3",
-                label: "西湖分局"
-              },
-              {
-                value: "4",
-                label: "青云谱分局"
-              },
-              {
-                value: "5",
-                label: "青山湖分局"
-              }
-            ],
+            dicData: [],
             search: true,
             rules: [
               {
                 required: true,
                 message: "请选择所属辖区",
-                trigger: "blur"
-              }
-            ]
+                trigger: "blur",
+              },
+            ],
           },
           // {
           //   label: "时间",
@@ -187,78 +184,62 @@
           {
             label: "社保缴纳人数",
             prop: "sbnum",
-            display: false
+            display: false,
           },
           {
             label: "社保缴纳总额(万)",
             prop: "sbcount",
-            display: false
+            display: false,
+            formatter: function (row, value) {
+              return (value = value / 10000);
+            },
           },
           {
             label: "公司派遣人数",
             prop: "pcnum",
-            display: false
+            display: false,
           },
           {
-            label: "社保缴纳人数占比(%)",
+            label: "社保缴纳人数占比",
             prop: "zb",
-            display: false
+            display: false,
+            formatter: function (row, value) {
+              return (value = value * 100 + "%");
+            },
           },
           {
             label: "备注",
             prop: "bz",
-            display: false
-          }
-        ]
+            display: false,
+          },
+        ],
       },
       typeValue: "0",
       typeOptions: [
         {
           value: "0",
-          label: "全部"
+          label: "全部",
         },
         {
           value: "1",
-          label: "社保缴纳人数"
+          label: "社保缴纳人数",
         },
         {
           value: "2",
-          label: "社保缴纳总额"
+          label: "社保缴纳总额",
         },
         {
           value: "3",
-          label: "公司派遣人数"
+          label: "公司派遣人数",
         },
         {
           value: "4",
-          label: "社保缴纳人数占比"
-        }
+          label: "社保缴纳人数占比",
+        },
       ],
       subofficeValue: "0",
-      subofficeOptions: [
-        {
-          value: "0",
-          label: "南昌市公安局"
-        },
-        {
-          value: "2",
-          label: "东湖分局"
-        },
-        {
-          value: "3",
-          label: "西湖分局"
-        },
-        {
-          value: "4",
-          label: "青云谱分局"
-        },
-        {
-          value: "5",
-          label: "青山湖分局"
-        }
-      ],
       companyName: "",
-      loading: true
+      loading: true,
     };
   },
   computed: {
@@ -268,24 +249,115 @@
         addBtn: this.vaildData(this.permission.post_add, false),
         viewBtn: this.vaildData(this.permission.post_view, false),
         delBtn: this.vaildData(this.permission.post_delete, false),
-        editBtn: this.vaildData(this.permission.post_edit, false)
+        editBtn: this.vaildData(this.permission.post_edit, false),
       };
-    }
+    },
   },
   methods: {
-    dateChange() {},
-    getTableData() {
-      selectJj().then(res => {
+    rowSave(row, done, loading) {
+      adddata(row).then(
+        () => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!",
+          });
+          done();
+        },
+        (error) => {
+          window.console.log(error);
+          loading();
+        }
+      );
+    },
+    rowUpdates(row, index, done, loading) {
+      update(row).then(
+        () => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!",
+          });
+          done();
+        },
+        (error) => {
+          window.console.log(error);
+          loading();
+        }
+      );
+    },
+    searchChange(params, done) {
+      this.query = params;
+      this.page.currentPage = 1;
+      this.onLoad(this.page, params);
+      done();
+    },
+
+    searchReset() {
+      this.query = {};
+      this.onLoad(this.page);
+    },
+    currentChange(currentPage) {
+      this.page.currentPage = currentPage;
+      this.onLoad(this.page, this.query);
+    },
+    sizeChange(pageSize) {
+      this.page.pageSize = pageSize;
+      this.onLoad(this.page, this.query);
+    },
+    refreshChange() {
+      this.onLoad(this.page, this.query);
+    },
+    onLoad(page, params = {}) {
+      this.loading = true;
+      let param = {};
+      param["jurisdiction"] = params["jurname"] || "";
+      param["enterpriseName"] = params["enterpriseName"] || "";
+      param["current"] = page.currentPage;
+      param["size"] = page.pageSize;
+      selectJj(param).then((res) => {
+        const data = res.data.data;
+        this.page.total = data.total;
+        this.tableData = data.records;
+        this.$store.commit("setWindowSizeHeightAdd");
+        this.loading = false;
+      });
+    },
+    getSubOfficeData() {
+      lazyTrees().then((res) => {
         if (res.data.code === 200) {
-          this.tableData = res.data.data;
-          this.loading = false;
+          this.tableOption.column.forEach((item) => {
+            if (item.label == "所属辖区") {
+              item.dicData = res.data.data;
+            }
+          });
+        } else {
+          this.$message.error(res.msg);
         }
       });
-    }
+    },
+    getLocationParams() {
+      let url = window.location.href;
+      let urlArr = url.split("?")[1].split("&");
+      var object = new Object();
+      for (var i = 0; i < urlArr.length; i++) {
+        let mm = urlArr[i].split("=");
+        object[decodeURIComponent(mm[0])] = decodeURIComponent(mm[1]);
+      }
+      let jurisdiction = object["jurisdiction1"] || "";
+      let enterpriseName = object["enterpriseName"] || "";
+      this.query = {
+        jurisdiction: jurisdiction,
+        enterpriseName: enterpriseName,
+      };
+      this.onLoad(this.page, this.query);
+    },
   },
   mounted() {
-    this.getTableData();
-  }
+    this.getLocationParams();
+    this.getSubOfficeData();
+    this.$store.commit("setWindowSizeHeightAdd");
+  },
 };
 </script>
 <style lang="scss" scoped>

--
Gitblit v1.9.3