Browse Source

心理量表选项起始数调整为0

test
wzl 3 months ago
parent
commit
98813cb26f
3 changed files with 12 additions and 5 deletions
  1. +8
    -1
      README.md
  2. +1
    -1
      src/config/models.js
  3. +3
    -3
      src/views/psychological-scale/index.vue

+ 8
- 1
README.md View File

@@ -1185,7 +1185,14 @@ update

## v1.0.129

`2024.8.8`
`2024.8.7`
update

- 量表页面全部增加可选头部导航

## v1.0.130

`2024.8.7`
fix

- 修复 心理量表选项起始数调整为0

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

@@ -8,7 +8,7 @@
import store from "@/store";
// 情绪模型
const appTypeList = ['1'];
export const VERSION_MODEL = '1.0.129F'; //版本号
export const VERSION_MODEL = '1.0.130F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


+ 3
- 3
src/views/psychological-scale/index.vue View File

@@ -10,7 +10,7 @@
:left-arrow="true"
@click-left="onNavBack"
v-if="showLeftArrow"
style="position: fixed; left: 0; top: 0;width: 100vw;"
style="position: fixed; left: 0; top: 0; width: 100vw"
>
<template #left>
<van-icon name="arrow-left" size="23" style="padding: 0" />返回
@@ -160,7 +160,7 @@ export default {
selects(val) {
let temp = JSON.parse(val)
let tempt = temp.filter((item) => {
if (item.select) {
if (item.select >= 0) {
return true
}
})
@@ -216,7 +216,7 @@ export default {
for (let index = 0; index < a1.length; index++) {
option.push({
label: a1[index],
value: index + 1,
value: index,
})
}
tempt.Option = option


Loading…
Cancel
Save