|
@@ -0,0 +1,238 @@
|
|
|
+<script setup lang="tsx">
|
|
|
+import { reactive, ref, unref } from 'vue'
|
|
|
+import { getMenuListApi, saveMenu, deleteMenu, updateMenu } from '@/api/menu/omsIndex'
|
|
|
+import { useTable } from '@/hooks/web/useTable'
|
|
|
+import { useI18n } from '@/hooks/web/useI18n'
|
|
|
+import { Table, TableColumn } from '@/components/Table'
|
|
|
+import { ElButton, ElMessageBox, ElTag, ElMessage } 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()
|
|
|
+ console.log(res)
|
|
|
+ return {
|
|
|
+ list: res.data || []
|
|
|
+ }
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+const { dataList, loading } = tableState
|
|
|
+const { getList } = tableMethods
|
|
|
+
|
|
|
+const tableColumns = reactive<TableColumn[]>([
|
|
|
+ // {
|
|
|
+ // field: 'index',
|
|
|
+ // label: t('userDemo.index'),
|
|
|
+ // type: 'index'
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ field: 'name',
|
|
|
+ label: t('menu.menuName')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'icon',
|
|
|
+ label: t('menu.icon')
|
|
|
+ // slots: {
|
|
|
+ // default: (data: any) => {
|
|
|
+ // const icon = data.row.icon
|
|
|
+ // if (icon) {
|
|
|
+ // return (
|
|
|
+ // <>
|
|
|
+ // <Icon icon={icon} />
|
|
|
+ // </>
|
|
|
+ // )
|
|
|
+ // } else {
|
|
|
+ // return null
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'type',
|
|
|
+ label: '类型',
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <ElTag type={data.row.type === 0 ? '' : data.row.type === 1 ? 'success' : 'info'}>
|
|
|
+ {data.row.type === 0 ? '目录' : data.row.type === 1 ? '菜单' : '按钮'}
|
|
|
+ </ElTag>
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // field: 'component',
|
|
|
+ // label: t('menu.component'),
|
|
|
+ // slots: {
|
|
|
+ // default: (data: any) => {
|
|
|
+ // const component = data.row.component
|
|
|
+ // return <>{component === '#' ? '顶级目录' : component === '##' ? '子目录' : component}</>
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ field: 'orderNum',
|
|
|
+ label: '排序'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'url',
|
|
|
+ label: '路由'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'permissions',
|
|
|
+ label: '授权标识'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'action',
|
|
|
+ label: t('userDemo.action'),
|
|
|
+ width: 240,
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ const row = data.row
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <ElButton type="primary" onClick={() => action(row, 'edit')}>
|
|
|
+ {t('exampleDemo.edit')}
|
|
|
+ </ElButton>
|
|
|
+ <ElButton
|
|
|
+ type="danger"
|
|
|
+ onClick={() => {
|
|
|
+ handleDelete(row)
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ {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 handleDelete = (row: any) => {
|
|
|
+ console.log(row)
|
|
|
+ ElMessageBox.confirm(`确认删除${row.name}?`, '提示').then(() => {
|
|
|
+ deleteMenu([row.id]).then((res) => {
|
|
|
+ if (res) {
|
|
|
+ getList()
|
|
|
+ ElMessage.success('删除成功')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+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
|
|
|
+ if (formData.id) {
|
|
|
+ updateMenu(formData)
|
|
|
+ .then((res) => {
|
|
|
+ if (res) {
|
|
|
+ ElMessage.success('操作成功')
|
|
|
+ saveLoading.value = false
|
|
|
+ dialogVisible.value = false
|
|
|
+ getList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ saveLoading.value = false
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ saveMenu(formData)
|
|
|
+ .then((res) => {
|
|
|
+ if (res) {
|
|
|
+ ElMessage.success('操作成功')
|
|
|
+ saveLoading.value = false
|
|
|
+ dialogVisible.value = false
|
|
|
+ getList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ saveLoading.value = false
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</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"
|
|
|
+ node-key="id"
|
|
|
+ :data="dataList"
|
|
|
+ :loading="loading"
|
|
|
+ @register="tableRegister"
|
|
|
+ />
|
|
|
+ </ContentWrap>
|
|
|
+
|
|
|
+ <Dialog v-model="dialogVisible" :title="dialogTitle">
|
|
|
+ <Write
|
|
|
+ v-if="actionType !== 'detail'"
|
|
|
+ ref="writeRef"
|
|
|
+ :treeSelectData="dataList"
|
|
|
+ :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>
|