From cee2eca9c3e40b48c40a8fe80f938a777f03d463 Mon Sep 17 00:00:00 2001 From: wwl <xchao828@163.com> Date: 星期二, 10 六月 2025 17:57:11 +0800 Subject: [PATCH] 1 --- src/views/hosp/customer/index.vue | 71 +++++++++++++++++++++++++++++++++++ 1 files changed, 70 insertions(+), 1 deletions(-) diff --git a/src/views/hosp/customer/index.vue b/src/views/hosp/customer/index.vue index ea40064..7021dbb 100644 --- a/src/views/hosp/customer/index.vue +++ b/src/views/hosp/customer/index.vue @@ -270,6 +270,16 @@ >瀵煎嚭</el-button > </el-col> + <el-col :span="1.5"> + <el-button + type="primary" + size="mini" + @click="handleReInfor" + :disabled="single" + :loading="blackloading" + >娉ㄥ唽his淇℃伅</el-button + > + </el-col> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" @@ -393,6 +403,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="浠嬬粛浜�" @@ -603,6 +635,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"> @@ -963,7 +1016,7 @@ delCustomer, addCustomer, updateCustomer, - getHistryTjOrderByCusIdCard, + getHistryTjOrderByCusIdCard,getUserinfo } from "@/api/hosp/customer"; import { getPdf, addCustomerBlack } from "@/api/hosp/order"; import { @@ -1053,6 +1106,9 @@ cusMarryStatus: null, cusIdcard: null, cusIntroduce: null, + career:null, + gl:null, + wenHua: null, cusNumber: null, cusIsvip: null, }, @@ -1247,6 +1303,9 @@ cusMarryStatus: null, cusIdcard: null, cusIntroduce: null, + wenHua: null, + career:null, + gl:null, cusNumber: null, cusIsvip: null, createBy: null, @@ -1311,6 +1370,16 @@ }); }, + handleReInfor() { + let data = { + cusId: this.ids[0], + }; + getUserinfo(data).then((res) => { + this.$modal.msgSuccess("娉ㄥ唽鎴愬姛"); + this.getList(); + }); + }, + inputChange() { const reg = /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/; -- Gitblit v1.8.0