diff --git a/index.html b/index.html index db9b15e..1445385 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@ justify-content: center; align-items: center; flex-direction: column; - background: #f0f2f5; + background: #17C653; } .app-loading .app-loading-wrap { @@ -40,7 +40,7 @@ } .app-loading .app-loading-logo { - width: 100px; + width: 400px; margin: 0 auto 15px auto; } @@ -57,7 +57,7 @@ position: absolute; width: 100%; height: 100%; - border: 4px solid #2d8cf0; + border: 4px solid #ffffff; border-bottom: 0; border-left-color: transparent; border-radius: 50%; @@ -70,7 +70,7 @@ left: calc(50% - 20px); width: 40px; height: 40px; - border: 4px solid #87bdff; + border: 4px solid #ffffff; border-right: 0; border-top-color: transparent; border-radius: 50%; @@ -128,8 +128,8 @@
- -
%VITE_APP_TITLE%
+ +
@@ -140,7 +140,7 @@
- + diff --git a/public/loading_logo.png b/public/loading_logo.png new file mode 100644 index 0000000..d687852 Binary files /dev/null and b/public/loading_logo.png differ diff --git a/src/api/system/policy/index.ts b/src/api/system/policy/index.ts index b27657b..2c36fe5 100644 --- a/src/api/system/policy/index.ts +++ b/src/api/system/policy/index.ts @@ -1,41 +1,42 @@ -import request from '@/config/axios' - -// 政策法规 VO -export interface PolicyVO { - id: number // id - name: string // 名称 - context: string // 内容 -} - -// 政策法规 API -export const PolicyApi = { - // 查询政策法规分页 - getPolicyPage: async (params: any) => { - return await request.get({ url: `/system/policy/page`, params }) - }, - - // 查询政策法规详情 - getPolicy: async (id: number) => { - return await request.get({ url: `/system/policy/get?id=` + id }) - }, - - // 新增政策法规 - createPolicy: async (data: PolicyVO) => { - return await request.post({ url: `/system/policy/create`, data }) - }, - - // 修改政策法规 - updatePolicy: async (data: PolicyVO) => { - return await request.put({ url: `/system/policy/update`, data }) - }, - - // 删除政策法规 - deletePolicy: async (id: number) => { - return await request.delete({ url: `/system/policy/delete?id=` + id }) - }, - - // 导出政策法规 Excel - exportPolicy: async (params) => { - return await request.download({ url: `/system/policy/export-excel`, params }) - }, -} \ No newline at end of file +import request from '@/config/axios' + +// 政策法规 VO +export interface PolicyVO { + id: number // id + name: string // 名称 + context: string // 内容 + effectiveDate: Date // 生效日期 +} + +// 政策法规 API +export const PolicyApi = { + // 查询政策法规分页 + getPolicyPage: async (params: any) => { + return await request.get({ url: `/system/policy/page`, params }) + }, + + // 查询政策法规详情 + getPolicy: async (id: number) => { + return await request.get({ url: `/system/policy/get?id=` + id }) + }, + + // 新增政策法规 + createPolicy: async (data: PolicyVO) => { + return await request.post({ url: `/system/policy/create`, data }) + }, + + // 修改政策法规 + updatePolicy: async (data: PolicyVO) => { + return await request.put({ url: `/system/policy/update`, data }) + }, + + // 删除政策法规 + deletePolicy: async (id: number) => { + return await request.delete({ url: `/system/policy/delete?id=` + id }) + }, + + // 导出政策法规 Excel + exportPolicy: async (params) => { + return await request.download({ url: `/system/policy/export-excel`, params }) + }, +} diff --git a/src/views/system/policy/PolicyForm.vue b/src/views/system/policy/PolicyForm.vue index 630eccb..5c4232d 100644 --- a/src/views/system/policy/PolicyForm.vue +++ b/src/views/system/policy/PolicyForm.vue @@ -10,6 +10,14 @@ + + + @@ -37,8 +45,12 @@ const formData = ref({ id: undefined, name: undefined, context: undefined, + effectiveDate: Date() }) const formRules = reactive({ + name: [{ required: true, message: '名称不能为空', trigger: 'blur' }], + context: [{ required: true, message: '内容不能为空', trigger: 'blur' }], + effectiveDate: [{ required: true, message: '生效日期不能为空', trigger: 'blur' }] }) const formRef = ref() // 表单 Ref @@ -90,6 +102,7 @@ const resetForm = () => { id: undefined, name: undefined, context: undefined, + effectiveDate: Date() } formRef.value?.resetFields() } diff --git a/src/views/system/policy/index.vue b/src/views/system/policy/index.vue index ea839d4..bd17963 100644 --- a/src/views/system/policy/index.vue +++ b/src/views/system/policy/index.vue @@ -57,6 +57,8 @@ + +