mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 18:28:43 +08:00 
			
		
		
		
	perf: vxe
This commit is contained in:
		| @@ -2,9 +2,8 @@ import { reactive } from 'vue' | ||||
| import { required } from '@/utils/formRules' | ||||
| import { useI18n } from '@/hooks/web/useI18n' | ||||
| import { DICT_TYPE } from '@/utils/dict' | ||||
| import { CrudSchema, useCrudSchemas } from '@/hooks/web/useCrudSchemas' | ||||
| // 国际化 | ||||
| const { t } = useI18n() | ||||
| import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas' | ||||
| const { t } = useI18n() // 国际化 | ||||
| // 表单校验 | ||||
| export const rules = reactive({ | ||||
|   applicationName: [required], | ||||
| @@ -12,71 +11,45 @@ export const rules = reactive({ | ||||
|   message: [required] | ||||
| }) | ||||
| // 新增 + 修改 | ||||
| const crudSchemas = reactive<CrudSchema[]>([ | ||||
|   { | ||||
|     label: t('common.index'), | ||||
|     field: 'id', | ||||
|     type: 'index', | ||||
|     form: { | ||||
|       show: false | ||||
| const crudSchemas = reactive<VxeCrudSchema>({ | ||||
|   primaryKey: 'id', | ||||
|   primaryType: 'seq', | ||||
|   action: true, | ||||
|   columns: [ | ||||
|     { | ||||
|       title: '错误码类型', | ||||
|       field: 'type', | ||||
|       dictType: DICT_TYPE.SYSTEM_ERROR_CODE_TYPE, | ||||
|       search: { | ||||
|         show: true | ||||
|       } | ||||
|     }, | ||||
|     detail: { | ||||
|       show: false | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     label: '错误码类型', | ||||
|     field: 'type', | ||||
|     component: 'InputNumber', | ||||
|     dictType: DICT_TYPE.SYSTEM_ERROR_CODE_TYPE, | ||||
|     search: { | ||||
|       show: true | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     label: '应用名', | ||||
|     field: 'applicationName', | ||||
|     search: { | ||||
|       show: true | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     label: '错误码编码', | ||||
|     field: 'code', | ||||
|     search: { | ||||
|       show: true | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     label: '错误码错误提示', | ||||
|     field: 'message' | ||||
|   }, | ||||
|   { | ||||
|     label: t('common.createTime'), | ||||
|     field: 'createTime', | ||||
|     form: { | ||||
|       show: false | ||||
|     { | ||||
|       title: '应用名', | ||||
|       field: 'applicationName', | ||||
|       search: { | ||||
|         show: true | ||||
|       } | ||||
|     }, | ||||
|     search: { | ||||
|       show: true, | ||||
|       component: 'DatePicker', | ||||
|       componentProps: { | ||||
|         type: 'daterange', | ||||
|         valueFormat: 'YYYY-MM-DD HH:mm:ss', | ||||
|         defaultTime: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)] | ||||
|     { | ||||
|       title: '错误码编码', | ||||
|       field: 'code', | ||||
|       search: { | ||||
|         show: true | ||||
|       } | ||||
|     }, | ||||
|     { | ||||
|       title: '错误码错误提示', | ||||
|       field: 'message' | ||||
|     }, | ||||
|     { | ||||
|       title: t('common.createTime'), | ||||
|       field: 'createTime', | ||||
|       formatter: 'formatDate', | ||||
|       form: { | ||||
|         show: false | ||||
|       } | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     field: 'action', | ||||
|     width: '240px', | ||||
|     label: t('table.action'), | ||||
|     form: { | ||||
|       show: false | ||||
|     }, | ||||
|     detail: { | ||||
|       show: false | ||||
|     } | ||||
|   } | ||||
| ]) | ||||
| export const { allSchemas } = useCrudSchemas(crudSchemas) | ||||
|   ] | ||||
| }) | ||||
| export const { allSchemas } = useVxeCrudSchemas(crudSchemas) | ||||
|   | ||||
| @@ -1,30 +1,114 @@ | ||||
| <template> | ||||
|   <ContentWrap> | ||||
|     <vxe-grid ref="xGrid" v-bind="gridOptions" class="xtable-scrollbar"> | ||||
|       <template #toolbar_buttons> | ||||
|         <XButton | ||||
|           type="primary" | ||||
|           preIcon="ep:zoom-in" | ||||
|           :title="t('action.add')" | ||||
|           v-hasPermi="['system:error-code:create']" | ||||
|           @click="handleCreate()" | ||||
|         /> | ||||
|       </template> | ||||
|       <template #createTime_item="{ data }"> | ||||
|         <el-date-picker | ||||
|           v-model="data.createTime" | ||||
|           type="datetimerange" | ||||
|           range-separator="-" | ||||
|           :start-placeholder="t('common.startTimeText')" | ||||
|           :end-placeholder="t('common.endTimeText')" | ||||
|         /> | ||||
|       </template> | ||||
|       <template #type_default="{ row }"> | ||||
|         <DictTag :type="DICT_TYPE.COMMON_STATUS" :value="row.status" /> | ||||
|       </template> | ||||
|       <template #actionbtns_default="{ row }"> | ||||
|         <XTextButton | ||||
|           preIcon="ep:edit" | ||||
|           :title="t('action.edit')" | ||||
|           v-hasPermi="['system:error-code:update']" | ||||
|           @click="handleUpdate(row.id)" | ||||
|         /> | ||||
|         <XTextButton | ||||
|           preIcon="ep:view" | ||||
|           :title="t('action.detail')" | ||||
|           v-hasPermi="['system:error-code:update']" | ||||
|           @click="handleDetail(row)" | ||||
|         /> | ||||
|         <XTextButton | ||||
|           preIcon="ep:delete" | ||||
|           :title="t('action.del')" | ||||
|           v-hasPermi="['system:error-code:delete']" | ||||
|           @click="handleDelete(row.id)" | ||||
|         /> | ||||
|       </template> | ||||
|     </vxe-grid> | ||||
|   </ContentWrap> | ||||
|   <XModal id="errorCodeModel" v-model="dialogVisible" :title="dialogTitle"> | ||||
|     <template #default> | ||||
|       <!-- 对话框(添加 / 修改) --> | ||||
|       <Form | ||||
|         v-if="['create', 'update'].includes(actionType)" | ||||
|         :schema="allSchemas.formSchema" | ||||
|         :rules="rules" | ||||
|         ref="formRef" | ||||
|       /> | ||||
|       <!-- 对话框(详情) --> | ||||
|       <Descriptions | ||||
|         v-if="actionType === 'detail'" | ||||
|         :schema="allSchemas.detailSchema" | ||||
|         :data="detailRef" | ||||
|       > | ||||
|         <template #type="{ row }"> | ||||
|           <DictTag :type="DICT_TYPE.SYSTEM_ERROR_CODE_TYPE" :value="row.type" /> | ||||
|         </template> | ||||
|         <template #createTime="{ row }"> | ||||
|           <span>{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span> | ||||
|         </template> | ||||
|       </Descriptions> | ||||
|     </template> | ||||
|     <!-- 操作按钮 --> | ||||
|     <template #footer> | ||||
|       <XButton | ||||
|         v-if="['create', 'update'].includes(actionType)" | ||||
|         type="primary" | ||||
|         :title="t('action.save')" | ||||
|         :loading="actionLoading" | ||||
|         @click="submitForm" | ||||
|       /> | ||||
|       <XButton :loading="actionLoading" :title="t('dialog.close')" @click="dialogVisible = false" /> | ||||
|     </template> | ||||
|   </XModal> | ||||
| </template> | ||||
|  | ||||
| <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 { ErrorCodeVO } from '@/api/system/errorCode/types' | ||||
| import { rules, allSchemas } from './errorCode.data' | ||||
| import * as ErrorCodeApi from '@/api/system/errorCode' | ||||
| import { useI18n } from '@/hooks/web/useI18n' | ||||
| import { useMessage } from '@/hooks/web/useMessage' | ||||
| import { useVxeGrid } from '@/hooks/web/useVxeGrid' | ||||
| import { VxeGridInstance } from 'vxe-table' | ||||
| import { FormExpose } from '@/components/Form' | ||||
| import { ElDatePicker } from 'element-plus' | ||||
|  | ||||
| const { t } = useI18n() // 国际化 | ||||
|  | ||||
| // ========== 列表相关 ========== | ||||
| const { register, tableObject, methods } = useTable<ErrorCodeVO>({ | ||||
|   getListApi: ErrorCodeApi.getErrorCodePageApi, | ||||
|   delListApi: ErrorCodeApi.deleteErrorCodeApi | ||||
| }) | ||||
| const { getList, setSearchParams, delList } = methods | ||||
|  | ||||
| // ========== CRUD 相关 ========== | ||||
| const loading = ref(false) // 遮罩层 | ||||
| const actionType = ref('') // 操作按钮的类型 | ||||
| const message = useMessage() // 消息弹窗 | ||||
| const dialogVisible = ref(false) // 是否显示弹出层 | ||||
| const dialogTitle = ref('edit') // 弹出层标题 | ||||
| const actionType = ref('') // 操作按钮的类型 | ||||
| const actionLoading = ref(false) // 按钮Loading | ||||
| const xGrid = ref<VxeGridInstance>() // grid Ref | ||||
| const formRef = ref<FormExpose>() // 表单 Ref | ||||
| const detailRef = ref() // 详情 Ref | ||||
|  | ||||
| const { gridOptions } = useVxeGrid<ErrorCodeVO>({ | ||||
|   allSchemas: allSchemas, | ||||
|   getListApi: ErrorCodeApi.getErrorCodePageApi | ||||
| }) | ||||
| // 设置标题 | ||||
| const setDialogTile = (type: string) => { | ||||
|   dialogTitle.value = t('action.' + type) | ||||
| @@ -39,147 +123,57 @@ const handleCreate = () => { | ||||
|   unref(formRef)?.getElFormRef()?.resetFields() | ||||
| } | ||||
|  | ||||
| // 详情操作 | ||||
| const handleDetail = async (row: ErrorCodeVO) => { | ||||
|   // 设置数据 | ||||
|   detailRef.value = row | ||||
|   setDialogTile('detail') | ||||
| } | ||||
|  | ||||
| // 修改操作 | ||||
| const handleUpdate = async (row: ErrorCodeVO) => { | ||||
| const handleUpdate = async (rowId: number) => { | ||||
|   setDialogTile('update') | ||||
|   // 设置数据 | ||||
|   const res = await ErrorCodeApi.getErrorCodeApi(row.id) | ||||
|   const res = await ErrorCodeApi.getErrorCodeApi(rowId) | ||||
|   unref(formRef)?.setValues(res) | ||||
| } | ||||
|  | ||||
| // 删除操作 | ||||
| const handleDelete = async (rowId: number) => { | ||||
|   message | ||||
|     .delConfirm() | ||||
|     .then(async () => { | ||||
|       await ErrorCodeApi.deleteErrorCodeApi(rowId) | ||||
|       message.success(t('common.delSuccess')) | ||||
|     }) | ||||
|     .finally(() => { | ||||
|       xGrid.value?.commitProxy('query') | ||||
|     }) | ||||
| } | ||||
|  | ||||
| // 提交按钮 | ||||
| const submitForm = async () => { | ||||
|   const elForm = unref(formRef)?.getElFormRef() | ||||
|   if (!elForm) return | ||||
|   elForm.validate(async (valid) => { | ||||
|     if (valid) { | ||||
|       loading.value = true | ||||
|       actionLoading.value = true | ||||
|       // 提交请求 | ||||
|       try { | ||||
|         const data = unref(formRef)?.formModel as ErrorCodeVO | ||||
|         if (actionType.value === 'create') { | ||||
|           await ErrorCodeApi.createErrorCodeApi(data) | ||||
|           ElMessage.success(t('common.createSuccess')) | ||||
|           message.success(t('common.createSuccess')) | ||||
|         } else { | ||||
|           await ErrorCodeApi.updateErrorCodeApi(data) | ||||
|           ElMessage.success(t('common.updateSuccess')) | ||||
|           message.success(t('common.updateSuccess')) | ||||
|         } | ||||
|         // 操作成功,重新加载列表 | ||||
|         dialogVisible.value = false | ||||
|         await getList() | ||||
|       } finally { | ||||
|         loading.value = false | ||||
|         actionLoading.value = false | ||||
|         xGrid.value?.commitProxy('query') | ||||
|       } | ||||
|     } | ||||
|   }) | ||||
| } | ||||
|  | ||||
| // ========== 详情相关 ========== | ||||
| const detailRef = ref() // 详情 Ref | ||||
|  | ||||
| // 详情操作 | ||||
| const handleDetail = async (row: ErrorCodeVO) => { | ||||
|   // 设置数据 | ||||
|   detailRef.value = row | ||||
|   setDialogTile('detail') | ||||
| } | ||||
|  | ||||
| // ========== 初始化 ========== | ||||
| getList() | ||||
| </script> | ||||
|  | ||||
| <template> | ||||
|   <!-- 搜索工作区 --> | ||||
|   <ContentWrap> | ||||
|     <Search :schema="allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> | ||||
|   </ContentWrap> | ||||
|   <ContentWrap> | ||||
|     <!-- 操作工具栏 --> | ||||
|     <div class="mb-10px"> | ||||
|       <el-button v-hasPermi="['system:error-code:create']" type="primary" @click="handleCreate"> | ||||
|         <Icon icon="ep:zoom-in" class="mr-5px" /> {{ t('action.add') }} | ||||
|       </el-button> | ||||
|     </div> | ||||
|     <!-- 列表 --> | ||||
|     <Table | ||||
|       :columns="allSchemas.tableColumns" | ||||
|       :selection="false" | ||||
|       :data="tableObject.tableList" | ||||
|       :loading="tableObject.loading" | ||||
|       :pagination="{ | ||||
|         total: tableObject.total | ||||
|       }" | ||||
|       v-model:pageSize="tableObject.pageSize" | ||||
|       v-model:currentPage="tableObject.currentPage" | ||||
|       @register="register" | ||||
|     > | ||||
|       <template #type="{ row }"> | ||||
|         <DictTag :type="DICT_TYPE.SYSTEM_ERROR_CODE_TYPE" :value="row.type" /> | ||||
|       </template> | ||||
|       <template #createTime="{ row }"> | ||||
|         <span>{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span> | ||||
|       </template> | ||||
|       <template #action="{ row }"> | ||||
|         <el-button | ||||
|           link | ||||
|           type="primary" | ||||
|           v-hasPermi="['system:error-code:update']" | ||||
|           @click="handleUpdate(row)" | ||||
|         > | ||||
|           <Icon icon="ep:edit" class="mr-1px" /> {{ t('action.edit') }} | ||||
|         </el-button> | ||||
|         <el-button | ||||
|           link | ||||
|           type="primary" | ||||
|           v-hasPermi="['system:error-code:update']" | ||||
|           @click="handleDetail(row)" | ||||
|         > | ||||
|           <Icon icon="ep:view" class="mr-1px" /> {{ t('action.detail') }} | ||||
|         </el-button> | ||||
|         <el-button | ||||
|           link | ||||
|           type="primary" | ||||
|           v-hasPermi="['system:error-code:delete']" | ||||
|           @click="delList(row.id, false)" | ||||
|         > | ||||
|           <Icon icon="ep:delete" class="mr-1px" /> {{ t('action.del') }} | ||||
|         </el-button> | ||||
|       </template> | ||||
|     </Table> | ||||
|   </ContentWrap> | ||||
|  | ||||
|   <Dialog v-model="dialogVisible" :title="dialogTitle"> | ||||
|     <!-- 对话框(添加 / 修改) --> | ||||
|     <Form | ||||
|       v-if="['create', 'update'].includes(actionType)" | ||||
|       :schema="allSchemas.formSchema" | ||||
|       :rules="rules" | ||||
|       ref="formRef" | ||||
|     /> | ||||
|     <!-- 对话框(详情) --> | ||||
|     <Descriptions | ||||
|       v-if="actionType === 'detail'" | ||||
|       :schema="allSchemas.detailSchema" | ||||
|       :data="detailRef" | ||||
|     > | ||||
|       <template #type="{ row }"> | ||||
|         <DictTag :type="DICT_TYPE.SYSTEM_ERROR_CODE_TYPE" :value="row.type" /> | ||||
|       </template> | ||||
|       <template #createTime="{ row }"> | ||||
|         <span>{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span> | ||||
|       </template> | ||||
|     </Descriptions> | ||||
|     <!-- 操作按钮 --> | ||||
|     <template #footer> | ||||
|       <el-button | ||||
|         v-if="['create', 'update'].includes(actionType)" | ||||
|         type="primary" | ||||
|         :loading="loading" | ||||
|         @click="submitForm" | ||||
|       > | ||||
|         {{ t('action.save') }} | ||||
|       </el-button> | ||||
|       <el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button> | ||||
|     </template> | ||||
|   </Dialog> | ||||
| </template> | ||||
|   | ||||
| @@ -13,7 +13,7 @@ | ||||
|       <template #status_default="{ row }"> | ||||
|         <DictTag :type="DICT_TYPE.COMMON_STATUS" :value="row.status" /> | ||||
|       </template> | ||||
|       <template #action_default="{ row }"> | ||||
|       <template #actionbtns_default="{ row }"> | ||||
|         <XTextButton | ||||
|           preIcon="ep:edit" | ||||
|           :title="t('action.edit')" | ||||
|   | ||||
| @@ -13,79 +13,52 @@ export const rules = reactive({ | ||||
| }) | ||||
|  | ||||
| // CrudSchema | ||||
| const crudSchemas = reactive<VxeCrudSchema[]>([ | ||||
|   { | ||||
|     title: t('common.index'), | ||||
|     field: 'id', | ||||
|     type: 'seq', | ||||
|     form: { | ||||
|       show: false | ||||
|     }, | ||||
|     detail: { | ||||
|       show: false | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     title: '岗位名称', | ||||
|     field: 'name', | ||||
|     search: { | ||||
|       show: true | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     title: '岗位编码', | ||||
|     field: 'code', | ||||
|     search: { | ||||
|       show: true | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     title: '岗位顺序', | ||||
|     field: 'sort' | ||||
|   }, | ||||
|   { | ||||
|     title: t('common.status'), | ||||
|     field: 'status', | ||||
|     dictType: DICT_TYPE.COMMON_STATUS, | ||||
|     table: { | ||||
|       slots: { | ||||
|         default: 'status_default' | ||||
| const crudSchemas = reactive<VxeCrudSchema>({ | ||||
|   primaryKey: 'id', | ||||
|   primaryType: 'seq', | ||||
|   action: true, | ||||
|   columns: [ | ||||
|     { | ||||
|       title: '岗位名称', | ||||
|       field: 'name', | ||||
|       search: { | ||||
|         show: true | ||||
|       } | ||||
|     }, | ||||
|     search: { | ||||
|       show: true | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     title: '备注', | ||||
|     field: 'remark', | ||||
|     table: { | ||||
|       show: false | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     title: t('common.createTime'), | ||||
|     field: 'createTime', | ||||
|     formatter: 'formatDate', | ||||
|     form: { | ||||
|       show: false | ||||
|     } | ||||
|   }, | ||||
|   { | ||||
|     title: t('table.action'), | ||||
|     field: 'action', | ||||
|     table: { | ||||
|       width: '240px', | ||||
|       slots: { | ||||
|         default: 'action_default' | ||||
|     { | ||||
|       title: '岗位编码', | ||||
|       field: 'code', | ||||
|       search: { | ||||
|         show: true | ||||
|       } | ||||
|     }, | ||||
|     form: { | ||||
|       show: false | ||||
|     { | ||||
|       title: '岗位顺序', | ||||
|       field: 'sort' | ||||
|     }, | ||||
|     detail: { | ||||
|       show: false | ||||
|     { | ||||
|       title: t('common.status'), | ||||
|       field: 'status', | ||||
|       dictType: DICT_TYPE.COMMON_STATUS, | ||||
|       search: { | ||||
|         show: true | ||||
|       } | ||||
|     }, | ||||
|     { | ||||
|       title: '备注', | ||||
|       field: 'remark', | ||||
|       table: { | ||||
|         show: false | ||||
|       } | ||||
|     }, | ||||
|     { | ||||
|       title: t('common.createTime'), | ||||
|       field: 'createTime', | ||||
|       formatter: 'formatDate', | ||||
|       form: { | ||||
|         show: false | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| ]) | ||||
|   ] | ||||
| }) | ||||
| export const { allSchemas } = useVxeCrudSchemas(crudSchemas) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 xingyu4j
					xingyu4j