BUG 26049
This commit is contained in:
@@ -184,10 +184,10 @@ export default {
|
|||||||
})
|
})
|
||||||
|
|
||||||
uni.$on('filedConfig', res => {
|
uni.$on('filedConfig', res => {
|
||||||
if (res.index === '-1') {
|
if (!res.index) {
|
||||||
this.targetList.push(res.config)
|
this.targetList.push(res.config)
|
||||||
} else {
|
} else {
|
||||||
this.$set(this.targetList, [res.index], res.config)
|
this.targetList.splice(res.index, 1, res.config)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -189,7 +189,6 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
pointTypeChange(e) {
|
pointTypeChange(e) {
|
||||||
console.log(e)
|
|
||||||
this.config.pointType = e[0].value
|
this.config.pointType = e[0].value
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user