Parcourir la source

Merge branch 'feat' into develop

master
JinxChen il y a 1 an
Parent
révision
f49d97e9d5
4 fichiers modifiés avec 10 ajouts et 3 suppressions
  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 Voir le fichier

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

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

+ 1
- 1
src/config/models.js Voir le fichier

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


+ 1
- 0
src/views/health/psychological-main/index.vue Voir le fichier

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

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


+ 1
- 1
src/views/health/psychological/index.vue Voir le fichier

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


Chargement…
Annuler
Enregistrer