diff --git a/src/api/system/jobinfo/index.ts b/src/api/system/jobinfo/index.ts index 4bbb26f..bf27728 100644 --- a/src/api/system/jobinfo/index.ts +++ b/src/api/system/jobinfo/index.ts @@ -37,7 +37,7 @@ export const JobInfoApi = { }, // 删除工作汇报 - deleteJobInfo: async (id: number) => { + deleteJobInfo: async (id) => { return await request.delete({ url: `/system/job-info/delete?id=` + id }) }, diff --git a/src/utils/formatTime.ts b/src/utils/formatTime.ts index 234b3d3..66decf6 100644 --- a/src/utils/formatTime.ts +++ b/src/utils/formatTime.ts @@ -199,7 +199,7 @@ export function formatPast2(ms: number): string { * @param cellValue 字段值 */ export function dateFormatter(_row: any, _column: TableColumnCtx, cellValue: any): string { - return cellValue ? formatDate(cellValue, 'YYYY年MM月DD日 A') : '' + return cellValue ? formatDate(cellValue, 'YYYY年MM月DD日 AHH时mm分') : '' } /** diff --git a/src/views/system/jobinfo/JobInfoForm.vue b/src/views/system/jobinfo/JobInfoForm.vue index c471f03..5b9fefd 100644 --- a/src/views/system/jobinfo/JobInfoForm.vue +++ b/src/views/system/jobinfo/JobInfoForm.vue @@ -1,36 +1,45 @@ @@ -45,23 +54,51 @@ const message = useMessage() // 消息弹窗 const dialogVisible = ref(false) // 弹窗的是否展示 const dialogTitle = ref('') // 弹窗的标题 -const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 +const formLoading = ref(false) // 表单加载中:1)修改时的数据加载;2)提交的按钮禁用 const formType = ref('') // 表单的类型:create - 新增;update - 修改 const formData = ref({ id: undefined, title: undefined, content: undefined, jobDate: undefined, - jobName: undefined, + jobName: undefined }) const formRules = reactive({ + title: [ + { + required: true, + message: '请输入汇报标题', + trigger: 'blur' + } + ], + jobDate: [ + { + required: true, + message: '请选择汇报日期', + trigger: 'blur' + } + ], + jobName: [ + { + required: true, + message: '请输入汇报人姓名', + trigger: 'blur' + } + ], + content: [ + { + required: true, + message: '请输入汇报内容', + trigger: 'blur' + } + ] }) const formRef = ref() // 表单 Ref /** 打开弹窗 */ const open = async (type: string, id?: number) => { dialogVisible.value = true - dialogTitle.value = t('action.' + type) + dialogTitle.value = type == 'create' ? '新增工作汇报' : '修改工作汇报' formType.value = type resetForm() // 修改时,设置数据 @@ -107,8 +144,24 @@ const resetForm = () => { title: undefined, content: undefined, jobDate: undefined, - jobName: undefined, + jobName: undefined } formRef.value?.resetFields() } - \ No newline at end of file + +const deleteReport = () => { + JobInfoApi.deleteJobInfo(formData.value.id).then(() => { + message.success(t('common.delSuccess')) + dialogVisible.value = false + emit('success') + }) +} + + + diff --git a/src/views/system/jobinfo/index.vue b/src/views/system/jobinfo/index.vue index 6aef2a4..791d8f6 100644 --- a/src/views/system/jobinfo/index.vue +++ b/src/views/system/jobinfo/index.vue @@ -1,110 +1,85 @@ \ No newline at end of file +