@@ -540,4 +540,11 @@ update | |||||
`2023.6.26` | `2023.6.26` | ||||
update | update | ||||
- 心理监测首页 | - 心理监测首页 | ||||
- 增加 页面路由参数 date | |||||
- 增加 页面路由参数 date | |||||
## v1.0.68 | |||||
`2023.6.26` | |||||
update | |||||
- 心理建模进度查询 | |||||
- 修复 页面重绘时进度条异常的问题 | |||||
- 优化 进度条数值显示 |
@@ -5,7 +5,7 @@ | |||||
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js | * @FilePath: \TelpoH5FrontendWeb\src\config\models.js | ||||
* @description: | * @description: | ||||
*/ | */ | ||||
export const VERSION_MODEL = '1.0.67F'; //版本号 | |||||
export const VERSION_MODEL = '1.0.68F'; //版本号 | |||||
export const IMAGE_URL = { | export const IMAGE_URL = { | ||||
production: 'http://zfb.ssjlai.com/web/', | production: 'http://zfb.ssjlai.com/web/', | ||||
test: 'http://zfb.ssjlai.com/web/', | test: 'http://zfb.ssjlai.com/web/', | ||||
@@ -1,5 +1,5 @@ | |||||
<template> | <template> | ||||
<div class="page" v-show="isSHowPage"> | |||||
<div class="page" v-if="isSHowPage"> | |||||
<van-nav-bar title="" :border="true" :left-arrow="true" @click-left="onNavBack" v-if="showLeftArrow"> | <van-nav-bar title="" :border="true" :left-arrow="true" @click-left="onNavBack" v-if="showLeftArrow"> | ||||
<template #left> | <template #left> | ||||
<van-icon name="arrow-left" size="23" style="padding: 0"/>返回 | <van-icon name="arrow-left" size="23" style="padding: 0"/>返回 | ||||
@@ -31,7 +31,7 @@ | |||||
</div> | </div> | ||||
<div class="schedule"> | <div class="schedule"> | ||||
<van-progress | <van-progress | ||||
:percentage="info.progress" | |||||
:percentage="(info.progress) * 100" | |||||
stroke-width="10px" | stroke-width="10px" | ||||
color="#638ee4" | color="#638ee4" | ||||
:show-pivot="false" | :show-pivot="false" | ||||