新增DropdownTable组件

This commit is contained in:
aoshiguchen
2022-09-01 22:49:46 +08:00
parent 8cc13fbcc5
commit de6d70cbb3
2 changed files with 4 additions and 4 deletions
@@ -80,8 +80,8 @@
}
},
methods: {
handleRowClick(val, column) {
this.$emit('selectedData', { list: val, index: column })
handleRowClick(val) {
this.$emit('selectedData', val)
this.timer = setTimeout(() => {
this.popVisible = false
}, 200)
@@ -336,8 +336,8 @@
}
})
},
selectedFeeItem(list, index) {
console.log(list, index)
selectedFeeItem(list) {
console.log(list)
this.temp.licenseId = list.id
this.temp.licenseName = list.name
},