From 679f7430fd4d7279a38a80111025c2ef500b0bb7 Mon Sep 17 00:00:00 2001 From: wzl <1720360649@qq.com> Date: Thu, 15 Aug 2024 16:11:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=83=E7=90=86=E6=97=A5=E6=8A=A5=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=BF=83=E7=90=86=E9=87=8F=E8=A1=A8=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/health/psychological/index.scss | 16 ++++++++++++++++ src/views/health/psychological/index.vue | 14 +++++++++++++- src/views/psychological-scale/list.vue | 4 ++-- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/src/views/health/psychological/index.scss b/src/views/health/psychological/index.scss index d69d08f..c2c9b89 100644 --- a/src/views/health/psychological/index.scss +++ b/src/views/health/psychological/index.scss @@ -123,6 +123,22 @@ $newBlue: #638EE4; font-size: 18px; } } + + .title-right{ + display: flex; + + .title-right-button{ + color: #638EE4; + font-size: 16px; + border: 1px solid #638EE4; + padding: 2px 10px; + margin-right: 5px; + + &:last-child{ + margin-right: 0; + } + } + } } .monitoring-count { text-align: left; diff --git a/src/views/health/psychological/index.vue b/src/views/health/psychological/index.vue index a67b981..62b3ee3 100644 --- a/src/views/health/psychological/index.vue +++ b/src/views/health/psychological/index.vue @@ -42,7 +42,8 @@ {{ titleLeft }}
-

历史监测

+
量表记录
+
历史监测
@@ -1366,6 +1367,17 @@ export default { this.echarts = this.$echarts.init(this.$refs.charts); this.echarts.setOption(this.defaultOptions); }, + // 点击心理量表记录 + onPsychologicalScale(){ + this.$router.push({ + name: "PsychologicalScaleList", + query: { + uid: this.uid, + accessToken: this.$store.getters.ssjlToken, + showLeftArrow:1, + }, + }); + }, // 点击历史监测,打开日历 onHistory() { this.calendarDialogShow = true; diff --git a/src/views/psychological-scale/list.vue b/src/views/psychological-scale/list.vue index 14b00a0..74b392e 100644 --- a/src/views/psychological-scale/list.vue +++ b/src/views/psychological-scale/list.vue @@ -2,7 +2,7 @@