diff --git a/README.md b/README.md index 3a517f9..6f71915 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -762,4 +762,12 @@ fix `2023.10.30` fix - 话费查询 - - 修复 异步问题导致首次进入页面白屏的问题 \ No newline at end of file + - 修复 异步问题导致首次进入页面白屏的问题 + + +## v1.0.96 +`2023.11.2` +update +- 心理监测详情 + - 修改 温馨提示语 +- 新增 一个周报/月报页面 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index c5bb08a..7f05ebd 100644 --- a/src/config/models.js +++ b/src/config/models.js @@ -1,11 +1,11 @@ /* * @Date: 2021-11-20 10:26:39 * @LastEditors: JinxChen - * @LastEditTime: 2023-10-30 10:07:56 + * @LastEditTime: 2023-11-02 09:12:59 * @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @description: */ -export const VERSION_MODEL = '1.0.95F'; //版本号 +export const VERSION_MODEL = '1.0.96F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/health/psychological/index.vue b/src/views/health/psychological/index.vue index a22218d..1c703b8 100644 --- a/src/views/health/psychological/index.vue +++ b/src/views/health/psychological/index.vue @@ -615,7 +615,8 @@ export default { return `${today}${this.emoName}数据图`; }, warmTips() { - return `正常连续佩戴手表,每半小时计算一个${this.emoName}分值,睡眠期间不进行计算。` + return `正常连续佩戴腕表,每半小时计算一个${this.emoName}分值。`; + /* return `正常连续佩戴手表,每半小时计算一个${this.emoName}分值,睡眠期间不进行计算。` */ }, title1() { return EmotionModel[this.params.name].title1; diff --git a/src/views/health/psychological/report.scss b/src/views/health/psychological/report.scss new file mode 100644 index 0000000..57e1b92 --- /dev/null +++ b/src/views/health/psychological/report.scss @@ -0,0 +1,21 @@ +.report{ + height: 100vh; + width: 100%; + overflow: hidden; + background-color: #fff; + .main { + height: calc(100vh - 45px); + overflow: scroll; + padding: 5px 15px; + h5 { + font-size: 16px; + } + .overall-rating { + display: flex; + justify-content: flex-start; + align-items: flex-start; + flex-direction: column; + font-size: 14px; + } + } +} \ No newline at end of file diff --git a/src/views/health/psychological/report.vue b/src/views/health/psychological/report.vue index e4a5e25..5151ffc 100644 --- a/src/views/health/psychological/report.vue +++ b/src/views/health/psychological/report.vue @@ -1,18 +1,35 @@ @@ -31,6 +48,6 @@ export default { } -