From 840373b24869bbe75eb91fd4afa8f72089a640f1 Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Fri, 26 Sep 2025 17:12:24 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/qcckApi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/qcckApi.js b/src/api/qcckApi.js index e1945ba..9ba9a24 100644 --- a/src/api/qcckApi.js +++ b/src/api/qcckApi.js @@ -1,6 +1,6 @@ import request from "@/utils/request"; import axios from "axios"; -const api = ""; +const api = "/bagl"; const egisSpace = "/egis-space"; // 选择站口名称 From 26ea6dbdcfab9212e68bf13b204a39fc995ba065 Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Fri, 26 Sep 2025 17:14:18 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/login/index.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/login/index.vue b/src/views/login/index.vue index cf8770d..b30707e 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -140,14 +140,13 @@ const handleLogin = () => { }); }; const getSfzhByGsid = (sfzh) => { - qcckPost({ sfzh }, "/bagl/mosty-base/baxx/cyry/queryBySfzh").then(res=>{ + qcckPost({ sfzh }, "/mosty-base/baxx/cyry/queryBySfzh").then(res=>{ if(!res) { ElNotification({ title: "提示", message: "无访问权限", duration: 3000}); store.dispatch("user/logout"); }else{ let obj = { sfzh:res.sfzh , xm:res.xm , pxgs:res.pxgs , pxgsid:res.pxgsid } setItem("userInfo", JSON.stringify(obj)); - // window.location.href = "/"; router.push("/"); } })