diff --git a/src/api/airqualitycollection/index.ts b/src/api/airqualitycollection/index.ts index 2935677..f458dcb 100644 --- a/src/api/airqualitycollection/index.ts +++ b/src/api/airqualitycollection/index.ts @@ -1,52 +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 +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 (data:any) => { + return await request.upload({ url: `/system/quality-collection/upload-excel`, data }) + } +} diff --git a/src/components/UploadFile/index.ts b/src/components/UploadFile/index.ts index cbc96a5..1a4e10d 100644 --- a/src/components/UploadFile/index.ts +++ b/src/components/UploadFile/index.ts @@ -1,6 +1,8 @@ import UploadImg from './src/UploadImg.vue' import UploadImgs from './src/UploadImgs.vue' import UploadFile from './src/UploadFile.vue' -export { UploadImg, UploadImgs, UploadFile} +import UploadExcel from './src/UploadExcel.vue' + +export { UploadImg, UploadImgs, UploadFile, UploadExcel} diff --git a/src/views/airqualitycollection/index.vue b/src/views/airqualitycollection/index.vue index 4b5e15b..b690e4e 100644 --- a/src/views/airqualitycollection/index.vue +++ b/src/views/airqualitycollection/index.vue @@ -40,26 +40,17 @@ class="!w-220px" /> - + 搜索 重置 - - 新增 - - - 导出 - + @@ -137,6 +128,7 @@ import download from '@/utils/download' import { QualityCollectionApi, QualityCollectionVO } from '@/api/airqualitycollection' import QualityCollectionForm from './QualityCollectionForm.vue' const activeName = ref(1) +import { UploadExcel } from '@/components/UploadFile' /** 空气质量采集 列表 */ @@ -169,6 +161,8 @@ const queryParams = reactive({ const queryFormRef = ref() // 搜索的表单 const exportLoading = ref(false) // 导出的加载中 +const fileUrls = ref() + /** 查询列表 */ const getList = async () => { loading.value = true