rax-medical/src/views/permissions-manage/role-manage.vue

129 lines
5.0 KiB
Vue
Raw Normal View History

2023-12-17 16:05:38 +08:00
<template>
2023-12-18 17:16:47 +08:00
<div class="table-page">
<div class="search-part">
<div class="search-cell">
<span class="label">角色名称</span>
<el-input v-model="queryParams.roleName" placeholder="请输入角色名称"></el-input>
</div>
<el-button type="primary" icon="Search" @click="queryData(queryParams)">查询</el-button>
<el-button icon="Refresh" @click="queryParams = {}">重置</el-button>
</div>
<div class="button-part">
<el-button type="primary" icon="FirstAidKit" @click="addData">新增</el-button>
<el-button icon="FirstAidKit" @click="importData">导入</el-button>
<el-button icon="Delete" @click="removeData()">删除</el-button>
<el-button icon="Download" @click="exportData('角色数据', tableData)">导出</el-button>
</div>
<div class="table-part">
<el-table ref="tableRef" :data="tableData" height="100%" border show-overflow-tooltip
@row-click="tableRowClick">
<el-table-column type="selection" width="55" />
<el-table-column type="index" label="#" width="55" align="center" />
<el-table-column property="roleName" label="角色名称" width="120" align="center" />
<el-table-column property="roleMark" label="角色标识" width="180" align="center" />
<el-table-column property="roleRemark" label="角色描述" width="120" align="center" />
<el-table-column property="dataPermissions" label="数据权限" width="120" align="center" />
<el-table-column label="创建时间" width="220" align="center">
<template #default="scope"><b>{{ scope.row.createdTime }}</b></template>
</el-table-column>
<el-table-column label="操作" align="center">
<template #default="scope">
<span @click.stop>
<el-button link icon="RefreshLeft" @click="empower(scope.row)">授权</el-button>
<el-button link icon="EditPen" @click="editData(scope.row)">修改</el-button>
<el-button link icon="Delete" @click="removeData(scope.row)">删除</el-button>
</span>
</template>
</el-table-column>
</el-table>
</div>
<div class="pagination-part">
<CommonPagination :total="100" @paginationChange="paginationChange" />
</div>
2023-12-17 16:05:38 +08:00
</div>
2023-12-18 17:16:47 +08:00
<el-dialog v-model="isFormDialog" :title="formDialogTitle" width="30%"><RoleForm ref="RoleFormRef" :type="formDialogTitle === '添加' ? 'add' : 'edit'" @close="isFormDialog = false" /></el-dialog>
<ImportDialog ref="importDialogRef" title="角色导入" templateUrl="#" importUrl="#" />
<EmpowerDialog ref="empowerDialogRef" />
2023-12-17 16:05:38 +08:00
</template>
<script lang='ts' setup>
import { onMounted, reactive, ref, toRefs, watch } from 'vue'
2023-12-18 17:16:47 +08:00
import { ElMessage, ElMessageBox } from 'element-plus'
import { dateFormater } from '@/utils/date-util'
import { tableRemoveRow, exportData } from '@/utils/table-util'
import CommonPagination from '@/components/common-pagination.vue'
import RoleForm from './form/role-form.vue'
import ImportDialog from '@/components/import-dialog.vue'
import EmpowerDialog from './form/empower-dialog.vue'
2023-12-17 16:05:38 +08:00
2023-12-18 17:16:47 +08:00
const tableRef = ref()
const RoleFormRef = ref()
const importDialogRef = ref()
const empowerDialogRef = ref()
const isFormDialog = ref(false)
const formDialogTitle = ref('')
const queryParams = ref({
roleName: ''
} as any)
const tableData = ref([] as any)
2023-12-17 16:05:38 +08:00
2023-12-19 09:47:27 +08:00
queryData({roleName: '测试'})
2023-12-18 17:16:47 +08:00
2023-12-19 09:47:27 +08:00
function queryData (e: any) {
2023-12-18 17:16:47 +08:00
tableData.value = []
while (tableData.value.length < 10) {
tableData.value.push({
roleName: e.roleName,
roleMark: 'ROLE_ADMIN',
roleRemark: '超级管理员',
dataPermissions: '全部',
createdTime: dateFormater('yyyy-MM-dd HH:mm:ss'),
})
}
}
const addData = () => {
isFormDialog.value = true
formDialogTitle.value = '添加'
setTimeout(() => {
RoleFormRef.value.resetData()
}, 0)
}
const importData = () => {
setTimeout(() => {
importDialogRef.value.open()
}, 0);
}
const removeData = (e?: any) => {
const selectRow = e || tableRef.value.getSelectionRows()
tableRemoveRow({ data: selectRow }, (res: boolean) => {
if (res) {
console.log('调用删除', selectRow)
}
})
}
const empower = (e: any) => {
setTimeout(() => {
empowerDialogRef.value.open()
})
}
const editData = (e: any) => {
isFormDialog.value = true
formDialogTitle.value = '修改'
setTimeout(() => {
RoleFormRef.value.resetData()
RoleFormRef.value.formData = e
}, 0)
}
const tableRowClick = (row: any) => {
tableRef.value.toggleRowSelection(row)
}
const paginationChange = (page: number, size: number) => {
}
2023-12-17 16:05:38 +08:00
</script>
<style lang='scss' scoped>
2023-12-18 17:16:47 +08:00
2023-12-17 16:05:38 +08:00
</style>