BUG 26118
This commit is contained in:
@@ -184,7 +184,7 @@ export default {
|
|||||||
})
|
})
|
||||||
|
|
||||||
uni.$on('filedConfig', res => {
|
uni.$on('filedConfig', res => {
|
||||||
if (!res.index) {
|
if (res.index < 0) {
|
||||||
this.targetList.push(res.config)
|
this.targetList.push(res.config)
|
||||||
} else {
|
} else {
|
||||||
this.targetList.splice(res.index, 1, res.config)
|
this.targetList.splice(res.index, 1, res.config)
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ export default {
|
|||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
document.title = "问卷表单"
|
document.title = "问卷表单"
|
||||||
this.$refs.TabPage?.show()
|
this.$refs?.TabPage?.show()
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.injectJWeixin(['sendChatMessage', 'selectEnterpriseContact', 'shareAppMessage', 'shareWechatMessage']).then(() => {
|
this.injectJWeixin(['sendChatMessage', 'selectEnterpriseContact', 'shareAppMessage', 'shareWechatMessage']).then(() => {
|
||||||
this.$dict.load(['questionnaireStatus', 'questionnaireType', 'questionnaireFieldType'])
|
this.$dict.load(['questionnaireStatus', 'questionnaireType', 'questionnaireFieldType'])
|
||||||
|
|||||||
@@ -157,7 +157,7 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
config() {
|
config() {
|
||||||
return !!this.index ? this.filed : JSON.parse(JSON.stringify(components.filter(v => v.type === this.filedType)[0]))
|
return this.index > -1 ? this.filed : components?.filter(v => v.type === this.filedType)?.[0] || {}
|
||||||
},
|
},
|
||||||
pointTypeName() {
|
pointTypeName() {
|
||||||
if (!this.config.pointDict) return ''
|
if (!this.config.pointDict) return ''
|
||||||
|
|||||||
@@ -211,16 +211,11 @@ export default {
|
|||||||
toEdit() {
|
toEdit() {
|
||||||
if (this.info.dataCount !== 0) {
|
if (this.info.dataCount !== 0) {
|
||||||
return this.$u.toast('该表单已有数据,无法编辑!')
|
return this.$u.toast('该表单已有数据,无法编辑!')
|
||||||
}
|
} else {
|
||||||
|
let {id} = this
|
||||||
this.$emit('change', {
|
|
||||||
type: 'AddForm',
|
|
||||||
params: {
|
|
||||||
id: this.id
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
this.isShow = false
|
this.isShow = false
|
||||||
|
uni.navigateTo({url: `./AddForm?id=${id}`})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
share(id) {
|
share(id) {
|
||||||
|
|||||||
Reference in New Issue
Block a user