|
|
|
@ -1,8 +1,7 @@
|
|
|
|
|
<template> |
|
|
|
|
|
|
|
|
|
<!-- 列表 --> |
|
|
|
|
<ContentWrap> |
|
|
|
|
<div class="tabs"> |
|
|
|
|
<section class="flex flex-col gap-20px"> |
|
|
|
|
<el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick"> |
|
|
|
|
<el-tab-pane |
|
|
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.AIR_COLLECTION_TYPE)" |
|
|
|
@ -10,7 +9,6 @@
|
|
|
|
|
:label="dict.label" |
|
|
|
|
:name="dict.value" |
|
|
|
|
> |
|
|
|
|
|
|
|
|
|
<el-form |
|
|
|
|
:model="queryParams" |
|
|
|
|
ref="queryFormRef" |
|
|
|
@ -41,15 +39,18 @@
|
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button> |
|
|
|
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button> |
|
|
|
|
<el-button @click="handleQuery" |
|
|
|
|
><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button |
|
|
|
|
> |
|
|
|
|
<el-button @click="resetQuery" |
|
|
|
|
><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button |
|
|
|
|
> |
|
|
|
|
<UploadExcel |
|
|
|
|
v-model="fileUrls" |
|
|
|
|
:file-type="['xlsx', 'xls']" |
|
|
|
|
:file-size="1" |
|
|
|
|
class="mr-5px" |
|
|
|
|
:type="activeName" |
|
|
|
|
|
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
@ -84,37 +85,21 @@
|
|
|
|
|
<el-table-column label="NOx(Hg/m3)" align="center" prop="nOx" /> |
|
|
|
|
<el-table-column label="CO(mg/m3)" align="center" prop="co" /> |
|
|
|
|
<el-table-column label="Oз(ug/m3)" align="center" prop="o3" /> |
|
|
|
|
<!-- <el-table-column label="操作" align="center" min-width="120px"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<el-button |
|
|
|
|
link |
|
|
|
|
type="primary" |
|
|
|
|
@click="openForm('update', scope.row.id)" |
|
|
|
|
v-hasPermi="['system:quality-collection:update']" |
|
|
|
|
> |
|
|
|
|
编辑 |
|
|
|
|
</el-button> |
|
|
|
|
<el-button |
|
|
|
|
link |
|
|
|
|
type="danger" |
|
|
|
|
@click="handleDelete(scope.row.id)" |
|
|
|
|
v-hasPermi="['system:quality-collection:delete']" |
|
|
|
|
> |
|
|
|
|
删除 |
|
|
|
|
</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> --> |
|
|
|
|
|
|
|
|
|
</el-table> |
|
|
|
|
<!-- 分页 --> |
|
|
|
|
<Pagination |
|
|
|
|
<el-pagination |
|
|
|
|
:total="total" |
|
|
|
|
v-model:page="queryParams.pageNo" |
|
|
|
|
v-model:limit="queryParams.pageSize" |
|
|
|
|
@pagination="getList" |
|
|
|
|
:show-page-size="false" |
|
|
|
|
layout="total, prev, pager, next" |
|
|
|
|
v-model:current-page="queryParams.pageNo" |
|
|
|
|
v-model:page-size="queryParams.pageSize" |
|
|
|
|
@change="getList" |
|
|
|
|
class="ml-auto" |
|
|
|
|
/> |
|
|
|
|
</el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
</div> |
|
|
|
|
</section> |
|
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 --> |
|
|
|
@ -130,7 +115,6 @@ import QualityCollectionForm from './QualityCollectionForm.vue'
|
|
|
|
|
const activeName = ref(1) |
|
|
|
|
import { UploadExcel } from '@/components/UploadFile' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 空气质量采集 列表 */ |
|
|
|
|
defineOptions({ name: 'QualityCollection' }) |
|
|
|
|
|
|
|
|
@ -156,7 +140,7 @@ const queryParams = reactive({
|
|
|
|
|
o3: undefined, |
|
|
|
|
remark: undefined, |
|
|
|
|
remark2: undefined, |
|
|
|
|
createTime: [], |
|
|
|
|
createTime: [] |
|
|
|
|
}) |
|
|
|
|
const queryFormRef = ref() // 搜索的表单 |
|
|
|
|
const exportLoading = ref(false) // 导出的加载中 |
|
|
|
@ -237,17 +221,12 @@ onMounted(() => {
|
|
|
|
|
|
|
|
|
|
::v-deep(.el-form-item__label) { |
|
|
|
|
display: inline-flex; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.demo-tabs > .el-tabs__content { |
|
|
|
|
color: #6b778c; |
|
|
|
|
font-size: 32px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</style> |