From 031c258c85171d596ba157473b6ca6e090fa84c8 Mon Sep 17 00:00:00 2001 From: dongyukun <1208714201@qq.com> Date: 星期一, 28 十月 2024 17:27:38 +0800 Subject: [PATCH] 测点导入导出 --- src/views/data/point/index.vue | 61 ++++++++++++++++++++++++++++-- 1 files changed, 56 insertions(+), 5 deletions(-) diff --git a/src/views/data/point/index.vue b/src/views/data/point/index.vue index a7e20cf..dcc989c 100644 --- a/src/views/data/point/index.vue +++ b/src/views/data/point/index.vue @@ -53,6 +53,23 @@ <Icon icon="ep:plus" class="mr-5px" /> 新增 </el-button> + <el-button + type="warning" + plain + @click="handleImport" + v-hasPermi="['data:point:import']" + > + <Icon icon="ep:upload" /> 导入 + </el-button> + <el-button + type="success" + plain + @click="handleExport" + :loading="exportLoading" + v-hasPermi="['data:point:export']" + > + <Icon icon="ep:download" />导出 + </el-button> </el-form-item> </el-form> </ContentWrap> @@ -60,7 +77,7 @@ <!-- 列表 --> <ContentWrap> <el-table border stripe v-loading="loading" :data="list"> - <el-table-column fixed label="测点编码" header-align="center" align="left" min-width="110" prop="pointNo" /> + <el-table-column fixed label="测点编码" header-align="center" align="left" min-width="100" prop="pointNo" /> <el-table-column label="测点名称" header-align="center" align="left" min-width="200" prop="pointName" /> <el-table-column label="测点类型" align="center" prop="pointType" width="100"> <template #default="scope"> @@ -91,7 +108,7 @@ </template> </el-table-column> - <el-table-column label="操作" align="center" min-width="110" fixed="right" width="120"> + <el-table-column label="操作" align="center" min-width="130" fixed="right" width="120"> <template #default="scope"> <el-button link @@ -101,6 +118,7 @@ > 编辑 </el-button> + <el-button link type="primary" @click="chartHandle(scope.row)">数据查看</el-button> <el-button link type="danger" @@ -124,11 +142,19 @@ <!-- 表单弹窗:添加/修改 --> <DaPointForm ref="formRef" @success="getList" /> + <DaPointChart ref="chartView" /> + + <!-- 用户导入对话框 --> + <PointImportForm ref="importFormRef" @success="getList" /> </template> <script lang="ts" setup> -import DaPointForm from './DaPointForm.vue' import * as DaPoint from '@/api/data/da/point' -import {DICT_TYPE} from "@/utils/dict"; +import {ref} from "vue"; +import download from "@/utils/download"; +import {DICT_TYPE, getDictOptions} from "@/utils/dict"; +import DaPointForm from './DaPointForm.vue' +import DaPointChart from './DaPointChart.vue' +import * as UserApi from "@/api/system/user"; defineOptions({name: 'DataPoint'}) @@ -146,7 +172,6 @@ tagNo: undefined, }) const queryFormRef = ref() // 搜索的表单 - const exportLoading = ref(false) // 导出的加载中 /** 查询列表 */ const getList = async () => { @@ -164,6 +189,12 @@ const handleQuery = () => { queryParams.pageNo = 1 getList() + } + + /** 查看数据操作 */ + const chartView = ref() + const chartHandle = (raw: object) => { + chartView.value.open(raw) } /** 重置按钮操作 */ @@ -191,7 +222,27 @@ } catch { } } + /** 测点导入 */ + const importFormRef = ref() + const handleImport = () => { + importFormRef.value.open() + } + /** 导出按钮操作 */ + const exportLoading = ref(false) + const handleExport = async () => { + try { + // 导出的二次确认 + await message.exportConfirm() + // 发起导出 + exportLoading.value = true + const data = await DaPoint.exportDaPoint(queryParams) + download.excel(data, '测点列表.xls') + } catch { + } finally { + exportLoading.value = false + } + } /** 初始化 **/ onMounted(async () => { await getList() -- Gitblit v1.9.3