123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <template>
- <a-card :bordered="false">
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="48">
- <a-col :md="6" :sm="24">
- <a-form-item label="角色名称">
- <a-input allowClear v-model="queryParam.name" placeholder="请输入角色名称"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="状态">
- <v-select code="CHECK_ENABLE_STATE" v-model="queryParam.isEnable" allowClear placeholder="请选择状态" ></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="4" :sm="24">
- <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <a-divider/>
- <div class="table-operator">
- <a-button type="primary" icon="plus" @click="openModal">新建</a-button>
- </div>
- <s-table
- ref="table"
- size="default"
- rowKey="id"
- :columns="columns"
- :data="loadData"
- bordered
- >
- <span slot="status" slot-scope="text, record">
- <a-switch checkedChildren="" unCheckedChildren="" v-model="record.isEnable" @change="changeFlagHandle(text, record)"/>
- </span>
- <span slot="action" slot-scope="text, record">
- <template>
- <a class="action-button menu-text" @click="openMenuModal(record)">菜单权限</a>
- <a class="action-button" @click="handleEdit(record)">修改</a>
- <a v-if="!record.isEnable" class="action-button red-text" @click="delect(record)">删除</a>
- </template>
- </span>
- </s-table>
- <roleModal :visible="showModal" :data="itemData" @refresh="refreshTable" @close="showModal = false"></roleModal>
- <menuModal :visible="showMenuModal" :data="menuData" @close="showMenuModal = false"></menuModal>
- </a-card>
- </template>
- <script>
- import { STable, VSelect } from '@/components'
- import roleModal from './roleModal.vue'
- import menuModal from './menuModal.vue'
- import { getPowerRoleList, updateEnableStatus, delectRolePower, getMenuList } from '@/api/power-role.js'
- export default {
- name: 'RoleList',
- components: {
- STable, VSelect, roleModal, menuModal
- },
- data () {
- return {
- // 查询参数
- queryParam: {
- name: '',
- isEnable: ''
- },
- showModal: false,
- showMenuModal: false,
- itemData: {}, // 编辑行数据
- menuData: {},
- // 表头
- columns: [
- {
- title: '序号',
- dataIndex: 'no',
- width: '40',
- align: 'center'
- },
- {
- title: '角色名称',
- dataIndex: 'name',
- width: '100',
- align: 'center'
- },
- {
- title: '角色描述',
- dataIndex: 'remarks',
- width: '100',
- align: 'center'
- },
- {
- title: '状态',
- width: '100',
- align: 'center',
- scopedSlots: { customRender: 'status' }
- },
- {
- title: '创建时间',
- dataIndex: 'createDate',
- width: '120',
- align: 'center'
- },
- {
- title: '操作',
- width: '100',
- align: 'center',
- scopedSlots: { customRender: 'action' }
- }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- return getPowerRoleList(Object.assign(parameter, this.queryParam)).then(res => {
- const no = (res.data.pageNo - 1) * res.data.pageSize
- for (let i = 0; i < res.data.list.length; i++) {
- const _item = res.data.list[i]
- _item.no = no + i + 1
- _item.isEnable = _item.isEnable + '' === '1'
- }
- return res.data
- })
- },
- optionAlertShow: false
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- // vm.$refs.table.refresh()
- })
- },
- methods: {
- // 刷新列表
- refreshTable () {
- this.$refs.table.refresh(true)
- },
- // 新建
- openModal () {
- this.showModal = true
- this.itemData = {}
- },
- // 打开分配权限弹窗
- openMenuModal (row) {
- this.getMenuList(row.id)
- },
- // 获取菜单树列表
- getMenuList (id) {
- const _this = this
- getMenuList({ id: id }).then(res => {
- if (res.status == 200) {
- _this.menuData = res.data
- this.showMenuModal = true
- }
- })
- },
- // 删除
- delect (row) {
- const _this = this
- this.$confirm({
- title: '警告',
- content: '删除后无法恢复,确认删除?',
- okText: '确定',
- cancelText: '取消',
- onOk () {
- delectRolePower({
- id: row.id
- }).then(res => {
- if (res.status == 200) {
- _this.$message.success('删除成功')
- _this.$refs.table.refresh()
- } else {
- this.$message.error(res.message)
- }
- }).catch(() => {
- _this.$message.success('删除失败, 请稍后重试')
- })
- }
- })
- },
- handleEdit (row) {
- this.showModal = true
- this.itemData = row
- },
- // 修改状态
- changeFlagHandle (text, record) {
- const _data = {
- id: record.id,
- flag: record.isEnable ? '1' : '0'
- }
- updateEnableStatus(_data).then(res => {
- if (res.status + '' === '200') {
- this.$message.success('修改成功')
- } else {
- record.isEnable = !record.isEnable
- }
- })
- }
- }
- }
- </script>
- <style scoped>
- .table-page-search-wrapper .ant-form-inline .ant-form-item{
- margin-bottom: 0;
- }
- .action-button{
- line-height: 40px;
- white-space: nowrap;
- padding: 5px 10px;
- background-color: #1890ff;
- border-radius: 4px;
- color: #fff;
- margin-right: 5px;
- }
- .red-text{
- background-color: red;
- }
- .menu-text {
- background-color: #f90;
- }
- </style>
|