diff --git a/apps/web-antd/src/api/system/notice/index.ts b/apps/web-antd/src/api/system/notice/index.ts new file mode 100644 index 00000000..b368ee69 --- /dev/null +++ b/apps/web-antd/src/api/system/notice/index.ts @@ -0,0 +1,47 @@ +import { requestClient } from '#/api/request'; + +export interface NoticeVO { + id: number; + title: string; + type: number; + content: string; + status: number; + remark: string; + creator: string; + createTime: Date; +} + +// 查询岗位列表 +export function getNoticePage(params: any) { + return requestClient.get('/system/notice/page', { params }); +} + +// 获取岗位精简信息列表 +export function getSimpleNoticeList() { + return requestClient.get('/system/notice/simple-list'); +} + +// 查询岗位详情 +export function getNotice(id: number) { + return requestClient.get(`/system/notice/get?id=${id}`); +} + +// 新增岗位 +export function createNotice(data: NoticeVO) { + return requestClient.post('/system/notice/create', data); +} + +// 修改岗位 +export function updateNotice(data: NoticeVO) { + return requestClient.put('/system/notice/update', data); +} + +// 删除岗位 +export function deleteNotice(id: number) { + return requestClient.delete(`/system/notice/delete?id=${id}`); +} + +// 导出岗位 +export function exportNotice(params: any) { + return requestClient.download('/system/notice/export', params); +} diff --git a/apps/web-antd/src/views/system/notice/index.vue b/apps/web-antd/src/views/system/notice/index.vue new file mode 100644 index 00000000..989b4486 --- /dev/null +++ b/apps/web-antd/src/views/system/notice/index.vue @@ -0,0 +1,128 @@ + + + diff --git a/apps/web-antd/src/views/system/notice/notice-form.vue b/apps/web-antd/src/views/system/notice/notice-form.vue new file mode 100644 index 00000000..4d526488 --- /dev/null +++ b/apps/web-antd/src/views/system/notice/notice-form.vue @@ -0,0 +1,66 @@ + + diff --git a/apps/web-antd/src/views/system/notice/notice.data.ts b/apps/web-antd/src/views/system/notice/notice.data.ts new file mode 100644 index 00000000..05e94fef --- /dev/null +++ b/apps/web-antd/src/views/system/notice/notice.data.ts @@ -0,0 +1,95 @@ +import type { VxeGridProps } from '#/adapter/vxe-table'; + +import { $t } from '@vben/locales'; + +import { type VbenFormSchema } from '#/adapter/form'; +import { DICT_TYPE, getDictOptions } from '#/utils/dict'; + +export const formSchema: VbenFormSchema[] = [ + { + component: 'Input', + fieldName: 'name', + label: '岗位名称', + }, + { + component: 'Input', + fieldName: 'code', + label: '岗位编码', + }, + { + component: 'Select', + componentProps: { + allowClear: true, + options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'), + placeholder: '请选择', + }, + fieldName: 'status', + label: '状态', + }, +]; + +export const columns: VxeGridProps['columns'] = [ + { title: '序号', type: 'seq', width: 50 }, + { field: 'id', title: '岗位编号' }, + { field: 'name', title: '岗位名称' }, + { field: 'code', title: '岗位编码' }, + { field: 'sort', title: '岗位顺序' }, + { field: 'remark', title: '岗位备注' }, + { + field: 'status', + title: '状态', + cellRender: { name: 'CellDict', props: { type: DICT_TYPE.COMMON_STATUS } }, + }, + { field: 'createTime', formatter: 'formatDateTime', title: '创建时间' }, + { + field: 'action', + fixed: 'right', + slots: { default: 'action' }, + title: $t('page.action.action'), + width: 160, + }, +]; + +export const modalSchema: VbenFormSchema[] = [ + { + component: 'Input', + fieldName: 'id', + label: 'id', + dependencies: { + triggerFields: [''], + show: () => false, + }, + }, + { + component: 'Input', + fieldName: 'name', + label: '岗位标题', + rules: 'required', + }, + { + component: 'Input', + fieldName: 'code', + label: '岗位编码', + rules: 'required', + }, + { + component: 'Input', + fieldName: 'sort', + label: '岗位顺序', + rules: 'required', + }, + { + component: 'Select', + componentProps: { + options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'), + }, + fieldName: 'status', + label: '状态', + rules: 'required', + }, + { + component: 'Textarea', + fieldName: 'remark', + label: '备注', + }, +];