Browse Source

update

- 问卷调查
    - 增加 答题完成返回错误后如果是从随手精灵公众号调过来的用户,则第6题文字变红
test
JinxChen 1 year ago
parent
commit
1109581627
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-questionnaire/index.vue

+ 8
- 1
README.md View File

@@ -718,4 +718,11 @@ update
`2023.10.9`
update
- 问卷调查
- 增加 答题完成返回错误后如果是从随手精灵公众号调过来的用户,则第8 11题文字变红
- 增加 答题完成返回错误后如果是从随手精灵公众号调过来的用户,则第8 11题文字变红


## v1.0.90
`2023.10.10`
update
- 问卷调查
- 增加 答题完成返回错误后如果是从随手精灵公众号调过来的用户,则第6题文字变红

+ 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.89F'; //版本号
export const VERSION_MODEL = '1.0.90F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


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

@@ -22,7 +22,7 @@
</div>
<div class="list_box">
<div class="item" v-for="(item, index) in topic" :key="index">
<div :class="['label', {error: (isError && fromSsjl && item.Id == '8') || (isError && fromSsjl && item.Id == '11')}]">
<div :class="['label', {error: (isError && fromSsjl && item.Id == '6') || (isError && fromSsjl && item.Id == '8') || (isError && fromSsjl && item.Id == '11')}]">
<span>{{ item.Title }}</span>
<span>({{ item.Type }})</span>
</div>
@@ -38,7 +38,7 @@
:key="idx"
:title="ite.label"
@click="onRadio(index, ite.value)"
:title-class="[{cellTitle: (isError && fromSsjl && item.Id == '8') || (isError && fromSsjl && item.Id == '11')}]"
:title-class="[{cellTitle: (isError && fromSsjl && item.Id == '6') || (isError && fromSsjl && item.Id == '8') || (isError && fromSsjl && item.Id == '11')}]"
>
<template #right-icon>
<van-radio :name="ite.value" />


Loading…
Cancel
Save