Browse Source

update

- 心理监测周报列表
    - 增加 无数据文字提示
test
chenJinxu 11 months ago
parent
commit
96ad101366
4 changed files with 11 additions and 5 deletions
  1. +7
    -1
      README.md
  2. +1
    -1
      src/config/models.js
  3. +1
    -1
      src/views/health/psychological/index.scss
  4. +2
    -2
      src/views/health/psychological/index.vue

+ 7
- 1
README.md View File

@@ -859,4 +859,10 @@ update
- 电量查看
- 修复 时间排序错误的问题
- 心理监测详情
- 返回 增加"返回"文字
- 返回 增加"返回"文字

## v1.0.109
`2023.12.12`
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.108F'; //版本号
export const VERSION_MODEL = '1.0.109F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


+ 1
- 1
src/views/health/psychological/index.scss View File

@@ -424,7 +424,7 @@ $newBlue: #638EE4;
}
p {
color: #999;
font-size: 12px;
font-size: 16px;
padding: 20px 0 65px 0;
}
}


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

@@ -189,7 +189,7 @@
<!-- 周报菜单 -->
<div class="main report" v-show="current == 3">
<div class="content">
<div class="list" v-if="weekList">
<div class="list" v-if="weekList.length > 0">
<div
class="item"
v-for="(item, index) in weekList"
@@ -222,7 +222,7 @@
</div>
<div class="list no-data" v-else>
<img :src="noDataImg" alt />
<p>暂无数据</p>
<p>连续佩戴两周产生对比数据</p>
</div>
</div>
</div>


Loading…
Cancel
Save