解决测试bug

This commit is contained in:
BianLzhaoMin 2024-06-06 16:08:25 +08:00
parent f0a94ac0db
commit d5eec60eff
3 changed files with 12 additions and 1 deletions

View File

@ -846,6 +846,16 @@ export default {
) )
}, },
}, },
watch: {
openCode: {
handler(newValue) {
if (!newValue) {
this.outQuery.maCode = ''
}
},
deep: true,
},
},
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -824,7 +824,7 @@ export default {
} }
}) })
} else if (row.manageType == '0') { } else if (row.manageType == '0') {
this.title = '查看0' this.title = '查看'
this.openCode = true this.openCode = true
this.resetForm('codeQuery') this.resetForm('codeQuery')
this.codeQuery.parentId = row.id this.codeQuery.parentId = row.id

View File

@ -220,6 +220,7 @@
type="danger" type="danger"
icon="el-icon-delete" icon="el-icon-delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
v-if="scope.row.userName"
> >
解绑 解绑
</el-button> </el-button>