123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544 |
- <template>
- <a-row :gutter="10">
- <a-col :md="leftColMd" :sm="24" style="margin-bottom: 20px">
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <!-- 搜索区域 -->
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-row :gutter="24">
- <a-col :md="12" :sm="8">
- <a-form-item label="角色名称" :labelCol="{span: 5}" :wrapperCol="{span: 18, offset: 1}">
- <a-input placeholder="" v-model="queryParam.roleName"></a-input>
- </a-form-item>
- </a-col>
- <!--
- <a-col :md="11" :sm="12">
- <a-form-item label="创建时间" :labelCol="{span: 5}" :wrapperCol="{span: 18, offset: 1}">
- <j-date v-model="queryParam.createTime_begin" :showTime="true" date-format="YYYY-MM-DD HH:mm:ss" style="width:45%" placeholder="请选择开始时间" ></j-date>
- <span style="width: 10px;">~</span>
- <j-date v-model="queryParam.createTime_end" :showTime="true" date-format="YYYY-MM-DD HH:mm:ss" style="width:45%" placeholder="请选择结束时间"></j-date>
- </a-form-item>
- </a-col>
- -->
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-col :md="12" :sm="24">
- <a-button type="primary" @click="searchQuery" icon="search" style="margin-left: 21px">查询</a-button>
- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
- </a-col>
- </span>
- </a-row>
- </a-form>
- </div>
- <!-- 操作按钮区域 -->
- <div class="table-operator" style="margin: 5px 0 10px 2px">
- <a-button @click="handleAdd" type="primary" icon="plus">新建角色</a-button>
- <!--<a-button @click="handleEdit(model1)" type="primary" icon="plus">角色编辑</a-button>-->
- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
- <a-button type="primary" icon="import">导入</a-button>
- </a-upload>
- <a-button type="primary" icon="download" @click="handleExportXls('角色管理')">导出</a-button>
- </div>
- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
- <i class="anticon anticon-info-circle ant-alert-icon">
- </i> 已选择 <a><b>{{ selectedRowKeys1.length }}</b></a>项
- <a style="margin-left: 24px" @click="onClearSelected1">清空</a>
- </div>
- <div style="margin-top: 15px">
- <a-table
- style="height:500px"
- ref="table"
- size="middle"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :rowSelection="{selectedRowKeys: selectedRowKeys1, onChange: onSelectChange1, type:'radio'}"
- @change="handleTableChange">
- <span slot="action" slot-scope="text, record">
- <a @click="handleOpen(record)">用户</a>
- <a-divider type="vertical"/>
- <a-dropdown>
- <a class="ant-dropdown-link">
- 更多 <a-icon type="down"/>
- </a>
- <a-menu slot="overlay">
- <a-menu-item>
- <a @click="handlePerssion(record.id)">授权</a>
- </a-menu-item>
- <a-menu-item>
- <a @click="handleEdit(record)">编辑</a>
- </a-menu-item>
- <a-menu-item>
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete1(record.id)">
- <a>删除</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- </span>
- </a-table>
- </div>
- <!-- 右侧的角色权限配置 -->
- <user-role-modal ref="modalUserRole"></user-role-modal>
- <role-modal ref="modalForm" @ok="modalFormOk"></role-modal>
- </a-card>
- </a-col>
- <a-col :md="rightColMd" :sm="24" v-if="this.rightcolval == 1">
- <a-card :bordered="false">
- <div style="text-align: right;">
- <a-icon type="close-circle" @click="hideUserList" />
- </div>
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="24">
- <a-col :md="12" :sm="12">
- <a-form-item label="用户账号">
- <a-input placeholder="" v-model="queryParam2.username"></a-input>
- </a-form-item>
- </a-col>
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-col :md="9" :sm="24">
- <a-button type="primary" @click="searchQuery2" icon="search" style="margin-left: 21px">查询</a-button>
- <a-button type="primary" @click="searchReset2" icon="reload" style="margin-left: 8px">重置</a-button>
- </a-col>
- </span>
- </a-row>
- </a-form>
- </div>
- <!-- 操作按钮区域 -->
- <div class="table-operator" :md="24" :sm="24">
- <a-button @click="handleAdd2" type="primary" icon="plus" style="margin-top: 16px">新增用户</a-button>
- <!--<a-button @click="handleEdit2" type="primary" icon="edit" style="margin-top: 16px">用户编辑</a-button>-->
- <a-button @click="handleAddUserRole" type="primary" icon="plus" style="margin-top: 16px">已有用户</a-button>
- <a-dropdown v-if="selectedRowKeys2.length > 0">
- <a-menu slot="overlay">
- <a-menu-item key="1" @click="batchDel2">
- <a-icon type="delete"/>
- 删除
- </a-menu-item>
- </a-menu>
- <a-button style="margin-left: 8px"> 批量操作
- <a-icon type="down"/>
- </a-button>
- </a-dropdown>
- </div>
- <!-- table区域-begin -->
- <div>
- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{
- selectedRowKeys2.length }}</a>项
- <a style="margin-left: 24px" @click="onClearSelected2">清空</a>
- </div>
- <a-table
- style="height:500px"
- ref="table2"
- bordered
- size="middle"
- rowKey="id"
- :columns="columns2"
- :dataSource="dataSource2"
- :pagination="ipagination2"
- :loading="loading2"
- :rowSelection="{selectedRowKeys: selectedRowKeys2, onChange: onSelectChange2}"
- @change="handleTableChange2">
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit2(record)">编辑</a>
- <a-divider type="vertical"/>
- <a-dropdown>
- <a class="ant-dropdown-link">
- 更多 <a-icon type="down"/>
- </a>
- <a-menu slot="overlay">
- <a-menu-item>
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete2(record.id)">
- <a>删除</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- </span>
- </a-table>
- </div>
- <!-- 表单区域 -->
- <role-modal ref="modalForm" @ok="modalFormOk"></role-modal>
- <user-modal ref="modalForm2" @ok="modalFormOk2"></user-modal>
- <Select-User-Modal ref="selectUserModal" @selectFinished="selectOK"></Select-User-Modal>
- </a-card>
- </a-col>
- </a-row>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import { deleteAction, postAction, getAction } from '@/api/manage'
- import SelectUserModal from './modules/SelectUserModal'
- import RoleModal from './modules/RoleModal'
- import UserModal from './modules/UserModal'
- import { filterObj } from '@/utils/util'
- import UserRoleModal from './modules/UserRoleModal'
- import moment from 'moment'
- export default {
- name: 'RoleUserList',
- mixins: [JeecgListMixin],
- components: {
- UserRoleModal,
- SelectUserModal,
- RoleModal,
- UserModal,
- moment
- },
- data() {
- return {
- model1: {},
- model2: {},
- currentRoleId: '',
- queryParam1: {},
- queryParam2: {},
- dataSource1: [],
- dataSource2: [],
- ipagination1: {
- current: 1,
- pageSize: 10,
- pageSizeOptions: ['10', '20', '30'],
- showTotal: (total, range) => {
- return range[0] + '-' + range[1] + ' 共' + total + '条'
- },
- showQuickJumper: true,
- showSizeChanger: true,
- total: 0
- },
- ipagination2: {
- current: 1,
- pageSize: 10,
- pageSizeOptions: ['10', '20', '30'],
- showTotal: (total, range) => {
- return range[0] + '-' + range[1] + ' 共' + total + '条'
- },
- showQuickJumper: true,
- showSizeChanger: true,
- total: 0
- },
- isorter1: {
- column: 'createTime',
- order: 'desc'
- },
- isorter2: {
- column: 'createTime',
- order: 'desc'
- },
- filters1: {},
- filters2: {},
- loading1: false,
- loading2: false,
- selectedRowKeys1: [],
- selectedRowKeys2: [],
- selectionRows1: [],
- selectionRows2: [],
- test:{},
- rightcolval:0,
- columns:
- [
- {
- title: '角色编码',
- align: 'center',
- dataIndex: 'roleCode'
- },
- {
- title: '角色名称',
- align: 'center',
- dataIndex: 'roleName'
- },
- {
- title: '创建时间',
- dataIndex: 'createTime',
- align:"center",
- sorter: true,
- customRender: (text) => {
- return moment(text).format('YYYY-MM-DD')
- }
- },
- {
- title: '操作',
- dataIndex: 'action',
- align: 'center',
- scopedSlots: { customRender: 'action' }
- }
- ],
- columns2: [{
- title: '用户账号',
- align: 'center',
- dataIndex: 'username',
- width: 120
- },
- {
- title: '用户名称',
- align: 'center',
- width: 100,
- dataIndex: 'realname'
- },
- {
- title: '状态',
- align: 'center',
- width: 80,
- dataIndex: 'status_dictText'
- },
- {
- title: '操作',
- dataIndex: 'action',
- scopedSlots: { customRender: 'action' },
- align: 'center',
- width: 120
- }],
- // 高级查询参数
- superQueryParams2: '',
- // 高级查询拼接条件
- superQueryMatchType2: 'and',
- url: {
- list: '/sys/role/list',
- delete: '/sys/role/delete',
- list2: '/sys/user/userRoleList',
- addUserRole: '/sys/user/addSysUserRole',
- delete2: '/sys/user/deleteUserRole',
- deleteBatch2: '/sys/user/deleteUserRoleBatch',
- exportXlsUrl: 'sys/role/exportXls',
- importExcelUrl: 'sys/role/importExcel'
- }
- }
- },
- computed: {
- importExcelUrl: function() {
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
- },
- leftColMd() {
- return this.selectedRowKeys1.length === 0 ? 24 : 12
- },
- rightColMd() {
- return this.selectedRowKeys1.length === 0 ? 0 : 12
- }
- },
- methods: {
- onSelectChange2(selectedRowKeys, selectionRows) {
- this.selectedRowKeys2 = selectedRowKeys
- this.selectionRows2 = selectionRows
- },
- onClearSelected2() {
- this.selectedRowKeys2 = []
- this.selectionRows2 = []
- },
- onClearSelected1() {
- this.selectedRowKeys1 = []
- this.selectionRows1 = []
- },
- onSelectChange1(selectedRowKeys, selectionRows) {
- this.rightcolval = 1
- this.selectedRowKeys1 = selectedRowKeys
- this.selectionRows1 = selectionRows
- this.model1 = Object.assign({}, selectionRows[0])
- console.log(this.model1)
- this.currentRoleId = selectedRowKeys[0]
- this.loadData2()
- },
- onClearSelected() {
- },
- getQueryParams2() {
- //获取查询条件
- let sqp = {}
- if (this.superQueryParams2) {
- sqp['superQueryParams'] = encodeURI(this.superQueryParams2)
- sqp['superQueryMatchType'] = this.superQueryMatchType2
- }
- var param = Object.assign(sqp, this.queryParam2, this.isorter2, this.filters2)
- param.field = this.getQueryField2()
- param.pageNo = this.ipagination2.current
- param.pageSize = this.ipagination2.pageSize
- return filterObj(param)
- },
- getQueryField2() {
- //TODO 字段权限控制
- var str = 'id,'
- this.columns2.forEach(function(value) {
- str += ',' + value.dataIndex
- })
- return str
- },
- handleEdit2: function(record) {
- this.$refs.modalForm2.title = '编辑'
- this.$refs.modalForm2.roleDisabled = true
- this.$refs.modalForm2.edit(record)
- },
- handleAdd2: function() {
- if (this.currentRoleId == '') {
- this.$message.error('请选择一个角色!')
- } else {
- this.$refs.modalForm2.roleDisabled = true
- this.$refs.modalForm2.title = '新增'
- this.$refs.modalForm2.edit({activitiSync:'1',userIdentity:1,selectedroles:this.currentRoleId})
- }
- },
- modalFormOk2() {
- // 新增/修改 成功时,重载列表
- this.loadData2()
- },
- loadData2(arg) {
- if (!this.url.list2) {
- this.$message.error('请设置url.list2属性!')
- return
- }
- //加载数据 若传入参数1则加载第一页的内容
- if (arg === 1) {
- this.ipagination2.current = 1
- }
- if (this.currentRoleId === '') return
- let params = this.getQueryParams2()//查询条件
- params.roleId = this.currentRoleId
- this.loading2 = true
- getAction(this.url.list2, params).then((res) => {
- if (res.success) {
- this.dataSource2 = res.result.records
- this.ipagination2.total = res.result.total
- }
- this.loading2 = false
- })
- },
- handleDelete1: function(id) {
- this.handleDelete(id)
- this.dataSource2 = []
- this.currentRoleId = ''
- },
- handleDelete2: function(id) {
- if (!this.url.delete2) {
- this.$message.error('请设置url.delete2属性!')
- return
- }
- var that = this
- deleteAction(that.url.delete2, { roleId: this.currentRoleId, userId: id }).then((res) => {
- if (res.success) {
- that.$message.success(res.message)
- that.loadData2()
- } else {
- that.$message.warning(res.message)
- }
- })
- },
- batchDel2: function() {
- if (!this.url.deleteBatch2) {
- this.$message.error('请设置url.deleteBatch2属性!')
- return
- }
- if (this.selectedRowKeys2.length <= 0) {
- this.$message.warning('请选择一条记录!')
- return
- } else {
- var ids = ''
- for (var a = 0; a < this.selectedRowKeys2.length; a++) {
- ids += this.selectedRowKeys2[a] + ','
- }
- var that = this
- console.log(this.currentDeptId)
- this.$confirm({
- title: '确认删除',
- content: '是否删除选中数据?',
- onOk: function() {
- deleteAction(that.url.deleteBatch2, { roleId: that.currentRoleId, userIds: ids }).then((res) => {
- if (res.success) {
- that.$message.success(res.message)
- that.loadData2()
- that.onClearSelected()
- } else {
- that.$message.warning(res.message)
- }
- })
- }
- })
- }
- },
- selectOK(data) {
- let params = {}
- params.roleId = this.currentRoleId
- params.userIdList = []
- for (var a = 0; a < data.length; a++) {
- params.userIdList.push(data[a])
- }
- console.log(params)
- postAction(this.url.addUserRole, params).then((res) => {
- if (res.success) {
- this.loadData2()
- this.$message.success(res.message)
- } else {
- this.$message.warning(res.message)
- }
- })
- },
- handleAddUserRole() {
- if (this.currentRoleId == '') {
- this.$message.error('请选择一个角色!')
- } else {
- this.$refs.selectUserModal.visible = true
- }
- },
- handleOpen(record) {
- this.rightcolval = 1
- this.selectedRowKeys1 = [record.id]
- this.model1 = Object.assign({}, record)
- this.currentRoleId = record.id
- this.onClearSelected2()
- this.loadData2()
- },
- /*handleEdit: function(record) {
- if (this.currentRoleId == '') {
- this.$message.error('请选择一个角色!')
- } else {
- this.$refs.modalForm.edit(record)
- this.$refs.modalForm.title = '编辑'
- }
- },*/
- searchQuery2() {
- this.loadData2(1)
- },
- searchReset2() {
- this.queryParam2 = {}
- this.loadData2(1)
- },
- handleTableChange2(pagination, filters, sorter) {
- //分页、排序、筛选变化时触发
- //TODO 筛选
- if (Object.keys(sorter).length > 0) {
- this.isorter2.column = sorter.field
- this.isorter2.order = 'ascend' == sorter.order ? 'asc' : 'desc'
- }
- this.ipagination2 = pagination
- this.loadData2()
- },
- hideUserList(){
- //this.rightcolval = 0
- this.selectedRowKeys1 = []
- },
- handlePerssion(roleId){
- this.$refs.modalUserRole.show(roleId);
- },
- }
- }
- </script>
- <style scoped>
- /** Button按钮间距 */
- .ant-btn {
- margin-left: 8px
- }
- </style>
|