新增ButtonPopover组件

This commit is contained in:
aoshiguchen
2022-08-28 16:48:40 +08:00
parent 1f70a2defd
commit 29e2f24ecd
+10 -1
View File
@@ -41,7 +41,9 @@
<el-button type="primary" size="mini" @click="handleUpdate(scope.row)">{{$t('table.edit')}}</el-button>
<el-button v-if="scope.row.enable =='1'" size="mini" type="danger" @click="handleModifyStatus(scope.row,2)">{{$t('table.disable')}}</el-button>
<el-button v-if="scope.row.enable =='2'" size="mini" type="success" @click="handleModifyStatus(scope.row,1)">{{$t('table.enable')}}</el-button>
<el-button size="mini" type="danger" @click="handleDelete(scope.row,'deleted')">{{$t('table.delete')}}</el-button>
<!-- <el-button size="mini" type="danger" @click="handleDelete(scope.row,'deleted')">{{$t('table.delete')}}</el-button>-->
<ButtonPopover @handleCommitClick="handleDelete2(scope.row)"/>
</template>
</el-table-column>
</el-table>
@@ -85,6 +87,7 @@
import { fetchList, createUser, updateUser, updateEnableStatus, deleteUser } from '@/api/user'
import waves from '@/directive/waves' // 水波纹指令
import { parseTime } from '@/utils'
import ButtonPopover from '../../components/Button/buttonPopover'
const calendarTypeOptions = [
{ key: 'CN', display_name: 'China' },
@@ -104,6 +107,9 @@
directives: {
waves
},
components: {
ButtonPopover
},
data() {
return {
tableKey: 0,
@@ -289,6 +295,9 @@
})
}).catch(() => {})
},
handleDelete2(row) {
console.log(row)
},
handleDownload() {
this.downloadLoading = true
import('@/vendor/Export2Excel').then(excel => {