diff --git a/src/api/airqualitycollection/index.ts b/src/api/airqualitycollection/index.ts new file mode 100644 index 0000000..2935677 --- /dev/null +++ b/src/api/airqualitycollection/index.ts @@ -0,0 +1,52 @@ +import request from '@/config/axios' + +// 空气质量采集 VO +export interface QualityCollectionVO { + id: number // 主键 + siteName: string // 站点名称 + city: string // 城市 + type: number // 数据类型 + pm25: number // PM2.s(ugim3) + pm10: number // PMo(ug/m3 + so2: number // sOz(ug/m3) + no2: number // NOz(ug/m3) + no: number // NO(Hg/m3) + nOx: number // NOx(Hg/m3) + co: number // CO(mg/m3) + o3: number // 0з(ug/m3) + remark: string // 备用1 + remark2: string // 备用2 +} + +// 空气质量采集 API +export const QualityCollectionApi = { + // 查询空气质量采集分页 + getQualityCollectionPage: async (params: any) => { + return await request.get({ url: `/system/quality-collection/page`, params }) + }, + + // 查询空气质量采集详情 + getQualityCollection: async (id: number) => { + return await request.get({ url: `/system/quality-collection/get?id=` + id }) + }, + + // 新增空气质量采集 + createQualityCollection: async (data: QualityCollectionVO) => { + return await request.post({ url: `/system/quality-collection/create`, data }) + }, + + // 修改空气质量采集 + updateQualityCollection: async (data: QualityCollectionVO) => { + return await request.put({ url: `/system/quality-collection/update`, data }) + }, + + // 删除空气质量采集 + deleteQualityCollection: async (id: number) => { + return await request.delete({ url: `/system/quality-collection/delete?id=` + id }) + }, + + // 导出空气质量采集 Excel + exportQualityCollection: async (params) => { + return await request.download({ url: `/system/quality-collection/export-excel`, params }) + }, +} \ No newline at end of file diff --git a/src/api/enterprises/index.ts b/src/api/enterprises/index.ts index 4ddd013..604e631 100644 --- a/src/api/enterprises/index.ts +++ b/src/api/enterprises/index.ts @@ -17,7 +17,8 @@ export interface EnterprisesVO { establishmentDate: Date // 企业成立时间 gpsLocation: string // 企业经纬度 signRadius:string//签到半径 - managerDeptId: number // 管理部门 + managerDeptId: number, // 管理部门 + tagList: any } // 企业 API diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index fa7d4fb..9e9a8b4 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -16,6 +16,7 @@ export interface UserVO { remark: string loginDate: Date createTime: Date + area: string } diff --git a/src/views/airqualitycollection/QualityCollectionForm.vue b/src/views/airqualitycollection/QualityCollectionForm.vue new file mode 100644 index 0000000..b53ac2a --- /dev/null +++ b/src/views/airqualitycollection/QualityCollectionForm.vue @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 确 定 + 取 消 + + + + \ No newline at end of file diff --git a/src/views/airqualitycollection/index.vue b/src/views/airqualitycollection/index.vue new file mode 100644 index 0000000..d09af9d --- /dev/null +++ b/src/views/airqualitycollection/index.vue @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + 新增 + + + 导出 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/enterpriseinspections/index.vue b/src/views/enterpriseinspections/index.vue index 0204ffb..fde4a14 100644 --- a/src/views/enterpriseinspections/index.vue +++ b/src/views/enterpriseinspections/index.vue @@ -1,5 +1,5 @@ - + @@ -42,7 +42,7 @@ /> - + - + - + 搜索 重置 - + @@ -309,3 +309,21 @@ onMounted(() => { getList() }) + diff --git a/src/views/enterprises/update.vue b/src/views/enterprises/update.vue index 5a07097..a13c6bc 100644 --- a/src/views/enterprises/update.vue +++ b/src/views/enterprises/update.vue @@ -188,7 +188,7 @@ - + diff --git a/src/views/qualification/index.vue b/src/views/qualification/index.vue index 94e602f..cf5702b 100644 --- a/src/views/qualification/index.vue +++ b/src/views/qualification/index.vue @@ -7,17 +7,32 @@ ref="queryFormRef" :inline="true" label-width="98px" + size="large" > - - + + + + + + - - - - - - - 搜索 重置 @@ -125,7 +119,7 @@ import { dateFormatter,dateFormatter2 } from '@/utils/formatTime' import download from '@/utils/download' import { EnterpriseQualificationApi, EnterpriseQualificationVO } from '@/api/qualification' import EnterpriseQualificationForm from './EnterpriseQualificationForm.vue' -import {DICT_TYPE} from "@/utils/dict"; +import {DICT_TYPE, getStrDictOptions} from "@/utils/dict"; /** 企业资质 列表 */ defineOptions({ name: 'EnterpriseQualification' }) @@ -141,6 +135,7 @@ const queryParams = reactive({ pageSize: 10, enterpriseId: undefined, qualificationName: undefined, + enterpriseName: undefined, expiryDate: [], qualificationDescription: undefined, createTime: [], diff --git a/src/views/system/user/UserForm.vue b/src/views/system/user/UserForm.vue index 5c4195a..8f609aa 100644 --- a/src/views/system/user/UserForm.vue +++ b/src/views/system/user/UserForm.vue @@ -26,6 +26,18 @@ node-key="id" placeholder="请选择归属部门" /> + + + + + + + @@ -129,7 +141,8 @@ const formData = ref({ postIds: [], remark: '', status: CommonStatusEnum.ENABLE, - roleIds: [] + roleIds: [], + area: undefined }) const formRules = reactive({ username: [{ required: true, message: '用户名称不能为空', trigger: 'blur' }], @@ -185,8 +198,10 @@ const submitForm = async () => { if (!valid) return // 提交请求 formLoading.value = true + try { const data = formData.value as unknown as UserApi.UserVO + if (formType.value === 'create') { await UserApi.createUser(data) message.success(t('common.createSuccess')) diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 1f8e5cc..fc490e4 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -18,7 +18,7 @@ > + + + 基本信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 执法范围 + + + + + + + + + + + + + + + + + + + + + + 查询 + + + 重置 + + + + + + + + + + + 筛选企业 + + + + + + + + + + + + + + {{ + getStrDictOptions(DICT_TYPE.ENTERPRISES_AREA).find( + (dict) => dict.value == scope.row.region + )?.label || '未知区域' + }} + + + + + {{ + scope.row.tagListName && + scope.row.tagListName + .filter((item) => item.value == 1) + .map((item) => item.label) + .join(', ') + }} + + + + + {{ + scope.row.tagListName && + scope.row.tagListName + .filter((item) => item.value == 2) + .map((item) => item.label) + .join(', ') + }} + + + + + {{ + scope.row.tagListName && + scope.row.tagListName + .filter((item) => item.value == 4) + .map((item) => item.label) + .join(', ') + }} + + + + + + + 删除 + + + + + + 已选择 {{ selectedEnterprises.length }} / {{ enterprise.total }} + + 删除所选 + + + + + + + + + + + + + + + diff --git a/src/views/task/createEnterprise2.vue b/src/views/task/createEnterprise2.vue new file mode 100644 index 0000000..d1e5f5e --- /dev/null +++ b/src/views/task/createEnterprise2.vue @@ -0,0 +1,397 @@ + + + + + 筛选企业 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 搜索 + + + 重置 + + + + + + + + + + + + + + {{ + getStrDictOptions(DICT_TYPE.ENTERPRISES_AREA).find( + (dict) => dict.value == scope.row.region + )?.label || '未知区域' + }} + + + + + {{ + scope.row.tagListName && + scope.row.tagListName + .filter((item) => item.value == 1) + .map((item) => item.label) + .join(', ') + }} + + + + + {{ + scope.row.tagListName && + scope.row.tagListName + .filter((item) => item.value == 2) + .map((item) => item.label) + .join(', ') + }} + + + + + {{ + scope.row.tagListName && + scope.row.tagListName + .filter((item) => item.value == 4) + .map((item) => item.label) + .join(', ') + }} + + + + + + + + 已选择 {{ selectedEnterprises.length }} / {{ enterprise.total }} + + + + + + + + + + diff --git a/src/views/task/index.vue b/src/views/task/index.vue index c73361e..6621305 100644 --- a/src/views/task/index.vue +++ b/src/views/task/index.vue @@ -1,27 +1,23 @@ - + - - - - - - - - + + + + @@ -113,7 +108,7 @@ --> - + { loading.value = true @@ -276,6 +275,15 @@ const getList = async () => { const data = await TaskInfoApi.getTaskInfoPage(queryParams) list.value = data.list total.value = data.total + + //任务标签 + const params = { + tagType: 2 + } + + const tag = await TagLibraryApi.getTagLibraryPage(params) + taskTypeList.value = tag[0].children + } finally { loading.value = false } @@ -350,3 +358,15 @@ onMounted(() => { getList() }) +