From bad2bc143be3f8ddb93a1c9f984127b3ccf43e8f Mon Sep 17 00:00:00 2001
From: lkk <364857242@qq.com>
Date: 星期一, 31 三月 2025 17:47:14 +0800
Subject: [PATCH] 11

---
 src/views/hosp/customer/index.vue |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

diff --git a/src/views/hosp/customer/index.vue b/src/views/hosp/customer/index.vue
index ae5970f..672983f 100644
--- a/src/views/hosp/customer/index.vue
+++ b/src/views/hosp/customer/index.vue
@@ -255,6 +255,7 @@
           size="mini"
           @click="handleBlacklist"
           :disabled="single"
+          :loading="blackloading"
           v-hasPermi="['hosp:order:export']"
           >鍔犲叆榛戝悕鍗�</el-button
         >
@@ -392,6 +393,28 @@
           />
         </template>
       </el-table-column>
+
+      <el-table-column
+        label="鑱屼笟"
+        align="center"
+        prop="career"
+        width="90px"
+        :show-overflow-tooltip="true"
+      />
+      <el-table-column
+        label="宸ラ緞"
+        align="center"
+        prop="gl"
+        width="90px"
+        :show-overflow-tooltip="true"
+      />
+      <el-table-column
+        label="鏂囧寲绋嬪害"
+        align="center"
+        prop="wenHua"
+        width="90px"
+        :show-overflow-tooltip="true"
+      />
 
       <el-table-column
         label="浠嬬粛浜�"
@@ -602,6 +625,27 @@
               :value="dict.value"
             ></el-option>
           </el-select>
+        </el-form-item>
+        <el-form-item label="鑱屼笟" prop="career">
+          <el-input
+            v-model="form.career"
+            placeholder="璇疯緭鍏ヨ亴涓�"
+            style="width: 200px"
+          />
+        </el-form-item>
+        <el-form-item label="宸ラ緞" prop="gl">
+          <el-input
+            v-model="form.gl"
+            placeholder="璇疯緭鍏ュ伐榫�"
+            style="width: 200px"
+          />
+        </el-form-item>
+        <el-form-item label="鏂囧寲绋嬪害" prop="wenHua">
+          <el-input
+            v-model="form.wenHua"
+            placeholder="璇疯緭鍏ユ枃鍖栫▼搴�"
+            style="width: 200px"
+          />
         </el-form-item>
 
         <el-form-item label="浠嬬粛浜�" prop="cusIntroduce">
@@ -1013,6 +1057,9 @@
 
       // 閬僵灞�
       loading: true,
+      blackloading:false,
+      isAdding:false,
+      
       // 閫変腑鏁扮粍
       ids: [],
       // 闈炲崟涓鐢�
@@ -1049,6 +1096,9 @@
         cusMarryStatus: null,
         cusIdcard: null,
         cusIntroduce: null,
+        career:null,
+        gl:null,
+        wenHua: null,
         cusNumber: null,
         cusIsvip: null,
       },
@@ -1243,6 +1293,9 @@
         cusMarryStatus: null,
         cusIdcard: null,
         cusIntroduce: null,
+        wenHua: null,
+        career:null,
+        gl:null,
         cusNumber: null,
         cusIsvip: null,
         createBy: null,
@@ -1296,11 +1349,13 @@
     },
 
     handleBlacklist() {
+      this.blackloading = true;
       let data = {
         cusId: this.ids[0],
       };
       addCustomerBlack(data).then((res) => {
         this.$modal.msgSuccess("宸插姞鍏ラ粦鍚嶅崟");
+        this.blackloading = false;
         this.getList();
       });
     },

--
Gitblit v1.8.0