130 lines
4.0 KiB
Vue
130 lines
4.0 KiB
Vue
<template>
|
|
<div class="user-blacklist-container">
|
|
<vab-query-form>
|
|
<vab-query-form-left-panel :span="12">
|
|
<el-button icon="el-icon-plus" type="primary" @click="handleAdd">新增</el-button>
|
|
<el-button icon="el-icon-delete" type="danger" @click="handleDelete">移除选中</el-button>
|
|
</vab-query-form-left-panel>
|
|
<vab-query-form-right-panel :span="12">
|
|
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
|
|
<el-form-item>
|
|
<el-input v-model.trim="queryForm.userId" clearable placeholder="请输入查询的用户ID" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button icon="el-icon-search" type="primary" @click="queryData">查询</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</vab-query-form-right-panel>
|
|
</vab-query-form>
|
|
|
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText" @selection-change="setSelectRows">
|
|
<el-table-column align="center" show-overflow-tooltip type="selection" width="55" />
|
|
<el-table-column align="center" label="用户ID" prop="userId" show-overflow-tooltip />
|
|
<el-table-column align="center" fixed="right" label="操作" show-overflow-tooltip width="200">
|
|
<template #default="{ row }">
|
|
<el-button type="text" @click="handleDelete(row)">移除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<el-pagination
|
|
background
|
|
:current-page="queryForm.pageNo"
|
|
:layout="layout"
|
|
:page-size="queryForm.pageSize"
|
|
:total="total"
|
|
@current-change="handleCurrentChange"
|
|
@size-change="handleSizeChange"
|
|
/>
|
|
|
|
<edit ref="edit" @fetch-data="fetchData" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { getList, doRemove } from '@/api/system/userBlack'
|
|
import Edit from './components/UserBlacklistEdit'
|
|
|
|
export default {
|
|
name: 'UserBlacklist',
|
|
components: { Edit },
|
|
data() {
|
|
return {
|
|
list: [],
|
|
listLoading: true,
|
|
layout: 'total, sizes, prev, pager, next, jumper',
|
|
total: 0,
|
|
selectRows: [],
|
|
elementLoadingText: '正在加载...',
|
|
queryForm: {
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
userId: '',
|
|
},
|
|
}
|
|
},
|
|
created() {
|
|
this.fetchData()
|
|
},
|
|
methods: {
|
|
setSelectRows(val) {
|
|
this.selectRows = val
|
|
},
|
|
handleAdd() {
|
|
this.$refs['edit'].showEdit()
|
|
},
|
|
handleDelete(row) {
|
|
if (row.userId) {
|
|
this.$baseConfirm('你确定要将当前用户从黑名单中移除吗?', null, async () => {
|
|
const { msg } = await doRemove({ userIds: [row.userId] })
|
|
this.$baseMessage(msg, 'success')
|
|
this.fetchData()
|
|
})
|
|
} else {
|
|
if (this.selectRows.length > 0) {
|
|
const userIds = this.selectRows.map((item) => item.userId)
|
|
this.$baseConfirm('你确定要将选中的用户从黑名单中移除吗?', null, async () => {
|
|
const { msg } = await doRemove({ userIds })
|
|
this.$baseMessage(msg, 'success')
|
|
this.fetchData()
|
|
})
|
|
} else {
|
|
this.$baseMessage('未选中任何行', 'error')
|
|
return false
|
|
}
|
|
}
|
|
},
|
|
handleSizeChange(val) {
|
|
this.queryForm.pageSize = val
|
|
this.fetchData()
|
|
},
|
|
handleCurrentChange(val) {
|
|
this.queryForm.pageNo = val
|
|
this.fetchData()
|
|
},
|
|
queryData() {
|
|
this.queryForm.pageNo = 1
|
|
this.fetchData()
|
|
},
|
|
async fetchData() {
|
|
this.listLoading = true
|
|
try {
|
|
const { data } = await getList(this.queryForm)
|
|
this.list = data.list
|
|
this.total = data.totalCount
|
|
} catch (error) {
|
|
console.error(error)
|
|
} finally {
|
|
this.listLoading = false
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.user-blacklist-container {
|
|
padding: 20px;
|
|
}
|
|
</style>
|