|
@@ -0,0 +1,199 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-dialog v-model="roleDialog.visible.value" :title="roleDialog.title.value" width="80%" append-to-body>
|
|
|
+ <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
|
+ <div v-show="showSearch" class="mb-[10px]">
|
|
|
+ <el-card shadow="hover">
|
|
|
+ <el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="68px">
|
|
|
+ <el-form-item label="角色名称" prop="roleName">
|
|
|
+ <el-input v-model="queryParams.roleName" placeholder="请输入角色名称" clearable style="width: 180px" @keyup.enter="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="权限字符" prop="roleKey">
|
|
|
+ <el-input v-model="queryParams.roleKey" placeholder="请输入权限字符" clearable style="width: 180px" @keyup.enter="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+ </transition>
|
|
|
+
|
|
|
+ <el-card shadow="hover">
|
|
|
+ <template #header>
|
|
|
+ <el-tag v-for="role in selectRoleList" :key="role.roleId" closable style="margin: 2px" @close="handleCloseTag(role)">
|
|
|
+ {{ role.roleName }}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <vxe-table
|
|
|
+ ref="tableRef"
|
|
|
+ height="400px"
|
|
|
+ border
|
|
|
+ show-overflow
|
|
|
+ :data="roleList"
|
|
|
+ :loading="loading"
|
|
|
+ :row-config="{ keyField: 'roleId' }"
|
|
|
+ :checkbox-config="{ reserve: true, checkRowKeys: roleIds }"
|
|
|
+ highlight-current-row
|
|
|
+ @checkbox-all="handleCheckboxAll"
|
|
|
+ @checkbox-change="handleCheckboxChange"
|
|
|
+ >
|
|
|
+ <vxe-column type="checkbox" width="50" align="center" />
|
|
|
+ <vxe-column v-if="false" key="roleId" label="角色编号" />
|
|
|
+ <vxe-column field="roleName" title="角色名称" />
|
|
|
+ <vxe-column field="roleKey" title="权限字符" />
|
|
|
+ <vxe-column field="roleSort" title="显示顺序" width="100" />
|
|
|
+ <vxe-column title="状态" align="center" width="100">
|
|
|
+ <template #default="scope">
|
|
|
+ <dict-tag :options="sys_normal_disable" :value="scope.row.status"></dict-tag>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column field="createTime" title="创建时间" align="center">
|
|
|
+ <template #default="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ </vxe-table>
|
|
|
+
|
|
|
+ <pagination
|
|
|
+ v-if="total > 0"
|
|
|
+ v-model:total="total"
|
|
|
+ v-model:page="queryParams.pageNum"
|
|
|
+ v-model:limit="queryParams.pageSize"
|
|
|
+ @pagination="getList"
|
|
|
+ />
|
|
|
+ </el-card>
|
|
|
+ <template #footer>
|
|
|
+ <el-button @click="roleDialog.closeDialog">取消</el-button>
|
|
|
+ <el-button type="primary" @click="confirm">确定</el-button>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup name="Role" lang="ts">
|
|
|
+import { listRole } from '@/api/system/role';
|
|
|
+import { RoleVO, RoleQuery } from '@/api/system/role/types';
|
|
|
+import { VxeTableInstance } from 'vxe-table';
|
|
|
+import useDialog from '@/hooks/useDialog';
|
|
|
+interface PropType {
|
|
|
+ modelValue?: RoleVO[];
|
|
|
+}
|
|
|
+const prop = withDefaults(defineProps<PropType>(), {
|
|
|
+ modelValue: () => []
|
|
|
+});
|
|
|
+const emit = defineEmits(['update:modelValue']);
|
|
|
+
|
|
|
+const router = useRouter();
|
|
|
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
+const { sys_normal_disable } = toRefs<any>(proxy?.useDict('sys_normal_disable'));
|
|
|
+
|
|
|
+const roleIds = computed(() => prop.modelValue.map((item) => item.roleId as string));
|
|
|
+
|
|
|
+const roleList = ref<RoleVO[]>();
|
|
|
+const loading = ref(true);
|
|
|
+const showSearch = ref(true);
|
|
|
+const ids = ref<Array<string | number>>([]);
|
|
|
+const single = ref(true);
|
|
|
+const multiple = ref(true);
|
|
|
+const total = ref(0);
|
|
|
+const dateRange = ref<[DateModelType, DateModelType]>(['', '']);
|
|
|
+const selectRoleList = ref<RoleVO[]>([]);
|
|
|
+
|
|
|
+const roleDialog = useDialog({
|
|
|
+ title: '角色选择'
|
|
|
+});
|
|
|
+
|
|
|
+const queryFormRef = ref<ElFormInstance>();
|
|
|
+const tableRef = ref<VxeTableInstance<RoleVO>>();
|
|
|
+
|
|
|
+const queryParams = ref<RoleQuery>({
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ roleName: '',
|
|
|
+ roleKey: '',
|
|
|
+ status: ''
|
|
|
+});
|
|
|
+const confirm = () => {
|
|
|
+ emit('update:modelValue', [...selectRoleList.value]);
|
|
|
+ roleDialog.closeDialog();
|
|
|
+};
|
|
|
+/**
|
|
|
+ * 查询角色列表
|
|
|
+ */
|
|
|
+const getList = () => {
|
|
|
+ loading.value = true;
|
|
|
+ listRole(proxy?.addDateRange(queryParams.value, dateRange.value)).then((res) => {
|
|
|
+ roleList.value = res.rows;
|
|
|
+ total.value = res.total;
|
|
|
+ loading.value = false;
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+/**
|
|
|
+ * 搜索按钮操作
|
|
|
+ */
|
|
|
+const handleQuery = () => {
|
|
|
+ queryParams.value.pageNum = 1;
|
|
|
+ getList();
|
|
|
+};
|
|
|
+
|
|
|
+/** 重置 */
|
|
|
+const resetQuery = () => {
|
|
|
+ dateRange.value = ['', ''];
|
|
|
+ queryFormRef.value?.resetFields();
|
|
|
+ handleQuery();
|
|
|
+};
|
|
|
+
|
|
|
+const handleCheckboxChange = (checked) => {
|
|
|
+ const row = checked.row;
|
|
|
+ if (checked.checked) {
|
|
|
+ selectRoleList.value.push(row);
|
|
|
+ } else {
|
|
|
+ selectRoleList.value = selectRoleList.value.filter((item) => {
|
|
|
+ return item.roleId !== row.roleId;
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+const handleCheckboxAll = (checked) => {
|
|
|
+ const rows = roleList.value;
|
|
|
+ if (checked.checked) {
|
|
|
+ rows.forEach((row) => {
|
|
|
+ if (!selectRoleList.value.some((item) => item.roleId === row.roleId)) {
|
|
|
+ selectRoleList.value.push(row);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ selectRoleList.value = selectRoleList.value.filter((item) => {
|
|
|
+ return !rows.some((row) => row.roleId === item.roleId);
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const handleCloseTag = (user: RoleVO) => {
|
|
|
+ const roleId = user.roleId;
|
|
|
+ // 使用split删除用户
|
|
|
+ const index = selectRoleList.value.findIndex((item) => item.roleId === roleId);
|
|
|
+ const rows = selectRoleList.value[index];
|
|
|
+ tableRef.value?.setCheckboxRow(rows, false);
|
|
|
+ selectRoleList.value.splice(index, 1);
|
|
|
+};
|
|
|
+watch(
|
|
|
+ () => prop.modelValue,
|
|
|
+ (newVal, oldValue) => {
|
|
|
+ Object.assign(selectRoleList.value, newVal);
|
|
|
+ },
|
|
|
+ { deep: true }
|
|
|
+);
|
|
|
+defineExpose({
|
|
|
+ open: roleDialog.openDialog,
|
|
|
+ close: roleDialog.closeDialog
|
|
|
+});
|
|
|
+
|
|
|
+onMounted(() => {
|
|
|
+ getList();
|
|
|
+});
|
|
|
+</script>
|