From 02bc3bfe47e3d5311a0bb041c94e70a34b1ca73c Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期二, 09 四月 2024 09:03:01 +0800
Subject: [PATCH] git ch

---
 company/src/views/business/company.vue |  134 ++++++++++++++++++++++++++++++++------------
 1 files changed, 97 insertions(+), 37 deletions(-)

diff --git a/company/src/views/business/company.vue b/company/src/views/business/company.vue
index f68566c..79e42f3 100644
--- a/company/src/views/business/company.vue
+++ b/company/src/views/business/company.vue
@@ -5,9 +5,6 @@
             <el-form-item label="浼佷笟鍚嶇О" prop="name">
                 <el-input v-model="searchForm.name" placeholder="璇疯緭鍏ヤ紒涓氬悕绉�" @keypress.enter.native="search"></el-input>
             </el-form-item>
-            <el-form-item label="鎵�灞炲晢鎴�" prop="name">
-                <el-input v-model="searchForm.name" placeholder="璇疯緭鍏ユ墍灞炲晢鎴�" @keypress.enter.native="search"></el-input>
-            </el-form-item>
             <el-form-item label="鎵�灞炵悊璧斿憳" prop="username">
                 <el-input v-model="searchForm.username" placeholder="璇疯緭鍏ユ墍灞炵悊璧斿憳" @keypress.enter.native="search"></el-input>
             </el-form-item>
@@ -19,8 +16,7 @@
         <!-- 琛ㄦ牸鍜屽垎椤� -->
         <template v-slot:table-wrap>
             <ul class="toolbar" v-permissions="['business:company:create']">
-                <li><el-button type="primary" @click="$refs.operaCompanyWindow.open('鏂板缓浼佷笟淇℃伅琛�')" icon="el-icon-plus" v-permissions="['business:company:create']">鏂板缓浼佷笟</el-button></li>
-                <li><el-button type="primary" @click="$refs.OperaCompanyDescWindow.open('璇︽儏')" icon="el-icon-plus" v-permissions="['business:company:create']">璇︽儏</el-button></li>
+                <li><el-button type="primary" @click="$refs.operaCompanyWindow.open('鏂板缓浼佷笟')" v-permissions="['business:company:create']">鏂板缓浼佷笟</el-button></li>
             </ul>
             <el-table
                 v-loading="isWorking.search"
@@ -34,12 +30,21 @@
                 <el-table-column label="鍚敤鐘舵��" min-width="100px">
                     <template slot-scope="{row}">
                         <el-switch
+                            @change="changeStatus($event, row)"
                             v-model="row.status"
                             active-color="#13ce66"
                             inactive-color="#ff4949"
                             :active-value="0"
                             :inactive-value="1">
                         </el-switch>
+                    </template>
+                </el-table-column>
+                <el-table-column label="鐢靛瓙绛捐璇佺姸鎬�" min-width="100px">
+                    <template slot-scope="{row}">
+                      <span v-if="row.signStatus === 0">寰呰璇�</span>
+                      <span v-if="row.signStatus === 1">璁よ瘉涓�</span>
+                      <span v-if="row.signStatus === 2">璁よ瘉澶辫触</span>
+                      <span v-if="row.signStatus === 3">璁よ瘉閫氳繃</span>
                     </template>
                 </el-table-column>
                 <el-table-column
@@ -49,9 +54,11 @@
                     fixed="right"
                 >
                     <template slot-scope="{row}">
-                        <el-button type="text" @click="$refs.operaCompanyWindow.open('缂栬緫浼佷笟淇℃伅琛�', row)" icon="el-icon-edit" v-permissions="['business:company:update']">鏌ョ湅璇︽儏</el-button>
-                        <el-button type="text" @click="$refs.operaCompanyWindow.open('缂栬緫浼佷笟淇℃伅琛�', row)" icon="el-icon-edit" v-permissions="['business:company:update']">淇敼</el-button>
-                        <el-button type="text" @click="$refs.operaCompanyWindow.open('缂栬緫浼佷笟淇℃伅琛�', row)" icon="el-icon-edit" v-permissions="['business:company:update']">鐢靛瓙绛捐璇�</el-button>
+                        <el-button type="text" @click="$refs.OperaCompanyDescWindow.open('浼佷笟璇︽儏', row)"  v-permissions="['business:company:update']">鏌ョ湅璇︽儏</el-button>
+                        <el-button type="text" @click="edit(row)" v-permissions="['business:company:update']">淇敼</el-button>
+<!--
+                        <el-button type="text" @click="$refs.operaCompanyWindow.open('缂栬緫浼佷笟淇℃伅琛�', row)" v-permissions="['business:company:update']">鐢靛瓙绛捐璇�</el-button>
+-->
                     </template>
                 </el-table-column>
             </el-table>
