diff --git a/README.md b/README.md index 8c659ad..0b27fac 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -517,4 +517,6 @@ update `2023.6.21` update - 心理建模进度查询 - - 增加 建模中,有2个步骤,如果任一步骤已经完成,则该步骤可以隐藏显示。 \ No newline at end of file + - 增加 建模中,有2个步骤,如果任一步骤已经完成,则该步骤可以隐藏显示。 + - 修复 图表时间格式转换错误的问题 + - 增加 Advice字段显示 \ No newline at end of file diff --git a/src/views/health/psychological/index.vue b/src/views/health/psychological/index.vue index ec11198..49af96a 100644 --- a/src/views/health/psychological/index.vue +++ b/src/views/health/psychological/index.vue @@ -143,7 +143,7 @@

{{ result }}

- 继续保持积极乐观,培养健康的生活习惯,预防消极事件对情绪带来的不良影响。 + {{ advice }}
@@ -309,7 +309,8 @@ export default { ], // 选中的日历日期 selectDate: '', - uid: '' + uid: '', + advice: '' }; }, computed: { @@ -801,11 +802,12 @@ export default { // x轴显示数据 this.xAxisData = data.ChartDatas.map(item => { return this.$dayjs(item.Key.replace(/-/g, "/")).format( - "hh:mm" + "HH:mm" ); }); // 结果解读 this.result = data.Result; + this.advice = data.Advice; this.$toast.loading({ message: '数据加载完成' });