Compare commits

...

2 Commits

Author SHA1 Message Date
BianLzhaoMin 782d2c645a Merge branch 'dev-nx' of http://192.168.0.56:3000/bonus/devicesmgt into dev-nx 2024-06-17 14:28:16 +08:00
BianLzhaoMin 8a38a64c30 优化页面样式等问题 2024-06-17 14:28:10 +08:00
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
},