Browse Source

修改地址

ming 5 months ago
parent
commit
acea81ab11
3 changed files with 4 additions and 4 deletions
  1. 1 1
      src/config.js
  2. 2 2
      src/pages/login.vue
  3. 1 1
      vite.config.js

+ 1 - 1
src/config.js

@@ -7,7 +7,7 @@ export default {
   //#endif
 
   //#ifdef H5
-  baseUrl: import.meta.env.MODE === "production" ? `https://${window.location.host}/prod-api` : `http://172.16.120.165:801/dev-api`,
+  baseUrl: import.meta.env.MODE === "production" ? `https://${window.location.host}/prod-api` : `http://192.168.123.165:801/dev-api`,
   //#endif
 
   websiteUrl: "https://qhome.usky.cn",

+ 2 - 2
src/pages/login.vue

@@ -182,8 +182,8 @@ function init() {
   useStore.GetWxOpenId(1); //调用获取微信公众号openId
 
   if (window.location.host) {
-    linkUrl.value = 'manager.usky.cn';
-    // linkUrl.value = "172.16.120.165:13200";
+    linkUrl.value = window.location.host;
+    // linkUrl.value = "192.168.123.165:13200";
     // linkUrl.value = "localhost:81";
     useStore.GetMobileTenantConfig({ url: linkUrl.value });
   }

+ 1 - 1
vite.config.js

@@ -12,7 +12,7 @@ export default defineConfig(({ mode, command }) => {
       port: 81, //启动端口
       proxy: {
         "/dev-api": {
-          target: "http://172.16.120.165:13200",
+          target: "http://192.168.123.165:13200",
           ws: true,
           changeOrigin: true,
           //rewrite: (p) => p.replace(/^\/dev-api/, '')