|
@@ -0,0 +1,193 @@
|
|
|
+<script setup lang="tsx">
|
|
|
+import { reactive, ref, unref } from 'vue'
|
|
|
+import { getMenuListApi } from '@/api/menu'
|
|
|
+import { useTable } from '@/hooks/web/useTable'
|
|
|
+import { useI18n } from '@/hooks/web/useI18n'
|
|
|
+import { Table, TableColumn } from '@/components/Table'
|
|
|
+import { ElButton, ElTag } from 'element-plus'
|
|
|
+import { Icon } from '@/components/Icon'
|
|
|
+import { Search } from '@/components/Search'
|
|
|
+import { FormSchema } from '@/components/Form'
|
|
|
+import { ContentWrap } from '@/components/ContentWrap'
|
|
|
+import Write from './components/Write.vue'
|
|
|
+import { Dialog } from '@/components/Dialog'
|
|
|
+
|
|
|
+const { t } = useI18n()
|
|
|
+
|
|
|
+const { tableRegister, tableState, tableMethods } = useTable({
|
|
|
+ fetchDataApi: async () => {
|
|
|
+ const res = await getMenuListApi()
|
|
|
+ return {
|
|
|
+ list: res.data.list || []
|
|
|
+ }
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+const { dataList, loading } = tableState
|
|
|
+const { getList } = tableMethods
|
|
|
+
|
|
|
+const tableColumns = reactive<TableColumn[]>([
|
|
|
+ {
|
|
|
+ field: 'index',
|
|
|
+ label: t('userDemo.index'),
|
|
|
+ type: 'index'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'meta.title',
|
|
|
+ label: t('menu.menuName')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'meta.icon',
|
|
|
+ label: t('menu.icon'),
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ const icon = data[0].row.meta.icon
|
|
|
+ if (icon) {
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <Icon icon={icon} />
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ } else {
|
|
|
+ return null
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'meta.permission',
|
|
|
+ label: t('menu.permission'),
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ const permission = data[0].row.meta.permission
|
|
|
+ return permission ? <>{permission.join(', ')}</> : null
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'component',
|
|
|
+ label: t('menu.component'),
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ const component = data[0].row.component
|
|
|
+ return <>{component === '#' ? '顶级目录' : component === '##' ? '子目录' : component}</>
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'path',
|
|
|
+ label: t('menu.path')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'status',
|
|
|
+ label: t('menu.status'),
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <ElTag type={data[0].row.status === 0 ? 'danger' : 'success'}>
|
|
|
+ {data[0].row.status === 1 ? t('userDemo.enable') : t('userDemo.disable')}
|
|
|
+ </ElTag>
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'action',
|
|
|
+ label: t('userDemo.action'),
|
|
|
+ width: 240,
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ const row = data[0].row
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <ElButton type="primary" onClick={() => action(row, 'edit')}>
|
|
|
+ {t('exampleDemo.edit')}
|
|
|
+ </ElButton>
|
|
|
+ <ElButton type="danger">{t('exampleDemo.del')}</ElButton>
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+])
|
|
|
+
|
|
|
+const searchSchema = reactive<FormSchema[]>([
|
|
|
+ {
|
|
|
+ field: 'meta.title',
|
|
|
+ label: t('menu.menuName'),
|
|
|
+ component: 'Input'
|
|
|
+ }
|
|
|
+])
|
|
|
+
|
|
|
+const searchParams = ref({})
|
|
|
+const setSearchParams = (data: any) => {
|
|
|
+ searchParams.value = data
|
|
|
+ getList()
|
|
|
+}
|
|
|
+
|
|
|
+const dialogVisible = ref(false)
|
|
|
+const dialogTitle = ref('')
|
|
|
+
|
|
|
+const currentRow = ref()
|
|
|
+const actionType = ref('')
|
|
|
+
|
|
|
+const writeRef = ref<ComponentRef<typeof Write>>()
|
|
|
+
|
|
|
+const saveLoading = ref(false)
|
|
|
+
|
|
|
+const action = (row: any, type: string) => {
|
|
|
+ dialogTitle.value = t(type === 'edit' ? 'exampleDemo.edit' : 'exampleDemo.detail')
|
|
|
+ actionType.value = type
|
|
|
+ currentRow.value = row
|
|
|
+ dialogVisible.value = true
|
|
|
+}
|
|
|
+
|
|
|
+const AddAction = () => {
|
|
|
+ dialogTitle.value = t('exampleDemo.add')
|
|
|
+ currentRow.value = undefined
|
|
|
+ dialogVisible.value = true
|
|
|
+ actionType.value = ''
|
|
|
+}
|
|
|
+
|
|
|
+const save = async () => {
|
|
|
+ const write = unref(writeRef)
|
|
|
+ const formData = await write?.submit()
|
|
|
+ if (formData) {
|
|
|
+ saveLoading.value = true
|
|
|
+ setTimeout(() => {
|
|
|
+ saveLoading.value = false
|
|
|
+ dialogVisible.value = false
|
|
|
+ }, 1000)
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <ContentWrap>
|
|
|
+ <Search :schema="searchSchema" @reset="setSearchParams" @search="setSearchParams" />
|
|
|
+ <div class="mb-10px">
|
|
|
+ <ElButton type="primary" @click="AddAction">{{ t('exampleDemo.add') }}</ElButton>
|
|
|
+ </div>
|
|
|
+ <Table
|
|
|
+ :columns="tableColumns"
|
|
|
+ default-expand-all
|
|
|
+ node-key="id"
|
|
|
+ :data="dataList"
|
|
|
+ :loading="loading"
|
|
|
+ @register="tableRegister"
|
|
|
+ />
|
|
|
+ </ContentWrap>
|
|
|
+
|
|
|
+ <Dialog v-model="dialogVisible" :title="dialogTitle">
|
|
|
+ <Write v-if="actionType !== 'detail'" ref="writeRef" :current-row="currentRow" />
|
|
|
+
|
|
|
+ <template #footer>
|
|
|
+ <ElButton v-if="actionType !== 'detail'" type="primary" :loading="saveLoading" @click="save">
|
|
|
+ {{ t('exampleDemo.save') }}
|
|
|
+ </ElButton>
|
|
|
+ <ElButton @click="dialogVisible = false">{{ t('dialogDemo.close') }}</ElButton>
|
|
|
+ </template>
|
|
|
+ </Dialog>
|
|
|
+</template>
|