|
|
|
|
@ -1,55 +1,55 @@
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, unref } from 'vue'
|
|
|
|
|
import dayjs from 'dayjs'
|
|
|
|
|
import { ElMessage } from 'element-plus'
|
|
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
|
import { useTable } from '@/hooks/web/useTable'
|
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
|
import { FormExpose } from '@/components/Form'
|
|
|
|
|
import type { ${simpleClassName}VO } from '@/api/${table.moduleName}/${simpleClassName}/types'
|
|
|
|
|
import { rules, allSchemas } from './${simpleClassName}.data'
|
|
|
|
|
import * as ${simpleClassName}Api from '@/api/${table.moduleName}/${simpleClassName}'
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
import { ref, unref } from 'vue'
|
|
|
|
|
import dayjs from 'dayjs'
|
|
|
|
|
import { ElMessage } from 'element-plus'
|
|
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
|
import { useTable } from '@/hooks/web/useTable'
|
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
|
import { FormExpose } from '@/components/Form'
|
|
|
|
|
import type { ${simpleClassName}VO } from '@/api/${table.moduleName}/${simpleClassName}/types'
|
|
|
|
|
import { rules, allSchemas } from './${simpleClassName}.data'
|
|
|
|
|
import * as ${simpleClassName}Api from '@/api/${table.moduleName}/${simpleClassName}'
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
|
|
|
|
// ========== 列表相关 ==========
|
|
|
|
|
const { register, tableObject, methods } = useTable<${simpleClassName}VO>({
|
|
|
|
|
// ========== 列表相关 ==========
|
|
|
|
|
const { register, tableObject, methods } = useTable<${simpleClassName}VO>({
|
|
|
|
|
getListApi: ${simpleClassName}Api.get${simpleClassName}PageApi,
|
|
|
|
|
delListApi: ${simpleClassName}Api.delete${simpleClassName}Api,
|
|
|
|
|
exportListApi: ${simpleClassName}Api.export${simpleClassName}Api
|
|
|
|
|
})
|
|
|
|
|
const { getList, setSearchParams, delList, exportList } = methods
|
|
|
|
|
})
|
|
|
|
|
const { getList, setSearchParams, delList, exportList } = methods
|
|
|
|
|
|
|
|
|
|
// ========== CRUD 相关 ==========
|
|
|
|
|
const actionLoading = ref(false) // 遮罩层
|
|
|
|
|
const actionType = ref('') // 操作按钮的类型
|
|
|
|
|
const dialogVisible = ref(false) // 是否显示弹出层
|
|
|
|
|
const dialogTitle = ref('edit') // 弹出层标题
|
|
|
|
|
const formRef = ref<FormExpose>() // 表单 Ref
|
|
|
|
|
// ========== CRUD 相关 ==========
|
|
|
|
|
const actionLoading = ref(false) // 遮罩层
|
|
|
|
|
const actionType = ref('') // 操作按钮的类型
|
|
|
|
|
const dialogVisible = ref(false) // 是否显示弹出层
|
|
|
|
|
const dialogTitle = ref('edit') // 弹出层标题
|
|
|
|
|
const formRef = ref<FormExpose>() // 表单 Ref
|
|
|
|
|
|
|
|
|
|
// 设置标题
|
|
|
|
|
const setDialogTile = (type: string) => {
|
|
|
|
|
// 设置标题
|
|
|
|
|
const setDialogTile = (type: string) => {
|
|
|
|
|
dialogTitle.value = t('action.' + type)
|
|
|
|
|
actionType.value = type
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 新增操作
|
|
|
|
|
const handleCreate = () => {
|
|
|
|
|
// 新增操作
|
|
|
|
|
const handleCreate = () => {
|
|
|
|
|
setDialogTile('create')
|
|
|
|
|
// 重置表单
|
|
|
|
|
unref(formRef)?.getElFormRef()?.resetFields()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改操作
|
|
|
|
|
const handleUpdate = async (row: ${simpleClassName}VO) => {
|
|
|
|
|
// 修改操作
|
|
|
|
|
const handleUpdate = async (row: ${simpleClassName}VO) => {
|
|
|
|
|
setDialogTile('update')
|
|
|
|
|
// 设置数据
|
|
|
|
|
const res = await ${simpleClassName}Api.get${simpleClassName}Api(row.id)
|
|
|
|
|
unref(formRef)?.setValues(res)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 提交按钮
|
|
|
|
|
const submitForm = async () => {
|
|
|
|
|
// 提交按钮
|
|
|
|
|
const submitForm = async () => {
|
|
|
|
|
const elForm = unref(formRef)?.getElFormRef()
|
|
|
|
|
if (!elForm) return
|
|
|
|
|
elForm.validate(async (valid) => {
|
|
|
|
|
@ -73,20 +73,20 @@
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ========== 详情相关 ==========
|
|
|
|
|
const detailRef = ref() // 详情 Ref
|
|
|
|
|
// ========== 详情相关 ==========
|
|
|
|
|
const detailRef = ref() // 详情 Ref
|
|
|
|
|
|
|
|
|
|
// 详情操作
|
|
|
|
|
const handleDetail = async (row: ${simpleClassName}VO) => {
|
|
|
|
|
// 详情操作
|
|
|
|
|
const handleDetail = async (row: ${simpleClassName}VO) => {
|
|
|
|
|
// 设置数据
|
|
|
|
|
detailRef.value = row
|
|
|
|
|
setDialogTile('detail')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ========== 初始化 ==========
|
|
|
|
|
getList()
|
|
|
|
|
// ========== 初始化 ==========
|
|
|
|
|
getList()
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|