diff --git a/src/api/enterprises/index.ts b/src/api/enterprises/index.ts index 2b9f5c5..bf32a56 100644 --- a/src/api/enterprises/index.ts +++ b/src/api/enterprises/index.ts @@ -37,12 +37,12 @@ export const EnterprisesApi = { return await request.post({ url: `/system/enterprise/create`, data }) }, // PC新增企业 - pccreateEnterprises: async (data: EnterprisesVO) => { + pccreateEnterprises: async (data: any) => { return await request.post({ url: `/system/enterprise/pccreate`, data }) }, // 修改企业 - updateEnterprises: async (data: EnterprisesVO) => { + updateEnterprises: async (data: any) => { return await request.put({ url: `/system/enterprise/update`, data }) }, @@ -55,4 +55,10 @@ export const EnterprisesApi = { exportEnterprises: async (params) => { return await request.download({ url: `/system/enterprise/export-excel`, params }) }, + + // 标签查询 + tagList: async (params) => { + return await request.get({ url: `"/system/system/tag-library/list`, params }) + }, + } diff --git a/src/api/system/policy/index.ts b/src/api/system/policy/index.ts new file mode 100644 index 0000000..b27657b --- /dev/null +++ b/src/api/system/policy/index.ts @@ -0,0 +1,41 @@ +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 diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index 365db18..425afe2 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -94,6 +94,11 @@ export const getSimpleUserZGList = (): Promise => { return request.get({ url: '/system/user/simple-zg-list' }) } +// 通过用户类型获取用户列表 +export const getSimpleUserListByUserType = (params:number) => { + return request.get({ url: '/system/user/simple-user-by-userType?type='+ params }) +} + /** * 查询审核列表 */ diff --git a/src/components/Editor/src/Editor.vue b/src/components/Editor/src/Editor.vue index 38c34e2..3a88a3f 100644 --- a/src/components/Editor/src/Editor.vue +++ b/src/components/Editor/src/Editor.vue @@ -27,7 +27,8 @@ const props = defineProps({ default: () => undefined }, readonly: propTypes.bool.def(false), - modelValue: propTypes.string.def('') + modelValue: propTypes.string.def(''), + showToolbar: propTypes.bool.def(true) }) const emit = defineEmits(['change', 'update:modelValue']) @@ -66,6 +67,7 @@ const editorConfig = computed((): IEditorConfig => { { placeholder: '请输入内容...', readOnly: props.readonly, + customAlert: (s: string, t: string) => { switch (t) { case 'success': @@ -87,7 +89,9 @@ const editorConfig = computed((): IEditorConfig => { }, autoFocus: false, scroll: true, + MENU_CONF: { + ['uploadImage']: { server: getUploadUrl(), // 单个文件的最大体积限制,默认为 2M @@ -133,7 +137,7 @@ const editorConfig = computed((): IEditorConfig => { }, // 自定义插入图片 customInsert(res: any, insertFn: InsertFnType) { - insertFn(res.data, 'image', res.data) + insertFn(res.data.url, 'image', res.data.url) } }, ['uploadVideo']: { @@ -181,7 +185,7 @@ const editorConfig = computed((): IEditorConfig => { }, // 自定义插入图片 customInsert(res: any, insertFn: InsertFnType) { - insertFn(res.data, 'mp4', res.data) + insertFn(res.data.url, 'mp4', res.data.url) } } }, @@ -210,6 +214,10 @@ onBeforeUnmount(() => { editor?.destroy() }) +const getShowToolbar = computed(() => { + return Boolean(props.showToolbar) +}) + const getEditorRef = async (): Promise => { await nextTick() return unref(editorRef.value) as IDomEditor @@ -221,9 +229,10 @@ defineExpose({ diff --git a/src/views/enterprises/update.vue b/src/views/enterprises/update.vue index ddf23a5..ed979bf 100644 --- a/src/views/enterprises/update.vue +++ b/src/views/enterprises/update.vue @@ -12,7 +12,7 @@ - + - + + + + + @@ -60,26 +74,17 @@ - - + + - - - + + + + 确定 - + + + + + + + + + + + +
+ + + + + + + + + + + + + +
+
+ diff --git a/src/views/system/policy/PolicyForm.vue b/src/views/system/policy/PolicyForm.vue new file mode 100644 index 0000000..630eccb --- /dev/null +++ b/src/views/system/policy/PolicyForm.vue @@ -0,0 +1,96 @@ + + \ No newline at end of file diff --git a/src/views/system/policy/index.vue b/src/views/system/policy/index.vue new file mode 100644 index 0000000..ea839d4 --- /dev/null +++ b/src/views/system/policy/index.vue @@ -0,0 +1,200 @@ + + + \ No newline at end of file diff --git a/src/views/system/policy/policyView.vue b/src/views/system/policy/policyView.vue new file mode 100644 index 0000000..047ee92 --- /dev/null +++ b/src/views/system/policy/policyView.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/src/views/system/user/examine.vue b/src/views/system/user/examine.vue index 920266f..be6e089 100644 --- a/src/views/system/user/examine.vue +++ b/src/views/system/user/examine.vue @@ -153,7 +153,7 @@ const queryParams = reactive({ status: undefined, deptId: undefined, audit: [1,3], - userType: "1,2", + userType: "2, 3", createTime: [] }) diff --git a/src/views/system/user/examineform.vue b/src/views/system/user/examineform.vue index 8167aa5..0941505 100644 --- a/src/views/system/user/examineform.vue +++ b/src/views/system/user/examineform.vue @@ -46,11 +46,14 @@ function open(param) { function submit(type) { form.value.audit = type; - UserApi.examineUser(form.value).then((res) => { - proxy.$modal.msgSuccess("审批成功"); + try { + UserApi.examineUser(form.value).then((res) => { emits("success"); - show.value = false; }); + + } finally { + show.value = false + } } defineExpose({ open }); diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 8c38e96..f681db8 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -99,13 +99,7 @@ -
- - -
@@ -125,8 +122,6 @@ /> - - @@ -144,8 +139,6 @@ - - 搜索 @@ -158,7 +151,6 @@ -
-
- 提 交 + 审核通过 + 删除 - - + \ No newline at end of file diff --git a/src/views/task/index.vue b/src/views/task/index.vue index 924e95c..09b109a 100644 --- a/src/views/task/index.vue +++ b/src/views/task/index.vue @@ -187,6 +187,17 @@ > 删除 + + + 审核 + +