123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <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.trim="queryParam.name"
- placeholder="请输入角色名称30个字以内"
- :maxLength="30"
- id="roleList-name"
- @pressEnter="$refs.table.refresh(true)"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="状态">
- <v-select code="ENABLE_FLAG" v-model="queryParam.isEnable" allowClear placeholder="请选择状态" id="roleList-isEnable"></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-button type="primary" @click="$refs.table.refresh(true)" id="roleList-handSubmit" style="margin-right: 10px;">查询</a-button>
- <a-button type="" @click="reset" id="roleList-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <a-divider/>
- <div class="table-operator">
- <a-button type="primary" icon="plus" @click="openModal" id="roleList-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="禁用" id="roleList-isEnable" v-model="record.isEnable" @change="changeFlagHandle(text, record)"/>
- </span>
-
- <template slot="remarks" slot-scope="text, record">
- <span :title="record.remarks" style="display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">{ record.remarks }</span>
- </template>
-
- <span slot="action" slot-scope="text, record">
- <a class="action-button menu-text" @click="openMenuModal(record)" id="roleList-openMenuModal">菜单权限</a>
- <a class="action-button" @click="handleEdit(record)" id="roleList-handleEdit">修改</a>
- <a v-if="!record.isEnable" class="action-button red-text" @click="delect(record)" id="roleList-delect">删除</a>
- </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: 60,
- align: 'center'
- },
- {
- title: '创建时间',
- dataIndex: 'createDate',
- width: '120',
- align: 'center'
- },
- {
- title: '角色名称',
- dataIndex: 'name',
- width: '100',
- align: 'center'
- },
- {
- title: '角色描述',
- dataIndex: 'remarks',
- width: '100',
- ellipsis: true,
- align: 'center',
- scopedSlots: { customRender: 'remarks' }
- },
- {
- title: '状态',
- width: '100',
- align: 'center',
- scopedSlots: { customRender: 'status' }
- },
- {
- title: '操作',
- width: '100',
- align: 'center',
- scopedSlots: { customRender: 'action' }
- }
- ],
-
- loadData: parameter => {
- console.log(parameter, '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 => {
-
- })
- },
- methods: {
-
- refreshTable () {
- this.$refs.table.refresh(true)
- },
-
- reset () {
- this.queryParam.name = ''
- this.queryParam.isEnable = ''
- this.refreshTable()
- },
-
- 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
- console.log(res.data, 'this.itemData')
- }
- })
- },
-
- delect (row) {
- const _this = this
- this.$confirm({
- title: '警告',
- content: '删除后无法恢复,确认删除?',
- okText: '确定',
- cancelText: '取消',
- onOk () {
- delectRolePower({
- id: row.id
- }).then(res => {
- console.log(res, 'res1111')
- if (res.status == 200) {
- _this.$message.success('删除成功')
- _this.$refs.table.refresh()
- } else {
- this.$message.error(res.message)
- }
- }).catch(() => {
- _this.$message.success('删除失败, 请稍后重试')
- })
- }
- })
- },
- handleEdit (row) {
- console.log(row, '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>
|