From dddbacdf61a2206ba194c9a6b759007b0f8a8fb8 Mon Sep 17 00:00:00 2001 From: nieziyan Date: Fri, 26 Jan 2024 17:25:00 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E5=A4=9A=E4=BD=99url=E5=AF=BC?= =?UTF-8?q?=E8=87=B4404?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/stationOperation/components/MapMarker.vue | 2 +- src/views/stationOperation/components/MapPane.vue | 8 ++++---- src/views/stationOperation/index.vue | 6 +++--- src/views/statistics/imsData/met/index.vue | 2 +- src/views/statistics/imsData/stateOfHealth/alerts.vue | 2 +- src/views/statistics/imsData/stateOfHealth/rmssoh.vue | 2 +- src/views/statistics/imsProducts/arr/index.vue | 2 +- src/views/statistics/imsProducts/rrr/index.vue | 2 +- src/views/statistics/list.vue | 2 +- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/views/stationOperation/components/MapMarker.vue b/src/views/stationOperation/components/MapMarker.vue index 7b1dc75..609d52b 100644 --- a/src/views/stationOperation/components/MapMarker.vue +++ b/src/views/stationOperation/components/MapMarker.vue @@ -217,7 +217,7 @@ export default { // 获取站点详情 async _getStationInfo(stationInfo) { try { - const { success, result, message } = await getAction('/jeecg-station-operation/stationOperation/findInfo', { + const { success, result, message } = await getAction('/stationOperation/findInfo', { stationId: stationInfo.stationId, type: stationInfo.stationType, }) diff --git a/src/views/stationOperation/components/MapPane.vue b/src/views/stationOperation/components/MapPane.vue index 2bbce38..55a2b30 100644 --- a/src/views/stationOperation/components/MapPane.vue +++ b/src/views/stationOperation/components/MapPane.vue @@ -579,7 +579,7 @@ export default { success, result: { GIS: markerList, table }, message, - } = await postAction('/jeecg-station-operation/stationOperation/getHitEquList', { + } = await postAction('/stationOperation/getHitEquList', { radius: this.radius, stationIds, }) @@ -696,7 +696,7 @@ export default { const stationIds = this.dataStatusCheckedKeys.filter((key) => -1 == key.toString().indexOf('root_')) this.isSavingDataRecieveSettings = true const { success, message } = await postAction( - '/jeecg-station-operation/sysUserFocusStation/saveUserFocusByUserId', + '/sysUserFocusStation/saveUserFocusByUserId', { stationIds, ...this.dataRecieveStatusModel, @@ -739,7 +739,7 @@ export default { async getDataRecieveSettings() { try { const { success, result, message } = await getAction( - '/jeecg-station-operation/sysUserFocusStation/findUserFocusByUserId', + '/sysUserFocusStation/findUserFocusByUserId', { userId: this.$store.getters.userInfo.id, } @@ -775,7 +775,7 @@ export default { try { this.isGettingStatusList = true const { success, result, message } = await getAction( - '/jeecg-station-operation/stationOperation/getDataReceivingStatus', + '/stationOperation/getDataReceivingStatus', { userId: this.$store.getters.userInfo.id, oneStationId: (this.stationInfo && this.stationInfo.stationId) || '', diff --git a/src/views/stationOperation/index.vue b/src/views/stationOperation/index.vue index 4f2f056..1767edb 100644 --- a/src/views/stationOperation/index.vue +++ b/src/views/stationOperation/index.vue @@ -253,7 +253,7 @@ export default { async getStationList() { try { this.isGettingDataList = true - const res = await getAction('/jeecg-station-operation/stationOperation/findList') + const res = await getAction('/stationOperation/findList') res.forEach((item) => { const { stationId, stationName, stationType } = item item._stationId = `${stationId}${stationName}${stationType}` @@ -364,7 +364,7 @@ export default { async getFollowedStationList() { try { this.isGettingFollowedDataList = true - const res = await getAction('/jeecg-station-operation/sysUserFocusStation/findList') + const res = await getAction('/sysUserFocusStation/findList') this.followedDataList = res const scrollContainer2Ref = this.$refs.scrollContainer2Ref @@ -383,7 +383,7 @@ export default { // 获取站点类型 async getStationTypeList() { try { - const res = await getAction('/jeecg-station-operation/stationOperation/findStationType') + const res = await getAction('/stationOperation/findStationType') this.stationTypeList = res.filter((item) => item).map((item) => ({ label: item, value: item })) } catch (error) { console.error(error) diff --git a/src/views/statistics/imsData/met/index.vue b/src/views/statistics/imsData/met/index.vue index 834b3a5..3ef7af5 100644 --- a/src/views/statistics/imsData/met/index.vue +++ b/src/views/statistics/imsData/met/index.vue @@ -121,7 +121,7 @@ export default { list: '/webStatistics/findMetPage', delete: '/gardsSampleData/deleteById', findStationList: '/webStatistics/findStationList', - findParticulatePage: '/jeecg-web-statistics/webStatistics/findParticulatePage', + findParticulatePage: '/webStatistics/findParticulatePage', }, stationList: [], dataSource: [], diff --git a/src/views/statistics/imsData/stateOfHealth/alerts.vue b/src/views/statistics/imsData/stateOfHealth/alerts.vue index bcf1b72..548c383 100644 --- a/src/views/statistics/imsData/stateOfHealth/alerts.vue +++ b/src/views/statistics/imsData/stateOfHealth/alerts.vue @@ -101,7 +101,7 @@ export default { list: '/webStatistics/findAlertSohPage', delete: '/gardsSampleData/deleteById', findStationList: '/webStatistics/findStationList', - findParticulatePage: '/jeecg-web-statistics/webStatistics/findParticulatePage', + findParticulatePage: '/webStatistics/findParticulatePage', }, stationList: [], dataSource: [], diff --git a/src/views/statistics/imsData/stateOfHealth/rmssoh.vue b/src/views/statistics/imsData/stateOfHealth/rmssoh.vue index 465561a..f58c8aa 100644 --- a/src/views/statistics/imsData/stateOfHealth/rmssoh.vue +++ b/src/views/statistics/imsData/stateOfHealth/rmssoh.vue @@ -103,7 +103,7 @@ export default { list: '/webStatistics/findSohPage', delete: '/gardsSampleData/deleteById', findStationList: '/webStatistics/findStationList', - findParticulatePage: '/jeecg-web-statistics/webStatistics/findParticulatePage', + findParticulatePage: '/webStatistics/findParticulatePage', }, stationList: [], dataSource: [], diff --git a/src/views/statistics/imsProducts/arr/index.vue b/src/views/statistics/imsProducts/arr/index.vue index 5d736a2..6bb93a5 100644 --- a/src/views/statistics/imsProducts/arr/index.vue +++ b/src/views/statistics/imsProducts/arr/index.vue @@ -113,7 +113,7 @@ export default { list: '/radionuclide/findAutoPage', delete: '/gardsSampleData/deleteById', findStationList: '/webStatistics/findStationList', - findParticulatePage: '/jeecg-web-statistics/webStatistics/findParticulatePage', + findParticulatePage: '/webStatistics/findParticulatePage', }, stationList: [], dataSource: [], diff --git a/src/views/statistics/imsProducts/rrr/index.vue b/src/views/statistics/imsProducts/rrr/index.vue index 42d1aae..0d662d7 100644 --- a/src/views/statistics/imsProducts/rrr/index.vue +++ b/src/views/statistics/imsProducts/rrr/index.vue @@ -113,7 +113,7 @@ export default { list: '/radionuclide/findReviewedPage', delete: '/gardsSampleData/deleteById', findStationList: '/webStatistics/findStationList', - findParticulatePage: '/jeecg-web-statistics/webStatistics/findParticulatePage', + findParticulatePage: '/webStatistics/findParticulatePage', }, stationList: [], dataSource: [], diff --git a/src/views/statistics/list.vue b/src/views/statistics/list.vue index be70c7e..aea1084 100644 --- a/src/views/statistics/list.vue +++ b/src/views/statistics/list.vue @@ -116,7 +116,7 @@ export default { list: '/webStatistics/findParticulatePage', delete: '/gardsSampleData/deleteById', findStationList: '/webStatistics/findStationList', - findParticulatePage: '/jeecg-web-statistics/webStatistics/findParticulatePage', + findParticulatePage: '/webStatistics/findParticulatePage', }, dataSource: [], detailJson: {},