优化页面样式等问题

This commit is contained in:
BianLzhaoMin 2024-06-17 14:28:10 +08:00
parent 86bbb36485
commit 8a38a64c30
1 changed files with 8 additions and 1 deletions

View File

@ -469,6 +469,10 @@ export default {
console.log(row)
this.reset()
this.form = row
if (!this.form.fixCode) {
this.form.fixCode = '1'
}
this.$set(this.form, 'str', '')
this.$set(this.form, 'str1', '')
// this.$set(this.form,'fixCode','1')
@ -659,7 +663,10 @@ export default {
this.isDetail = true
this.title = '编码绑定详情'
this.codeList = []
const res = await getBindCodeDetails({ taskId: row.taskId })
const res = await getBindCodeDetails({
taskId: row.taskId,
typeId: row.typeId,
})
console.log('🚀 ~ handleBindDetails ~ res:', res)
this.codeList = res.data
},