Browse Source

睑板腺按摩表单回显bug修复

360view
bianyaqi 2 years ago
parent
commit
739706dea0
  1. 10
      src/page-subspecialty/views/modules/formList/reportForm.vue

10
src/page-subspecialty/views/modules/formList/reportForm.vue

@ -172,12 +172,12 @@ export default {
// //
handleResValue(val, change) { handleResValue(val, change) {
if (!val) { if (!val) {
change.forEach(item => {
item.isSelect = false
item.remark = ''
})
return return
} }
change.forEach(item => {
item.isSelect = false
item.remark = ''
})
const list = val.split('/') const list = val.split('/')
change.forEach(item => { change.forEach(item => {
list.forEach(lis => { list.forEach(lis => {
@ -190,7 +190,7 @@ export default {
} }
}) })
// //
if (!item.isSelect) {
if (!item.isSelect && item.name === '其他:') {
item.remark = '' item.remark = ''
} }
}) })

Loading…
Cancel
Save