From b19cdfd42ef26702eb00dd77e89bf9af90bc9ed4 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Wed, 01 Dec 2021 08:56:28 +0800
Subject: [PATCH] +

---
 src/views/dispatch/dispatch.vue |   76 ++++++++++++++++++++++++++++++++------
 1 files changed, 64 insertions(+), 12 deletions(-)

diff --git a/src/views/dispatch/dispatch.vue b/src/views/dispatch/dispatch.vue
index bb22f0a..c964ab0 100644
--- a/src/views/dispatch/dispatch.vue
+++ b/src/views/dispatch/dispatch.vue
@@ -1,6 +1,11 @@
 <template>
   <basic-container>
-    <div class="dispatch">
+    <div
+      :class="[
+        'dispatch',
+        $store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '',
+      ]"
+    >
       <!-- <avue-tabs :option="optionTABS" @change="handleChangeTABS"></avue-tabs>
     <span v-if="typeTABS.prop === 'tab1'"> -->
       <avue-crud
@@ -95,7 +100,7 @@
       <!-- <span v-else-if="typeTABS.prop === 'tab3'">选项卡内容3</span> -->
     </div>
   </basic-container>
-</template> 
+</template>
 
 <script>
 import {
@@ -150,6 +155,7 @@
         pageSize: 10,
         currentPage: 1,
         total: 0,
+        ...this.$store.state.control.changePageSize,
       },
       query: {},
       data: [],
@@ -216,6 +222,7 @@
         menuWidth: 160,
         align: "center",
         selection: true,
+        ...this.$store.state.control.clearOtherBut,
         column: [
           //派遣服务公司登记
           {
@@ -231,13 +238,13 @@
             rules: [
               {
                 required: true,
-                message: "请输入名称",
+                message: "请输入派遣单位名称",
                 trigger: "click",
               },
             ],
           },
           {
-            label: "保安公司",
+            label: "企业名称",
             prop: "deptId",
             type: "tree",
             overHidden: true,
@@ -254,7 +261,7 @@
             rules: [
               {
                 required: true,
-                message: "请选择保安公司",
+                message: "请选择企业名称",
                 trigger: "click",
               },
             ],
@@ -310,6 +317,7 @@
             searchSpan: 4,
             overHidden: true,
             labelWidth: 138,
+            parent: false,
             type: "tree",
             dicUrl: "/api/jurisdiction/lazy-tree",
             props: {
@@ -418,8 +426,37 @@
             // overHidden: true
           },
           {
-            label: " 负责人",
+            label: " 派遣单位联系人",
             prop: "linkman",
+            labelWidth: 138,
+            rules: [
+              {
+                required: true,
+                message: "请输入派遣单位联系人",
+                trigger: "click",
+              },
+            ],
+          },
+          {
+            label: "派遣单位联系方式",
+            prop: "phone",
+            labelWidth: 138,
+            width: 130,
+            rules: [
+              {
+                required: true,
+                message: "请输入联系方式",
+                trigger: "click",
+              },
+              {
+                validator: phones,
+                trigger: ["change", "blur"],
+              },
+            ],
+          },
+          {
+            label: " 负责人",
+            prop: "securityLinkman",
             labelWidth: 138,
             rules: [
               {
@@ -431,7 +468,7 @@
           },
           {
             label: "负责人联系方式",
-            prop: "phone",
+            prop: "cell",
             labelWidth: 138,
             width: 110,
             rules: [
@@ -443,6 +480,21 @@
               {
                 validator: phones,
                 trigger: ["change", "blur"],
+              },
+            ],
+          },
+          {
+            label: "派遣保安员数",
+            prop: "num",
+            type:"number",
+            span:24,
+            labelWidth: 138,
+            width: 110,
+            rules: [
+              {
+                required: true,
+                message: "请输入派遣保安员数",
+                trigger: "click",
               },
             ],
           },
@@ -615,7 +667,6 @@
       this.onLoad(this.page, this.query);
     },
     rowClick(row) {
-      // console.log(row);
       window.localStorage.setItem("paqiandata", JSON.stringify(row));
       this.$router.push({
         path: "/dispatchChild",
@@ -668,24 +719,25 @@
       if (this.useifid != 266) {
         values["deptId"] = this.useifid;
       }
-      // console.log(values);
       if (this.userInfo.role_name == "公安管理员") {
         values["jurisdiction"] = that.userInfo.jurisdiction;
       }
-      console.log(params);
       getdata(
         page.currentPage,
         page.pageSize,
         // Object.assign(params, this.query)
         values
       ).then((res) => {
-        // console.log(res);
         const data = res.data.data;
         this.page.total = data.total;
         this.data = data.records;
         for (var k in this.data) {
           // this.data[k]["deptId"] = that.userInfo.dept_id;
           this.data[k]["tenantName"] = that.userInfo.user_name;
+          console.log(this.data[k],123456);
+          if(this.data[k].num==-1){
+            this.data[k].num = null;
+          }
         }
         window.localStorage.setItem("paqiandataS", JSON.stringify(this.data));
         this.loading = false;
@@ -729,4 +781,4 @@
 .el-collapse-item {
   padding-top: 15px !important;
 }
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.3