Browse Source

Merge branch 'develop' into test

test
JinxChen 1 year ago
parent
commit
40d21301c8
4 changed files with 10 additions and 3 deletions
  1. +7
    -1
      README.md
  2. +1
    -1
      src/config/models.js
  3. +1
    -0
      src/views/health/psychological-main/index.vue
  4. +1
    -1
      src/views/health/psychological/index.vue

+ 7
- 1
README.md View File

@@ -547,4 +547,10 @@ update
update update
- 心理建模进度查询 - 心理建模进度查询
- 修复 页面重绘时进度条异常的问题 - 修复 页面重绘时进度条异常的问题
- 优化 进度条数值显示
- 优化 进度条数值显示

## v1.0.69
`2023.6.27`
fix
- 心理监测首页
- 修复 从详情页面返回重新进入详情页面参数传递错误的问题

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

@@ -5,7 +5,7 @@
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @FilePath: \TelpoH5FrontendWeb\src\config\models.js
* @description: * @description:
*/ */
export const VERSION_MODEL = '1.0.68F'; //版本号
export const VERSION_MODEL = '1.0.69F'; //版本号
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
- 0
src/views/health/psychological-main/index.vue View File

@@ -105,6 +105,7 @@ export default {


}, },
onClick(item) { onClick(item) {
this.params.name = item.class;
this.$router.replace({ this.$router.replace({
name: 'psychological', name: 'psychological',
query: { query: {


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

@@ -705,7 +705,6 @@ export default {
headers: { 'AuthToken': this.$store.getters.ssjlToken } headers: { 'AuthToken': this.$store.getters.ssjlToken }
}) })
.then(res => { .then(res => {
console.log("res", res);
if (res.data) { if (res.data) {
let data = res.data.response; let data = res.data.response;
// 监测次数 // 监测次数
@@ -1000,6 +999,7 @@ export default {
}, },
// 返回 // 返回
onNavBack() { onNavBack() {
this.params.name = '';
this.$router.replace({ this.$router.replace({
name: 'psychologicalMain', name: 'psychologicalMain',
query: { query: {


Loading…
Cancel
Save