@@ -63,39 +70,92 @@
             </pagination>
         </template>
         <!-- 鏂板缓/淇敼 -->
-        <OperaCompanyWindow ref="operaCompanyWindow" @success="handlePageChange"/>
+        <OperaCompanyWindow ref="operaCompanyWindow" @success="handlePageChange" />
         <!-- 璇︽儏 -->
-        <OperaCompanyDescWindow ref="OperaCompanyDescWindow" @success="handlePageChange"/>
+        <OperaCompanyDescWindow ref="OperaCompanyDescWindow" @success="handlePageChange" />
     </TableLayout>
 </template>
 
 <script>
-    import BaseTable from '@/components/base/BaseTable'
-    import TableLayout from '@/layouts/TableLayout'
-    import Pagination from '@/components/common/Pagination'
-    import OperaCompanyWindow from '@/components/business/OperaCompanyWindow'
-    import OperaCompanyDescWindow from '@/components/business/OperaCompanyDescWindow'
-    export default {
-        name: 'Company',
-        extends: BaseTable,
-        components: { TableLayout, Pagination, OperaCompanyWindow, OperaCompanyDescWindow },
-        data () {
-            return {
-                // 鎼滅储
-                searchForm: {
-                    name: '',
-                    username: ''
-                }
-            }
-        },
-        created () {
-            this.config({
-                module: '浼佷笟淇℃伅琛�',
-                api: '/business/company',
-                'field.id': 'id',
-                'field.main': 'id'
-            })
-            this.search()
-        }
+import BaseTable from '@/components/base/BaseTable'
+import TableLayout from '@/layouts/TableLayout'
+import Pagination from '@/components/common/Pagination'
+import OperaCompanyWindow from '@/components/business/OperaCompanyWindow'
+import OperaCompanyDescWindow from '@/components/business/OperaCompanyDescWindow'
+import { updateStatus, getById } from '@/api/business/company'
+export default {
+  name: 'Company',
+  extends: BaseTable,
+  components: { TableLayout, Pagination, OperaCompanyWindow, OperaCompanyDescWindow },
+  data () {
+    return {
+      // 鎼滅储
+      searchForm: {
+        name: '',
+        username: '',
+        type: 0
+      }
     }
+  },
+  created () {
+    this.config({
+      module: '浼佷笟淇℃伅琛�',
+      api: '/business/company',
+      'field.id': 'id',
+      'field.main': 'id'
+    })
+    this.search()
+  },
+  methods: {
+    edit (row) {
+      getById(row.id)
+        .then(res => {
+          const form = res
+          form.type = 1
+          form.file = {
+            imgurl: '',
+            imgurlfull: ''
+          }
+          form.file1 = {
+            imgurl: '',
+            imgurlfull: ''
+          }
+          form.file2 = {
+            imgurl: '',
+            imgurlfull: ''
+          }
+          form.file3 = {
+            imgurl: '',
+            imgurlfull: ''
+          }
+          form.file.imgurl = res.businessImg ? res.businessImg.fileurl : null
+          form.file.imgurlfull = res.businessImg ? res.businessImg.fileurlFull : null
+          if (res.idcardImgList == null) {
+            res.idcardImgList = new Array()
+          }
+          if (res.idcardImgList && res.idcardImgList.length > 0) {
+            form.file1.imgurl = res.idcardImgList[0].fileurl
+            form.file1.imgurlfull = res.idcardImgList[0].fileurlFull
+          }
+          if (res.idcardImgList && res.idcardImgList.length > 1) {
+            form.file2.imgurl = res.idcardImgList[1].fileurl
+            form.file2.imgurlfull = res.idcardImgList[1].fileurlFull
+          }
+          form.file3.imgurl = res.signImg ? res.signImg.fileurl : null
+          form.file3.imgurlfull = res.signImg ? res.signImg.fileurlFull : null
+          this.$refs.operaCompanyWindow.open('缂栬緫浼佷笟', form)
+        })
+    },
+    // 淇敼鐘舵��
+    changeStatus (status, row) {
+      updateStatus({ id: row.id, status })
+        .then(res => {
+          this.search()
+        })
+        .catch(err => {
+          row.status = row.status === 0 ? 1 : 0
+        })
+    }
+  }
+}
 </script>

--
Gitblit v1.9.3