From 0082112fa30e449071c352a9a4000014bb8d6914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=BB=E7=8F=AE=E5=AE=87?= Date: Tue, 30 Jan 2024 10:46:12 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=B7=E6=B1=82=E8=BF=9E=E6=8E=A5url=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=20jeccg=E6=94=B9=E6=88=90armd?= 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 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/stationOperation/components/MapMarker.vue b/src/views/stationOperation/components/MapMarker.vue index 7b1dc75..7e6b4b3 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('/armd-station-operation/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..0ba6525 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('/armd-station-operation/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', + '/armd-station-operation/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', + '/armd-station-operation/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', + '/armd-station-operation/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..350b90c 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('/armd-station-operation/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('/armd-station-operation/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('/armd-station-operation/stationOperation/findStationType') this.stationTypeList = res.filter((item) => item).map((item) => ({ label: item, value: item })) } catch (error) { console.error(error)