添加辽宁周期检测功能

This commit is contained in:
2026-07-09 11:41:01 +08:00
parent 1a69be62a0
commit 6a84d28101
3 changed files with 23 additions and 33 deletions

View File

@@ -37,21 +37,21 @@ const setupAll = async () => {
const app = createApp(App)
//开启离线地图
// app.use(BaiduMapOffline, {
// offline: true,
// offlineConfig: {
// imgext: '.png',
// customstyle: '',
// tiles_dir: '',
// tiles_hybrid: '',
// tiles_self: '',
// tiles_v_dir: '',
// tiles_satellite_dir: '',
// tiles_road_dir: '',
// tiles_v_road_dir: '',
// home: './plugin/offline/'
// }
// })
app.use(BaiduMapOffline, {
offline: true,
offlineConfig: {
imgext: '.png',
customstyle: '',
tiles_dir: '',
tiles_hybrid: '',
tiles_self: '',
tiles_v_dir: '',
tiles_satellite_dir: '',
tiles_road_dir: '',
tiles_v_road_dir: '',
home: './plugin/offline/'
}
})
app.use(BaiduMap, {
// ak: 'Yp57V71dkOPiXjiN8VdcFRsVELzlVNKK',
ak: 'RpQi6WNFZ9tseKzhdwOQsXwFsoVntnsN',

View File

@@ -1,6 +1,6 @@
<template>
<div class="default-main">
<TableHeader ref="TableHeaderRef">
<TableHeader ref="TableHeaderRef" showExport>
<template #select>
<el-form-item label="地市">
<el-select v-model="tableStore.table.params.city" clearable placeholder="请选择地市">
@@ -12,21 +12,11 @@
></el-option>
</el-select>
</el-form-item>
<el-form-item label="变电站">
<el-form-item label="监测对象">
<el-input
style="width: 200px"
placeholder="请输入变电站"
v-model="tableStore.table.params.substation"
clearable
maxlength="32"
show-word-limit
></el-input>
</el-form-item>
<el-form-item label="终端名称">
<el-input
style="width: 200px"
placeholder="请输入终端名称"
v-model="tableStore.table.params.terminalName"
placeholder="请输入监测对象名称"
v-model="tableStore.table.params.searchValue"
clearable
maxlength="32"
show-word-limit

View File

@@ -91,7 +91,7 @@ const tableStore = new TableStore({
},
{ field: 'city', title: '所在地市', minWidth: 100 },
/* { field: 'substation', title: '厂站名称', minWidth: 100 },*/
{ field: 'projectName', title: '项目名称', minWidth: 150 },
{ field: 'projectName', title: '监测对象名称', minWidth: 150 },
{
field: 'userType',
title: '用户性质',
@@ -104,7 +104,7 @@ const tableStore = new TableStore({
// { field: 'responsibleDepartment', title: '归口管理部门', minWidth: 130 },
{ field: 'ratePower', title: '装机容量(MW)', minWidth: 80 },
{ field: 'stationId', title: '所属电站', minWidth: 150 },
{ field: 'stationId', title: '并网电站', minWidth: 150 },
{
field: 'checkUrl',
title: '电能质量设备检测报告',
@@ -244,7 +244,7 @@ const addFormModel = () => {
setTimeout(() => {
addForms.value.open({
title: '用户档案录入'
title: '新能源场站档案录入'
})
})
}