mirror of
https://gitee.com/xiongmao1988/rax-medical.git
synced 2025-08-24 13:04:57 +08:00
134 lines
5.3 KiB
Vue
134 lines
5.3 KiB
Vue
<template>
|
|
<div class="table-page">
|
|
<div class="search-part" v-show="isSearch">
|
|
<div class="search-cell">
|
|
<span class="label">角色名称</span>
|
|
<el-input v-model="queryParams" 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" style="justify-content: space-between;">
|
|
<div>
|
|
<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>
|
|
</div>
|
|
<TableAbility @searchBtn="isSearch = !isSearch" @refreshBtn="queryData({})" @downloadBtn="exportData('角色数据', tableData)"></TableAbility>
|
|
</div>
|
|
<div class="table-part">
|
|
<el-table ref="tableRef" v-loading="loading" :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">{{ scope.row.createdTime }}</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>
|
|
</div>
|
|
<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" />
|
|
</template>
|
|
|
|
<script lang='ts' setup>
|
|
import {ref} from 'vue'
|
|
import {dateFormater} from '@/utils/date-util'
|
|
import {exportData, tableRemoveRow} 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'
|
|
|
|
const tableRef = ref()
|
|
const RoleFormRef = ref()
|
|
const importDialogRef = ref()
|
|
const empowerDialogRef = ref()
|
|
const isSearch = ref(true)
|
|
const loading = ref(true)
|
|
const isFormDialog = ref(false)
|
|
const formDialogTitle = ref('')
|
|
const queryParams = ref("")
|
|
const tableData = ref([] as any)
|
|
|
|
queryData({ roleName: '测试' })
|
|
|
|
function queryData(e: any) {
|
|
loading.value = true
|
|
tableData.value = []
|
|
setTimeout(() => {
|
|
while (tableData.value.length < 10) {
|
|
tableData.value.push({
|
|
roleName: e.roleName || '测试',
|
|
roleMark: 'ROLE_ADMIN',
|
|
roleRemark: '超级管理员',
|
|
dataPermissions: '全部',
|
|
createdTime: dateFormater('yyyy-MM-dd HH:mm:ss'),
|
|
})
|
|
}
|
|
loading.value = false
|
|
}, 200);
|
|
}
|
|
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 = JSON.parse(JSON.stringify(e))
|
|
}, 0)
|
|
}
|
|
const tableRowClick = (row: any) => {
|
|
tableRef.value.toggleRowSelection(row)
|
|
}
|
|
|
|
const paginationChange = (page: number, size: number) => {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss' scoped></style>
|