|
@@ -0,0 +1,198 @@
|
|
|
+<script setup lang="tsx">
|
|
|
+import { ContentWrap } from '@/components/ContentWrap'
|
|
|
+import { useI18n } from '@/hooks/web/useI18n'
|
|
|
+import { Table } from '@/components/Table'
|
|
|
+import { ref, unref, reactive } from 'vue'
|
|
|
+import { ElButton } from 'element-plus'
|
|
|
+import { saveTableApi, delTableListApi, updateTableApi, getListPage } from '@/api/module'
|
|
|
+import type { DictData, DictRowData } from '@/api/manage/types'
|
|
|
+import { useTable } from '@/hooks/web/useTable'
|
|
|
+import { Search } from '@/components/Search'
|
|
|
+import Write from './components/Write.vue'
|
|
|
+import { Dialog } from '@/components/Dialog'
|
|
|
+import { CrudSchema, useCrudSchemas } from '@/hooks/web/useCrudSchemas'
|
|
|
+const { t } = useI18n()
|
|
|
+const { tableRegister, tableState, tableMethods } = useTable({
|
|
|
+ fetchDataApi: async () => {
|
|
|
+ const { currentPage, pageSize } = tableState
|
|
|
+ const res = await getListPage({
|
|
|
+ ...searchParams.value,
|
|
|
+ page: unref(currentPage),
|
|
|
+ limit: unref(pageSize),
|
|
|
+ order: '',
|
|
|
+ orderField: ''
|
|
|
+ })
|
|
|
+ return {
|
|
|
+ list: res.data.data,
|
|
|
+ total: res.data.total
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fetchDelApi: async () => {
|
|
|
+ const res = await delTableListApi([id.value])
|
|
|
+ return !!res
|
|
|
+ }
|
|
|
+})
|
|
|
+const { loading, dataList, total, pageSize, currentPage } = tableState
|
|
|
+const { getList, delList } = tableMethods
|
|
|
+
|
|
|
+const crudSchemas = reactive<CrudSchema[]>([
|
|
|
+ {
|
|
|
+ field: 'name',
|
|
|
+ label: '模块名称'
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ field: 'description',
|
|
|
+ label: '备注',
|
|
|
+ search: {
|
|
|
+ hidden: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'action',
|
|
|
+ label: t('userDemo.action'),
|
|
|
+ form: {
|
|
|
+ hidden: true
|
|
|
+ },
|
|
|
+ detail: {
|
|
|
+ hidden: true
|
|
|
+ },
|
|
|
+ search: {
|
|
|
+ hidden: true
|
|
|
+ },
|
|
|
+ table: {
|
|
|
+ width: 160,
|
|
|
+ fixed: 'right',
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ const row = data.row as DictRowData
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <ElButton type="primary" onClick={() => action(row, 'edit')}>
|
|
|
+ {t('exampleDemo.edit')}
|
|
|
+ </ElButton>
|
|
|
+ <ElButton type="danger" onClick={() => delData(row)}>
|
|
|
+ {t('exampleDemo.del')}
|
|
|
+ </ElButton>
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+])
|
|
|
+
|
|
|
+const { allSchemas } = useCrudSchemas(crudSchemas)
|
|
|
+
|
|
|
+const searchParams = ref({})
|
|
|
+const setSearchParams = (params: any) => {
|
|
|
+ currentPage.value = 1
|
|
|
+ searchParams.value = params
|
|
|
+ getList()
|
|
|
+}
|
|
|
+
|
|
|
+const dialogVisible = ref(false)
|
|
|
+const dialogTitle = ref('')
|
|
|
+
|
|
|
+const currentRow = ref<DictData>()
|
|
|
+const actionType = ref('')
|
|
|
+
|
|
|
+const AddAction = () => {
|
|
|
+ dialogTitle.value = '新增'
|
|
|
+ dialogVisible.value = true
|
|
|
+ currentRow.value = undefined
|
|
|
+ actionType.value = 'add'
|
|
|
+}
|
|
|
+
|
|
|
+const delLoading = ref(false)
|
|
|
+const id = ref<string>('')
|
|
|
+
|
|
|
+const delData = async (row: DictRowData) => {
|
|
|
+ id.value = row.id
|
|
|
+ delLoading.value = true
|
|
|
+
|
|
|
+ await delList(unref(id).length).finally(() => {
|
|
|
+ delLoading.value = false
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const action = (row: DictData, type: string) => {
|
|
|
+ dialogTitle.value = type === 'edit' ? '编辑' : '新增'
|
|
|
+ actionType.value = type
|
|
|
+ currentRow.value = row
|
|
|
+ dialogVisible.value = true
|
|
|
+}
|
|
|
+
|
|
|
+const writeRef = ref<ComponentRef<typeof Write>>()
|
|
|
+// const tableRef = ref<ComponentRef<typeof Table>>()
|
|
|
+const saveLoading = ref(false)
|
|
|
+const save = async () => {
|
|
|
+ const write = unref(writeRef)
|
|
|
+ const formData = await write?.submit()
|
|
|
+ if (formData) {
|
|
|
+ saveLoading.value = true
|
|
|
+ try {
|
|
|
+ if (!formData.id) {
|
|
|
+ const res = await saveTableApi(formData)
|
|
|
+ if (res) {
|
|
|
+ getList()
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ const res = await updateTableApi(formData)
|
|
|
+ if (res) {
|
|
|
+ getList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error)
|
|
|
+ } finally {
|
|
|
+ saveLoading.value = false
|
|
|
+ dialogVisible.value = false
|
|
|
+ actionType.value = 'detail'
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="flex w-100% h-100%">
|
|
|
+ <ContentWrap class="flex-[3] ml-20px">
|
|
|
+ <Search
|
|
|
+ :schema="allSchemas.searchSchema"
|
|
|
+ @reset="setSearchParams"
|
|
|
+ @search="setSearchParams"
|
|
|
+ />
|
|
|
+
|
|
|
+ <div class="mb-10px">
|
|
|
+ <ElButton type="primary" @click="AddAction">{{ t('exampleDemo.add') }}</ElButton>
|
|
|
+ </div>
|
|
|
+ <Table
|
|
|
+ v-model:current-page="currentPage"
|
|
|
+ v-model:page-size="pageSize"
|
|
|
+ row-key="id"
|
|
|
+ :columns="allSchemas.tableColumns"
|
|
|
+ :data="dataList"
|
|
|
+ :loading="loading"
|
|
|
+ :pagination="{
|
|
|
+ total: total
|
|
|
+ }"
|
|
|
+ @register="tableRegister"
|
|
|
+ />
|
|
|
+ </ContentWrap>
|
|
|
+
|
|
|
+ <Dialog v-model="dialogVisible" :title="dialogTitle">
|
|
|
+ <Write
|
|
|
+ ref="writeRef"
|
|
|
+ v-if="actionType !== 'detail'"
|
|
|
+ :form-schema="allSchemas.formSchema"
|
|
|
+ :current-row="currentRow"
|
|
|
+ />
|
|
|
+ <template #footer>
|
|
|
+ <ElButton type="primary" :loading="saveLoading" @click="save">
|
|
|
+ {{ t('exampleDemo.save') }}
|
|
|
+ </ElButton>
|
|
|
+ <ElButton @click="dialogVisible = false">{{ t('dialogDemo.close') }}</ElButton>
|
|
|
+ </template>
|
|
|
+ </Dialog>
|
|
|
+ </div>
|
|
|
+</template>
|