Browse Source

update

- 心理建模进度查询
    - 修复 页面重绘时进度条异常的问题
    - 优化 进度条数值显示
master
JinxChen 1 year ago
parent
commit
8c4f69d72e
3 changed files with 11 additions and 4 deletions
  1. +8
    -1
      README.md
  2. +1
    -1
      src/config/models.js
  3. +2
    -2
      src/views/psychological-modeling/index.vue

+ 8
- 1
README.md View File

@@ -540,4 +540,11 @@ update
`2023.6.26`
update
- 心理监测首页
- 增加 页面路由参数 date
- 增加 页面路由参数 date

## v1.0.68
`2023.6.26`
update
- 心理建模进度查询
- 修复 页面重绘时进度条异常的问题
- 优化 进度条数值显示

+ 1
- 1
src/config/models.js View File

@@ -5,7 +5,7 @@
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js
* @description:
*/
export const VERSION_MODEL = '1.0.67F'; //版本号
export const VERSION_MODEL = '1.0.68F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


+ 2
- 2
src/views/psychological-modeling/index.vue View File

@@ -1,5 +1,5 @@
<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">
<template #left>
<van-icon name="arrow-left" size="23" style="padding: 0"/>返回
@@ -31,7 +31,7 @@
</div>
<div class="schedule">
<van-progress
:percentage="info.progress"
:percentage="(info.progress) * 100"
stroke-width="10px"
color="#638ee4"
:show-pivot="false"


Loading…
Cancel
Save