diff --git a/frontend-sjgl/public/file/注册操作手册.docx b/frontend-sjgl/public/file/注册操作手册.docx deleted file mode 100644 index 866c3f01..00000000 Binary files a/frontend-sjgl/public/file/注册操作手册.docx and /dev/null differ diff --git a/frontend-sjgl/public/file/过鱼设施数据填报操作手册.docx b/frontend-sjgl/public/file/过鱼设施数据填报操作手册.docx deleted file mode 100644 index f3d2e60d..00000000 Binary files a/frontend-sjgl/public/file/过鱼设施数据填报操作手册.docx and /dev/null differ diff --git a/frontend-sjgl/public/file/鱼种类字典数据.xlsx b/frontend-sjgl/public/file/鱼种类字典数据.xlsx deleted file mode 100644 index 250cae34..00000000 Binary files a/frontend-sjgl/public/file/鱼种类字典数据.xlsx and /dev/null differ diff --git a/frontend-sjgl/src/components/BasicSearch/index.vue b/frontend-sjgl/src/components/BasicSearch/index.vue index a7840b28..1f9a04b1 100644 --- a/frontend-sjgl/src/components/BasicSearch/index.vue +++ b/frontend-sjgl/src/components/BasicSearch/index.vue @@ -405,6 +405,7 @@ const emit = defineEmits<{ (e: 'finish', values: any): void; (e: 'valuesChange', changedValues: any, allValues: any): void; (e: 'reset'): void; + (e: 'initDone', values: any): void; }>(); const formRef = ref(); @@ -427,7 +428,7 @@ const validSearchList = computed(() => { }); // --- 初始化逻辑 --- -const initForm = () => { +const initForm = async () => { const initial = JSON.parse(JSON.stringify(props.initialValues || {})); // 1. 清空 formData @@ -437,7 +438,7 @@ const initForm = () => { Object.assign(formData, initial); // 3. 过滤掉 searchList 中为 false/null/undefined 的项,并生成规则 - validSearchList.value.forEach(item => { + for (const item of validSearchList.value) { if (item.type == 'waterStation') { // 下拉菜单 shuJuTianBaoStore.getBaseOption(); @@ -445,15 +446,23 @@ const initForm = () => { shuJuTianBaoStore.getEngOption(formData.rvcd,'rvcd'); } if (item.type == 'jidiData') { - shuJuTianBaoStore.getBaseOption(); - shuJuTianBaoStore.getEngOption(formData[item.name] || 'all','baseId'); + // 先把默认值摘下并清空显示,等基地数据加载完、判断有无值后再回填,避免 'all' 闪现 + const initialBaseValue = formData[item.name]; + formData[item.name] = null; + await shuJuTianBaoStore.getBaseOption(); + const hasBaseValue = shuJuTianBaoStore.baseOption.length > 0; + if (hasBaseValue) { + // 有值才补默认值并加载电站;无值保持 null + formData[item.name] = initialBaseValue || 'all'; + shuJuTianBaoStore.getEngOption(formData[item.name],'baseId'); + } } if (item.fieldProps?.required) { rules[item.name] = [ { required: true, message: `${item.label}不能为空`, trigger: 'blur' } ]; } - }); + } }; /** @@ -501,8 +510,10 @@ const stcdIdChange = (value: any) => { } }; -onMounted(() => { - initForm(); +onMounted(async () => { + await initForm(); + // 初始化完成(含基地数据加载)后通知外部,供等待时序的页面发起首次查询 + emit('initDone', { ...formData }); }); watch( diff --git a/frontend-sjgl/src/views/conventionalHydropower/BasicData/index.vue b/frontend-sjgl/src/views/conventionalHydropower/BasicData/index.vue index dcea8f0e..81090fc5 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/BasicData/index.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/BasicData/index.vue @@ -176,11 +176,11 @@ const columnMetaMap: Record = { addvcdName: { width: 150, sort: true, ellipsis: true }, stlc: { width: 200, sort: true, ellipsis: true }, baseName: { width: 120, ellipsis: true }, - jcdt: { width: 120, sort: true, ellipsis: true, customRender: dateRender }, + jcdt: { width: 180, sort: true, ellipsis: true, customRender: dateRender }, piodt: { width: 160, sort: true, ellipsis: true, customRender: dateRender }, aiodt: { width: 150, sort: true, ellipsis: true, customRender: dateRender }, bldsttCcodeName: { width: 100, sort: true, ellipsis: true }, - hynm: { width: 150, sort: true, ellipsis: true }, + hynm: { width: 240, sort: true, ellipsis: true }, topHynm: { width: 150, sort: true, ellipsis: true }, nrupar: { width: 180, sort: true }, dstcrvr: { width: 150, sort: true }, @@ -243,7 +243,7 @@ const columnMetaMap: Record = { yrge: { width: 200, sort: true }, ushr: { width: 150, sort: true }, k: { width: 150, sort: true, ellipsis: true }, - dmtp: { width: 100, sort: true, ellipsis: true }, + dmtp: { width: 150, sort: true, ellipsis: true }, dmcrel: { width: 130, sort: true }, mxdmhg: { width: 120, sort: true }, dmlen: { width: 130, sort: true }, diff --git a/frontend-sjgl/src/views/conventionalHydropower/FishResource/EditFishDictoryModal.vue b/frontend-sjgl/src/views/conventionalHydropower/FishResource/EditFishDictoryModal.vue index 4947a052..2897fbf0 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/FishResource/EditFishDictoryModal.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/FishResource/EditFishDictoryModal.vue @@ -103,7 +103,7 @@ style="width: 100%" > - - - - - + + + + + + @@ -350,6 +351,11 @@ import { useDraggable } from '@/utils/drag'; import { useShuJuTianBaoStore } from '@/store/modules/shuJuTianBao'; const shuJuTianBaoStore = useShuJuTianBaoStore(); +// 所属流域选项:过滤掉 "当前全部",避免作为默认值选中 +const fishLyOption = computed(() => + shuJuTianBaoStore.lyOption.filter((opt: any) => opt.rvcd !== 'all') +); + const baseUrl = import.meta.env.VITE_APP_ATTACHMENT_URL; const props = defineProps<{ @@ -438,7 +444,7 @@ const fieldLabelMap: Record = { // select 选项映射 const selectOptionsMap: Record any[]> = { - rvcd: () => shuJuTianBaoStore.lyOption.map((opt: any) => ({ + rvcd: () => fishLyOption.value.map((opt: any) => ({ label: opt.rvnm, value: opt.rvcd })), diff --git a/frontend-sjgl/src/views/conventionalHydropower/aiBox/AiBoxSearch.vue b/frontend-sjgl/src/views/conventionalHydropower/aiBox/AiBoxSearch.vue index fa4dfb88..db441268 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/aiBox/AiBoxSearch.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/aiBox/AiBoxSearch.vue @@ -6,6 +6,7 @@ :zhujianfujian="'fu'" @reset="handleReset" @finish="onSearchFinish" + @init-done="handleInitDone" > diff --git a/frontend-sjgl/src/views/conventionalHydropower/luShengShengTaiDiaoCha/EditTeModal.vue b/frontend-sjgl/src/views/conventionalHydropower/luShengShengTaiDiaoCha/EditTeModal.vue index d6a19741..c1b4dc97 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/luShengShengTaiDiaoCha/EditTeModal.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/luShengShengTaiDiaoCha/EditTeModal.vue @@ -120,17 +120,6 @@ /> - - - - - = { baseId: '水电基地', rstcd: '所属电站', jcdt: '建成日期', - introduce: '简介', remark: '备注', lgtd: '经度(°)', lttd: '纬度(°)' diff --git a/frontend-sjgl/src/views/conventionalHydropower/qiXiDi/EditFhModal.vue b/frontend-sjgl/src/views/conventionalHydropower/qiXiDi/EditFhModal.vue index d41afe50..5c19d974 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/qiXiDi/EditFhModal.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/qiXiDi/EditFhModal.vue @@ -120,6 +120,7 @@ placeholder="请选择保护对象" allow-clear show-search + :max-tag-count="2" :filter-option="filterOption" > ([ { key: 'stcd', title: '栖息地站码', dataIndex: 'stcd', visible: true, width: 320, ellipsis: true }, { key: 'baseName', title: '水电基地', dataIndex: 'baseName', visible: true, width: 120, ellipsis: true }, { key: 'ennm', title: '所属电站', dataIndex: 'ennm', visible: true, width: 150, ellipsis: true }, - { key: 'bhdxName', title: '保护对象', dataIndex: 'bhdxName', visible: true, width: 240, ellipsis: true }, - { key: 'bhhl', title: '保护河流', dataIndex: 'bhhl', visible: true, width: 120, ellipsis: true }, + { key: 'bhdx', title: '保护对象', dataIndex: 'bhdx', visible: true, width: 240, ellipsis: true }, + { key: 'bhhl', title: '保护河流', dataIndex: 'bhhl', visible: true, width: 140, ellipsis: true }, { key: 'bhhd', title: '保护河段', dataIndex: 'bhhd', visible: true, width: 240, ellipsis: true }, - { key: 'bhfw', title: '保护范围', dataIndex: 'bhfw', visible: true, width: 120, ellipsis: true }, + { key: 'bhfw', title: '保护范围', dataIndex: 'bhfw', visible: true, width: 240, ellipsis: true }, { key: 'bhhxcd', title: '保护核心长度(km)', dataIndex: 'bhhxcd', visible: true, width: 140 }, { key: 'bhcs', title: '保护措施', dataIndex: 'bhcs', visible: true, width: 120, ellipsis: true }, diff --git a/frontend-sjgl/src/views/conventionalHydropower/rescueStation/EditVaModal.vue b/frontend-sjgl/src/views/conventionalHydropower/rescueStation/EditVaModal.vue index dc270da7..f6b224d3 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/rescueStation/EditVaModal.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/rescueStation/EditVaModal.vue @@ -130,14 +130,11 @@ - - - - + placeholder="请输入保护原因" + style="width: 100%" + /> @@ -183,17 +180,6 @@ /> - - - - - any[]> = { { label: '启用', value: 1 }, { label: '禁用', value: 0 } ], - bhyy: () => [ - { label: '是', value: 1 }, - { label: '否', value: 0 } - ], baseId: () => baseNameOptions.value, rstcd: () => engInfoOptions.value }; diff --git a/frontend-sjgl/src/views/conventionalHydropower/shuiShengShengTaiDiaoCha/EditWeModal.vue b/frontend-sjgl/src/views/conventionalHydropower/shuiShengShengTaiDiaoCha/EditWeModal.vue index 5a07cd74..c15e1f6c 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/shuiShengShengTaiDiaoCha/EditWeModal.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/shuiShengShengTaiDiaoCha/EditWeModal.vue @@ -120,17 +120,6 @@ /> - - - - - = { baseId: '水电基地', rstcd: '所属电站', jcdt: '建成日期', - introduce: '简介', remark: '备注', lgtd: '经度(°)', lttd: '纬度(°)' diff --git a/frontend-sjgl/src/views/conventionalHydropower/sonarCam/EditSonarModal.vue b/frontend-sjgl/src/views/conventionalHydropower/sonarCam/EditSonarModal.vue index 44b92d78..6f962d73 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/sonarCam/EditSonarModal.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/sonarCam/EditSonarModal.vue @@ -171,17 +171,6 @@ /> - - - - - = { dtfrqcy: '监测频次', fwdx: '服务对象', gcfs: '观察方式', - introduce: '简介', remark: '备注' }; diff --git a/frontend-sjgl/src/views/conventionalHydropower/terrEco/EditOtteModal.vue b/frontend-sjgl/src/views/conventionalHydropower/terrEco/EditOtteModal.vue index 9d2d0083..66ab71ef 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/terrEco/EditOtteModal.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/terrEco/EditOtteModal.vue @@ -182,17 +182,6 @@ - - - - - = { dtfrqcy: '监测频次', jbtxcs: '基本特性参数', blprd: '所属建设阶段', - introduce: '简介', remark: '备注' }; diff --git a/frontend-sjgl/src/views/conventionalHydropower/terrEco/index.vue b/frontend-sjgl/src/views/conventionalHydropower/terrEco/index.vue index cd6c5e75..33b8266b 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/terrEco/index.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/terrEco/index.vue @@ -49,7 +49,7 @@ @success="handleEditSuccess" /> - + diff --git a/frontend-sjgl/src/views/conventionalHydropower/zengZhiFangLiu/index.vue b/frontend-sjgl/src/views/conventionalHydropower/zengZhiFangLiu/index.vue index 09872935..a508259d 100644 --- a/frontend-sjgl/src/views/conventionalHydropower/zengZhiFangLiu/index.vue +++ b/frontend-sjgl/src/views/conventionalHydropower/zengZhiFangLiu/index.vue @@ -40,13 +40,13 @@ const deleteModalRef = ref(); const operationLogVisible = ref(false); const columns = ref([ - { key: 'stnm', title: '增殖站名称', dataIndex: 'stnm', visible: true, width: 160,fixed: 'left', ellipsis: true }, + { key: 'stnm', title: '增殖站名称', dataIndex: 'stnm', visible: true, width: 240,fixed: 'left', ellipsis: true }, { key: 'stcd', title: '增殖站编码', dataIndex: 'stcd', visible: true, width: 180, ellipsis: true }, { key: 'baseName', title: '水电基地', dataIndex: 'baseName', visible: true, width: 120, ellipsis: true }, { key: 'ennm', title: '所属电站', dataIndex: 'ennm', visible: true, width: 100, ellipsis: true }, - { key: 'zzfldx', title: '放流对象', dataIndex: 'zzfldx', visible: true, width: 120, ellipsis: true }, + { key: 'zzfldx', title: '放流对象', dataIndex: 'zzfldx', visible: true, width: 260, ellipsis: true }, { key: 'zzflcnt', title: '放流规模(尾)', dataIndex: 'zzflcnt', visible: true, width: 120 }, { key: 'zzflbjfs', title: '标记方式', dataIndex: 'zzflbjfs', visible: true, width: 100, ellipsis: true }, @@ -56,7 +56,7 @@ const columns = ref([ { key: 'zzflfllc', title: '放流地点', dataIndex: 'zzflfllc', visible: true, width: 260, ellipsis: true }, { key: 'zzflyzms', title: '养殖模式', dataIndex: 'zzflyzms', visible: true, width: 220, ellipsis: true }, - { key: 'zzflgy', title: '生产工艺', dataIndex: 'zzflgy', visible: true, width: 180, ellipsis: true }, + { key: 'zzflgy', title: '生产工艺', dataIndex: 'zzflgy', visible: true, width: 240, ellipsis: true }, { key: 'swdt', title: '开工日期', dataIndex: 'swdt', visible: true, width: 110, customRender: ({ text }) => { if (!text || text === '-') return '-'; const date = dayjs(text); return date.isValid() ? date.format('YYYY-MM-DD') : '-'; } }, { key: 'jcdt', title: '建成日期', dataIndex: 'jcdt', visible: true, width: 110, customRender: ({ text }) => { if (!text || text === '-') return '-'; const date = dayjs(text); return date.isValid() ? date.format('YYYY-MM-DD') : '-'; } }, { key: 'zzfltm', title: '放流时间', dataIndex: 'zzfltm', visible: true, width: 110, customRender: ({ text }) => { if (!text || text === '-') return '-'; const date = dayjs(text); return date.isValid() ? date.format('YYYY-MM-DD') : '-'; } }, diff --git a/frontend/src/components/BaseLayerSwitcher/index.vue b/frontend/src/components/BaseLayerSwitcher/index.vue index a69ab4f5..a96ce1b9 100644 --- a/frontend/src/components/BaseLayerSwitcher/index.vue +++ b/frontend/src/components/BaseLayerSwitcher/index.vue @@ -2,7 +2,8 @@
diff --git a/frontend/src/modules/dianzhanzhuantiMod/DZShuiZhiJianCeQuShiTu/index.vue b/frontend/src/modules/dianzhanzhuantiMod/DZShuiZhiJianCeQuShiTu/index.vue index 2ecf41b2..02947425 100644 --- a/frontend/src/modules/dianzhanzhuantiMod/DZShuiZhiJianCeQuShiTu/index.vue +++ b/frontend/src/modules/dianzhanzhuantiMod/DZShuiZhiJianCeQuShiTu/index.vue @@ -192,7 +192,7 @@ const scopeDateConfig = computed(() => ({ value: [dateRange.value[0], dateRange.value[1]] as any, picker: (mway.value === '1' ? 'year' : 'date') as const, format: mway.value === '1' ? 'YYYY' : 'YYYY-MM-DD', - width: mway.value === '1' ? '170px' : '215px' + width: mway.value === '1' ? '170px' : '220px' })); // ==================== 树数据转换 ==================== diff --git a/frontend/src/permission.ts b/frontend/src/permission.ts index 9cffa7d9..4548ec13 100644 --- a/frontend/src/permission.ts +++ b/frontend/src/permission.ts @@ -2,6 +2,7 @@ import router from '@/router'; import { RouteRecordRaw } from 'vue-router'; import { useUserStoreHook } from '@/store/modules/user'; import { usePermissionStoreHook } from '@/store/modules/permission'; +import { useUiStore } from '@/store/modules/ui'; import NProgress from 'nprogress'; import 'nprogress/nprogress.css'; NProgress.configure({ showSpinner: false }); @@ -130,6 +131,10 @@ router.beforeEach(async (to, from, next) => { } }); -router.afterEach(() => { +router.afterEach(to => { NProgress.done(); + // 进入非电站专题页时清除地图控件位置覆盖(防止专题页的 store 覆盖值泄漏到其他页面) + if (!to.path.includes('dianZhanZhuanTi')) { + useUiStore().resetMapControlsPosition(); + } }); diff --git a/frontend/src/store/modules/ui.ts b/frontend/src/store/modules/ui.ts index 93574891..0987860b 100644 --- a/frontend/src/store/modules/ui.ts +++ b/frontend/src/store/modules/ui.ts @@ -18,6 +18,18 @@ export const useUiStore = defineStore('ui', () => { const globalDrawerOpen = ref(false); // 是否处于锚点搜索状态(选中命中 DRAWER_STTP_CODES 的锚点时 true;清空/切页等 false) const isSearchActive = ref(false); + // 地图控件(地图控制器/底图切换器)位置覆盖值;null 表示回退组件自身默认(非电站专题页样式) + const mapControlsPosition = ref<{ + controllerRight: string | null; + controllerBottom: string | null; + baselayerRight: string | null; + baselayerBottom: string | null; + }>({ + controllerRight: null, + controllerBottom: null, + baselayerRight: null, + baselayerBottom: null + }); // 切换抽屉状态 const toggleDrawer = () => { @@ -39,6 +51,26 @@ export const useUiStore = defineStore('ui', () => { const setIsSearchActive = (active: boolean) => { isSearchActive.value = active; }; + // 部分更新地图控件位置覆盖 + const setMapControlsPosition = ( + partial: Partial<{ + controllerRight: string | null; + controllerBottom: string | null; + baselayerRight: string | null; + baselayerBottom: string | null; + }> + ) => { + mapControlsPosition.value = { ...mapControlsPosition.value, ...partial }; + }; + // 重置地图控件位置覆盖(恢复组件自身默认样式,即非电站专题页样式) + const resetMapControlsPosition = () => { + mapControlsPosition.value = { + controllerRight: null, + controllerBottom: null, + baselayerRight: null, + baselayerBottom: null + }; + }; const markMapSwitchCompleted = () => { mapSwitchCompletedTick.value += 1; @@ -57,6 +89,9 @@ export const useUiStore = defineStore('ui', () => { setGlobalDrawerOpen, isSearchActive, setIsSearchActive, + mapControlsPosition, + setMapControlsPosition, + resetMapControlsPosition, mapType, mapSwitchCompletedTick, markMapSwitchCompleted diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/DeleteConfirmModal.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/DeleteConfirmModal.vue deleted file mode 100644 index f47acd92..00000000 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/DeleteConfirmModal.vue +++ /dev/null @@ -1,115 +0,0 @@ - - - diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/EditPowerModal.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/EditPowerModal.vue deleted file mode 100644 index 806eaa21..00000000 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/EditPowerModal.vue +++ /dev/null @@ -1,1406 +0,0 @@ - - - - - diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/index.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/index.vue index c5dd014a..b8e8160f 100644 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/index.vue +++ b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/BasicData/index.vue @@ -26,7 +26,16 @@ sort: sort }" :list-url="getPowerTableList" - > + > @@ -36,19 +45,6 @@ :user-column-list="userColumnList" @confirm="handleColumnConfirm" /> - - - - - -
diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/spawnGround/SpawnSearch.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/spawnGround/SpawnSearch.vue deleted file mode 100644 index 71ef218f..00000000 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/spawnGround/SpawnSearch.vue +++ /dev/null @@ -1,121 +0,0 @@ - - - diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/spawnGround/index.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/spawnGround/index.vue deleted file mode 100644 index 8ee14689..00000000 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/spawnGround/index.vue +++ /dev/null @@ -1,295 +0,0 @@ - - - - - diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/EditWarnModal.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/EditWarnModal.vue deleted file mode 100644 index 24219bfb..00000000 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/EditWarnModal.vue +++ /dev/null @@ -1,394 +0,0 @@ - - - diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/WarnSearch.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/WarnSearch.vue deleted file mode 100644 index dc5db725..00000000 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/WarnSearch.vue +++ /dev/null @@ -1,82 +0,0 @@ - - - diff --git a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/index.vue b/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/index.vue deleted file mode 100644 index 8554be30..00000000 --- a/frontend/src/views/DataQueryMenuModule/components/conventionalHydropower/yunXingGaoJing/index.vue +++ /dev/null @@ -1,255 +0,0 @@ - - - - - diff --git a/frontend/src/views/dianZhanZhuanTi/dianZhanZhuanTi.vue b/frontend/src/views/dianZhanZhuanTi/dianZhanZhuanTi.vue index ebe3eebd..f26ea864 100644 --- a/frontend/src/views/dianZhanZhuanTi/dianZhanZhuanTi.vue +++ b/frontend/src/views/dianZhanZhuanTi/dianZhanZhuanTi.vue @@ -34,7 +34,7 @@