From 04a93e667bf04e57c9702bc45e80eaf116e804c9 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Thu, 23 May 2024 23:45:58 +0800 Subject: [PATCH] feat: add user manage --- src/components/common/Pagination.vue | 1 + src/components/custom/CopyText.vue | 2 +- src/service/api/system.ts | 10 + src/typings/api.d.ts | 16 +- src/typings/business.d.ts | 19 -- src/typings/entities.d.ts | 55 +++++ src/views/demo/clipboard/index.vue | 2 +- src/views/list/commonList/index.vue | 50 ++-- .../setting/account/components/TableModal.vue | 189 +++++++++++++++ src/views/setting/account/index.vue | 218 +++++++++++++++++- .../setting/menu/components/TableModal.vue | 45 ++-- src/views/setting/menu/index.vue | 8 +- 12 files changed, 527 insertions(+), 88 deletions(-) delete mode 100644 src/typings/business.d.ts create mode 100644 src/typings/entities.d.ts create mode 100644 src/views/setting/account/components/TableModal.vue diff --git a/src/components/common/Pagination.vue b/src/components/common/Pagination.vue index 63802d8..11e224f 100644 --- a/src/components/common/Pagination.vue +++ b/src/components/common/Pagination.vue @@ -20,6 +20,7 @@ function changePage() { v-if="props.count > 0" v-model:page="page" v-model:page-size="pageSize" + :page-sizes="[10, 20, 30, 50]" :item-count="props.count" :display-order="displayOrder" show-size-picker diff --git a/src/components/custom/CopyText.vue b/src/components/custom/CopyText.vue index 0346bb5..49b7a9d 100644 --- a/src/components/custom/CopyText.vue +++ b/src/components/custom/CopyText.vue @@ -2,7 +2,7 @@ const props = defineProps<{ maxLength?: string }>() -const modelValue = defineModel() +const modelValue = defineModel('value') diff --git a/src/views/list/commonList/index.vue b/src/views/list/commonList/index.vue index 948cdce..48e8662 100644 --- a/src/views/list/commonList/index.vue +++ b/src/views/list/commonList/index.vue @@ -168,36 +168,36 @@ function handleAddTable() { diff --git a/src/views/setting/menu/components/TableModal.vue b/src/views/setting/menu/components/TableModal.vue index 945bf15..2d233ff 100644 --- a/src/views/setting/menu/components/TableModal.vue +++ b/src/views/setting/menu/components/TableModal.vue @@ -3,8 +3,9 @@ import type { FormItemRule, } from 'naive-ui' import HelpInfo from '@/components/common/HelpInfo.vue' -import { useLoading } from '@/hooks' +import { useBoolean, useLoading } from '@/hooks' import { Regex } from '@/constants' +import { fetchRoleList } from '@/service' interface Props { modalName?: string @@ -20,6 +21,10 @@ const emit = defineEmits<{ close: [] }>() +const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoolean(false) + +const { loading: submitLoading, startLoading, endLoading } = useLoading(false) + const defaultFormModal: AppRoute.RowRoute = { 'name': '', 'path': '', @@ -51,11 +56,11 @@ const modalTitle = computed(() => { return `${titleMap[modalType.value]}${props.modalName}` }) -const modalVisible = ref(false) async function openModal(type: ModalType = 'add', data: AppRoute.RowRoute) { emit('open') modalType.value = type - modalVisible.value = true + getRoleList() + showModal() const handlers = { async add() { formModel.value = { ...defaultFormModal } @@ -72,10 +77,8 @@ async function openModal(type: ModalType = 'add', data: AppRoute.RowRoute) { await handlers[type]() } -const { loading: submitLoading, startLoading, endLoading } = useLoading(false) - function closeModal() { - modalVisible.value = false + hiddenModal() endLoading() emit('close') } @@ -171,20 +174,11 @@ const rules = { }, } -const options = [ - { - label: 'super', - value: 'super', - }, - { - label: 'admin', - value: 'admin', - }, - { - label: 'user', - value: 'user', - }, -] +const options = ref([]) +async function getRoleList() { + const { data } = await fetchRoleList() + options.value = data +} - + diff --git a/src/views/setting/menu/index.vue b/src/views/setting/menu/index.vue index 8b6a310..3bfedba 100644 --- a/src/views/setting/menu/index.vue +++ b/src/views/setting/menu/index.vue @@ -5,6 +5,7 @@ import TableModal from './components/TableModal.vue' import { fetchAllRoutes } from '@/service' import { useLoading } from '@/hooks' import { arrayToTree, renderIcon } from '@/utils' +import CopyText from '@/components/custom/CopyText.vue' const { loading, startLoading, endLoading } = useLoading(false) @@ -44,10 +45,11 @@ const columns: DataTableColumns = [ { title: '路径', key: 'path', - ellipsis: { - tooltip: true, + render: (row) => { + return ( + + ) }, - }, { title: '组件路径',