From 8c6f8e64ca39b0ca7bf545eb0c0328fb79914424 Mon Sep 17 00:00:00 2001 From: lkk <364857242@qq.com> Date: 星期四, 06 二月 2025 18:08:20 +0800 Subject: [PATCH] loading&xh --- src/views/doctor/check/index.vue | 9 ++++++++- src/views/hosp/project/index.vue | 5 +++++ 2 files changed, 13 insertions(+), 1 deletions(-) diff --git a/src/views/doctor/check/index.vue b/src/views/doctor/check/index.vue index 808bde7..719b8d3 100644 --- a/src/views/doctor/check/index.vue +++ b/src/views/doctor/check/index.vue @@ -1598,8 +1598,14 @@ return ""; }, getbzlist() { + this.loading = true; getDeptAdvice(this.queryParam1).then((response) => { - this.deptAdviceList = response.data.list; + + if(response.data.list){ + this.deptAdviceList = response.data.list; + this.loading = false + } + this.total1 = response.data.total; }); }, @@ -2539,6 +2545,7 @@ tjNumber: this.tjNumber, proParentId: this.nums, }; + this.loading = true; getParentId(data).then((response) => { this.proParentList = response.data; this.value = []; diff --git a/src/views/hosp/project/index.vue b/src/views/hosp/project/index.vue index 33172a1..c499b82 100644 --- a/src/views/hosp/project/index.vue +++ b/src/views/hosp/project/index.vue @@ -249,6 +249,9 @@ <el-form-item label="澶囨敞" prop="proRemark"> <el-input v-model="form.proRemark" placeholder="璇疯緭鍏ュ娉�" style="width: 200px" /> </el-form-item> + <el-form-item label="鎺掑簭" prop="xh"> + <el-input v-model="form.xh" placeholder="璇疯緭鍏ュ娉�" style="width: 200px" /> + </el-form-item> </el-form> <el-button style="margin-left: 40px" type="primary" plain size="mini" icon="el-icon-plus" @click="addmembers">鏂板琛�</el-button> @@ -546,6 +549,7 @@ sfzhfy: "Y", hisdj: "", sl: "", + xh:"0", proStatus: "0", proName: "", proPrice: "", @@ -1002,6 +1006,7 @@ proEngName: null, proPrice: "0.00", proRemark: null, + xh:"0", createBy: null, createTime: null, updateBy: null, -- Gitblit v1.8.0