gcz 2 rokov pred
rodič
commit
1e7917e7d2
3 zmenil súbory, kde vykonal 38 pridanie a 35 odobranie
  1. 15 34
      config/config.js
  2. 1 1
      manifest.json
  3. 22 0
      package.json

+ 15 - 34
config/config.js

@@ -1,40 +1,21 @@
+const node_dev = process.env.H_NODE_ENV;
+//运行到浏览器用的
+let apiBaseurl='http://wx.hw.hongweisoft.com/forestapi/forest-portal';
+let loginUrl='http://wx.hw.hongweisoft.com/forestapi/forest-portal/wechat/h5/authorize?returnUrl=http://172.16.90.25:8080/#/';
+//打包用的
+if (node_dev) {
+ apiBaseurl = process.env.H_BASE_URL;
+ loginUrl = process.env.H_LOGIN_URL
+}
+// console.log('node_devL',node_dev);
 const config = {
-	//dev 
-	// apiBaseurl:'http://forest.hw.hongweisoft.com/data/forest-portal',//测试
-	// apiBaseurl:'http://172.16.90.64:9098/forest-portal',//测试
-	// apiBaseurl:'http://172.16.90.50:9098/forest-portal',//邱波
-	// apiBaseurl:'http://172.16.90.3:9098/forest-portal',//邱波
-	// apiBaseurl:'http://wx.hw.hongweisoft.com/zddtest/forest-portal',//东东
-	// apiBaseurl:'http://wx.hw.hongweisoft.com/zddapi/forest-portal',//东东
-	apiBaseurl:'http://wx.hw.hongweisoft.com/fqb/forest-portal',//邱波
-		
-	//本地图片
-	// imgUrl:'http://'+window.location.host,
-	// 图片占位z
-	placeImg:'http://placekitten.com',
-	
-	// loginUrl:'http://tanhui.hongweisoft.com/forest-portal/wechat/h5/authorize?returnUrl=/',//登录后跳转到测试链接
-	// loginUrl:'http://forest.hw.hongweisoft.com/data/forest-portal/wechat/h5/authorize?returnUrl=http://forest.hw.hongweisoft.com/#/',//登录后跳转链接
-	// loginUrl:'http://wx.hw.hongweisoft.com/zddtest/forest-portal/wechat/h5/authorize?returnUrl=http://172.16.90.25:8080/#/',//登录后跳转到测试链接 东东
-	loginUrl:'http://wx.hw.hongweisoft.com/fqb/forest-portal/wechat/h5/authorize?returnUrl=http://172.16.90.25:8080/#/',//登录后跳转到测试链接 东东
-	// loginUrl:'http://wx.hw.hongweisoft.com/zddtest/forest-portal/wechat/h5/authorize?returnUrl=http://foresth5test.hw.hongweisoft.com/#/',//登录后跳转到测试链接 东东
-	// loginUrl:'http://wx.hw.hongweisoft.com/zddtest/forest-portal/wechat/h5/authorize?returnUrl=http://wx.hw.hongweisoft.com/gcz/#/',//登录后跳转到测试链接 东东
-
-	// 公司测试配置
-	// apiBaseurl:'http://wx.hw.hongweisoft.com/forestapi/forest-portal',//测试
-	// loginUrl:'http://wx.hw.hongweisoft.com/forestapi/forest-portal/wechat/h5/authorize?returnUrl=http://172.16.90.25:8080/#/',
-	// loginUrl:'http://wx.hw.hongweisoft.com/forestapi/forest-portal/wechat/h5/authorize?returnUrl=http://wx.hw.hongweisoft.com/hhforest/',//登录后跳转到测试链接
-	// loginUrl:'http://wxh5.gzqlyx.com/api/forest-portal/wechat/h5/authorize?returnUrl=http://172.16.90.25:8080/#/',//登录后跳转链接
-	
-	
-	//online 线上配置
-	// loginUrl:'http://wxh5.gzqlyx.com/api/forest-portal/wechat/h5/authorize?returnUrl=http://wxh5.gzqlyx.com/#/',//登录后跳转链接
-	// apiBaseurl:'http://wxh5.gzqlyx.com/api/forest-portal',
-
-	
-	
+	apiBaseurl:apiBaseurl,
+	loginUrl:loginUrl,
+	 
 	//gloab 全局
 	imgUrl:"",
+	 
+	placeImg:'http://placekitten.com',
 }
 export {
 	config

+ 1 - 1
manifest.json

@@ -81,7 +81,7 @@
             "base" : "./"
         },
         "devServer" : {
-			"disableHostCheck":true,
+            "disableHostCheck" : true,
             "https" : false
         },
         "title" : "贵州林产品信息发布平台",

+ 22 - 0
package.json

@@ -6,6 +6,28 @@
   "dependencies": {
     "vue-baidu-map": "^0.21.22"
   },
+  "uni-app": {
+    "scripts": {
+      "build:build64": {
+        "title": "forest_build:build64",
+        "env": {
+          "UNI_PLATFORM": "h5",
+          "H_NODE_ENV": "development",
+          "H_BASE_URL": "http://wx.hw.hongweisoft.com/forestapi/forest-portal",
+          "H_LOGIN_URL": "http://wx.hw.hongweisoft.com/forestapi/forest-portal/wechat/h5/authorize?returnUrl=http://foresth5test.hw.hongweisoft.com/#/"
+        }
+      },
+      "build:buildOnline": {
+        "title": "forest_build:online",
+        "env": {
+          "UNI_PLATFORM": "h5",
+          "H_NODE_ENV": "production",
+          "H_BASE_URL": "http://gzqlyxwxh5.gzqlyx.com/api/forest-portal",
+          "H_LOGIN_URL": "http://gzqlyxwxh5.gzqlyx.com/api/forest-portal/wechat/h5/authorize?returnUrl=http://gzqlyxwxh5.gzqlyx.com/#/"
+        }
+      }
+    }
+  },
   "devDependencies": {},
   "scripts": {
     "test": "echo \"Error: no test specified\" && exit 1"