dbsd_kczx_java/ant-design-jeecg-vue/src/views/system/PermissionList.vue

180 lines
4.7 KiB
Java
Raw Normal View History

2019-02-25 15:58:05 +08:00
<template>
<a-card :bordered="false">
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button
2019-04-14 16:20:04 +08:00
@click="batchDel"
2019-02-25 15:58:05 +08:00
style="margin-left:8px"
v-if="selectedRowKeys.length > 0"
ghost
type="primary"
2019-04-14 16:20:04 +08:00
icon="delete">批量删除
</a-button>
2019-02-25 15:58:05 +08:00
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
2019-04-14 16:20:04 +08:00
<i class="anticon anticon-info-circle ant-alert-icon"></i>已选择&nbsp;<a style="font-weight: 600">{{
selectedRowKeys.length }}</a>&nbsp;&nbsp;
2019-02-25 15:58:05 +08:00
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
:columns="columns"
size="middle"
2019-04-14 16:20:04 +08:00
:pagination="false"
2019-02-25 15:58:05 +08:00
:dataSource="dataSource"
2019-04-14 16:20:04 +08:00
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}">
2019-02-25 15:58:05 +08:00
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">编辑</a>
2019-04-14 16:20:04 +08:00
<a-divider type="vertical"/>
2019-02-25 15:58:05 +08:00
<a-dropdown>
<a class="ant-dropdown-link">
2019-04-14 16:20:04 +08:00
更多 <a-icon type="down"/>
2019-02-25 15:58:05 +08:00
</a>
<a-menu slot="overlay">
<a-menu-item>
<a href="javascript:;" @click="handleDetail(record)">详情</a>
</a-menu-item>
<a-menu-item>
2019-04-14 16:20:04 +08:00
<a href="javascript:;" @click="handleDataRule(record)">数据规则</a>
2019-02-25 15:58:05 +08:00
</a-menu-item>
2019-04-14 16:20:04 +08:00
<a-menu-item>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
2019-02-25 15:58:05 +08:00
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
2019-04-14 16:20:04 +08:00
<!-- 字符串超长截取省略号显示 -->
<span slot="url" slot-scope="text, record">
<j-ellipsis :value="text" :length="25"/>
</span>
<!-- 字符串超长截取省略号显示-->
<span slot="component" slot-scope="text, record">
<j-ellipsis :value="text"/>
</span>
2019-02-25 15:58:05 +08:00
</a-table>
</div>
<!-- table区域-end -->
2019-04-14 16:20:04 +08:00
<permission-modal ref="modalForm" @ok="modalFormOk"></permission-modal>
<permission-data-rule-list ref="PermissionDataRuleList" @ok="modalFormOk"></permission-data-rule-list>
2019-02-25 15:58:05 +08:00
</a-card>
</template>
<script>
import PermissionModal from './modules/PermissionModal'
2019-04-14 16:20:04 +08:00
import { getPermissionList } from '@/api/api'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import PermissionDataRuleList from './PermissionDataRuleList'
import JEllipsis from '@/components/jeecg/JEllipsis'
2019-02-25 15:58:05 +08:00
const columns = [
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '菜单名称',
dataIndex: 'name',
key: 'name'
2019-04-14 16:20:04 +08:00
}, {
2019-02-25 15:58:05 +08:00
title: '菜单类型',
dataIndex: 'menuType',
key: 'menuType',
2019-04-14 16:20:04 +08:00
customRender: function(text) {
if (text == 0) {
return '菜单'
} else if (text == 1) {
return '菜单'
} else if (text == 2) {
return '按钮'
} else {
return text
2019-02-25 15:58:05 +08:00
}
}
},/*{
title: '权限编码',
dataIndex: 'perms',
key: 'permissionCode',
},*/{
title: 'icon',
dataIndex: 'icon',
2019-04-14 16:20:04 +08:00
key: 'icon'
2019-02-25 15:58:05 +08:00
},
{
title: '组件',
dataIndex: 'component',
key: 'component',
2019-04-14 16:20:04 +08:00
scopedSlots: { customRender: 'component' }
2019-02-25 15:58:05 +08:00
},
{
title: '路径',
dataIndex: 'url',
key: 'url',
2019-04-14 16:20:04 +08:00
scopedSlots: { customRender: 'url' }
2019-02-25 15:58:05 +08:00
},
{
title: '排序',
dataIndex: 'sortNo',
2019-04-14 16:20:04 +08:00
key: 'sortNo'
2019-02-25 15:58:05 +08:00
},
{
title: '操作',
dataIndex: 'action',
scopedSlots: { customRender: 'action' },
2019-04-14 16:20:04 +08:00
align: 'center',
width: 150
2019-02-25 15:58:05 +08:00
}
2019-04-14 16:20:04 +08:00
]
2019-02-25 15:58:05 +08:00
export default {
2019-04-14 16:20:04 +08:00
name: 'PermissionList',
mixins: [JeecgListMixin],
2019-02-25 15:58:05 +08:00
components: {
2019-04-14 16:20:04 +08:00
PermissionDataRuleList,
PermissionModal,
JEllipsis
2019-02-25 15:58:05 +08:00
},
2019-04-14 16:20:04 +08:00
data() {
2019-02-25 15:58:05 +08:00
return {
description: '这是菜单管理页面',
// 表头
2019-04-14 16:20:04 +08:00
columns: columns,
loading: false,
url: {
list: '/sys/permission/list',
delete: '/sys/permission/delete',
deleteBatch: '/sys/permission/deleteBatch'
}
2019-02-25 15:58:05 +08:00
}
},
methods: {
2019-04-14 16:20:04 +08:00
loadData() {
this.dataSource = []
getPermissionList().then((res) => {
if (res.success) {
console.log(res.result)
this.dataSource = res.result
2019-02-25 15:58:05 +08:00
}
})
},
2019-04-14 16:20:04 +08:00
// 打开数据规则编辑
handleDataRule(record) {
this.$refs.PermissionDataRuleList.edit(record)
}
2019-02-25 15:58:05 +08:00
}
}
</script>
<style scoped>
2019-04-14 16:20:04 +08:00
@import '../../assets/less/common.css';
2019-02-25 15:58:05 +08:00
</style>