bc312196 by 任超

style:字典

1 parent 4e9419c0
...@@ -75,8 +75,12 @@ export default { ...@@ -75,8 +75,12 @@ export default {
75 this.tableData.total = total ? total : 0 75 this.tableData.total = total ? total : 0
76 }) 76 })
77 }, 77 },
78 handleRefresh () { 78 async handleRefresh () {
79 this.$store.dispatch('dict/generateDic') 79 let refech = await this.$store.dispatch('dict/generateDic')
80 refech && this.$message({
81 message: '刷新成功',
82 type: 'success'
83 });
80 }, 84 },
81 editClick (row, val) { 85 editClick (row, val) {
82 this.details.rowData = row 86 this.details.rowData = row
......