From e777321f94591ad42f0638a392c2b8cd18341596 Mon Sep 17 00:00:00 2001 From: song Date: Wed, 29 Dec 2021 10:56:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=BE=E7=BD=AE=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E8=B0=83=E6=8E=A5=E5=8F=A3=E6=B7=BB=E5=8A=A0loading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + .../project/components/ConfigInfo/components/Caregiver.vue | 1 + .../project/components/ConfigInfo/components/Family.vue | 1 + .../project/components/ConfigInfo/components/Medicine.vue | 1 + 4 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9996818..eb9ea0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -211,6 +211,7 @@ - | 绘图背景图显示及路径绘制 | [964e41e](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/964e41e) - | 缓存基本信息 | [d160dad](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/d160dad) - | 药物使用记录修改 | [d8eb422](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/d8eb422) + - | 药物使用记录对齐输入框 | [97a6fb5](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/97a6fb5) - | 角色显示状态修改 | [7d3b906](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/7d3b906) - | 角色栏修改 | [19228d6](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/19228d6) - | 解决error | [00d96c4](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/00d96c4) diff --git a/src/pagesProject/project/components/ConfigInfo/components/Caregiver.vue b/src/pagesProject/project/components/ConfigInfo/components/Caregiver.vue index e9f8284..5c7eea6 100644 --- a/src/pagesProject/project/components/ConfigInfo/components/Caregiver.vue +++ b/src/pagesProject/project/components/ConfigInfo/components/Caregiver.vue @@ -112,6 +112,7 @@ export default { */ async queryZaritList() { try { + this.$t.ui.showLoading(); const params = { projectId: this.projectId }; const date = await this.$u.api.queryZaritList(params); if (!date.length) { diff --git a/src/pagesProject/project/components/ConfigInfo/components/Family.vue b/src/pagesProject/project/components/ConfigInfo/components/Family.vue index bdfd63a..58e7fd8 100644 --- a/src/pagesProject/project/components/ConfigInfo/components/Family.vue +++ b/src/pagesProject/project/components/ConfigInfo/components/Family.vue @@ -78,6 +78,7 @@ export default { */ async queryFamilyList() { try { + this.$t.ui.showLoading(); const params = { projectId: this.projectId }; const date = await this.$u.api.queryFamilyList(params); if (!date.length) { diff --git a/src/pagesProject/project/components/ConfigInfo/components/Medicine.vue b/src/pagesProject/project/components/ConfigInfo/components/Medicine.vue index 700ad54..225c772 100644 --- a/src/pagesProject/project/components/ConfigInfo/components/Medicine.vue +++ b/src/pagesProject/project/components/ConfigInfo/components/Medicine.vue @@ -92,6 +92,7 @@ export default { */ async queryMedicine() { try { + this.$t.ui.showLoading(); const params = { projectId: this.projectId }; const date = await this.$u.api.queryMedicine(params); if (!date.length) {