瀏覽代碼

Merge branch 'feat' into test

test
JinxChen 3 月之前
父節點
當前提交
3ea237719e
共有 1 個文件被更改,包括 7 次插入3 次删除
  1. +7
    -3
      src/views/health/psychological/reportDetails/index.vue

+ 7
- 3
src/views/health/psychological/reportDetails/index.vue 查看文件

@@ -906,12 +906,16 @@ export default {
/* this.initEchart(); */
if(this.params.current) {
this.current = Number(this.params.current);
this.currentDays = this.calcDaysByTabClick(
Number(this.params.current)
);
} else {
this.current = Number(this.$store.getters.tabClick) || 0;
this.currentDays = this.calcDaysByTabClick(
Number(this.$store.getters.tabClick)
);
}
this.currentDays = this.calcDaysByTabClick(
Number(this.$store.getters.tabClick)
);
this.psyCurrent = this.calcPsyTabindex(EmotionModel[this.params.name].type);
window.document.title = "心理监测";
/* window.addEventListener("resize", this.onResize, false); */


Loading…
取消
儲存