From 923ffed2cecf17ce36500da79e2d4e564cd91ca5 Mon Sep 17 00:00:00 2001 From: "1747191978@qq.com" <1942943850@qq.com> Date: Tue, 18 Feb 2025 19:36:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E5=85=B1=E9=98=9F=E5=88=97=E4=B8=8D?= =?UTF-8?q?=E5=8F=AF=E4=BF=AE=E6=94=B9=E5=88=A0=E9=99=A4=EF=BC=8C=E5=85=AC?= =?UTF-8?q?=E5=85=B1=E9=98=9F=E5=88=97=E8=AE=AD=E7=BB=83=E5=85=88=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- acupuncture-前台/src/views/followFile/index.vue | 4 +++- acupuncture-前台/src/views/followFile/subjects.vue | 2 +- acupuncture-前台/src/views/medicalFile/index.vue | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/acupuncture-前台/src/views/followFile/index.vue b/acupuncture-前台/src/views/followFile/index.vue index 9fb58ffc..b8f90ae0 100644 --- a/acupuncture-前台/src/views/followFile/index.vue +++ b/acupuncture-前台/src/views/followFile/index.vue @@ -153,6 +153,7 @@ type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" + :disabled="scope.row.type == 1" >修改 删除 @@ -357,7 +359,7 @@ export default { followupQuery(this.queryParams).then((res) => { let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) this.listDat = res.data.list; - commonQueue.forEach(i=>{ + commonQueue?.forEach(i=>{ this.listDat.unshift(i) }) this.total = res.data.total; diff --git a/acupuncture-前台/src/views/followFile/subjects.vue b/acupuncture-前台/src/views/followFile/subjects.vue index 9f023e10..d417ce33 100644 --- a/acupuncture-前台/src/views/followFile/subjects.vue +++ b/acupuncture-前台/src/views/followFile/subjects.vue @@ -289,7 +289,7 @@ export default { }).then((res) => { this.followupList = res.data.list; let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) - commonQueue.forEach(i=>{ + commonQueue?.forEach(i=>{ this.followupList.unshift(i) }) }); diff --git a/acupuncture-前台/src/views/medicalFile/index.vue b/acupuncture-前台/src/views/medicalFile/index.vue index 0bce71cc..9c9f2c1e 100644 --- a/acupuncture-前台/src/views/medicalFile/index.vue +++ b/acupuncture-前台/src/views/medicalFile/index.vue @@ -1077,7 +1077,7 @@ }).then((res) => { this.followupList = res.data.list; let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) - commonQueue.forEach(i=>{ + commonQueue?.forEach(i=>{ this.followupList.unshift(i) }) });