fix: 1、修复detection下拉面板点击空白处,地址栏的eventId未被清除的问题;2、完善policy交互流程

This commit is contained in:
刘洪洪
2023-10-25 15:13:57 +08:00
parent 1fae281b8b
commit 6dea1ee890
4 changed files with 58 additions and 10 deletions

View File

@@ -118,6 +118,9 @@ export default {
props: {
editObj: {
type: Object
},
isComplete: {
type: Boolean
}
},
data () {
@@ -167,6 +170,12 @@ export default {
this.settingObj.editFlag = false
this.settingObj.saveFlag = true
}
},
isComplete (newVal) {
if (!newVal) {
console.log('让我瞅瞅咋回事')
this.onContinue()
}
}
},
mounted () {
@@ -190,7 +199,10 @@ export default {
}
},
/** 点击继续,进行第二步 */
onContinue () {
onContinue (e) {
if (e) {
delete this.settingObj.settingNoContinue
}
this.$refs.form.validate(valid => {
if (valid) {
this.settingObj.editFlag = false