android添加银行插件
diff --git a/static/js/config.js b/static/js/config.js
index e6285be..879b555 100644
--- a/static/js/config.js
+++ b/static/js/config.js
@@ -5,18 +5,21 @@
 	config = {
 		// #ifdef H5
 		base_api: "/api", //测试地址
+		// base_api: "http://172.28.43.23:8089/portal/mobileapi",//本地地址
 		// #endif
-		// base_api: "http://172.28.43.20:8089/portal/mobileapi",//本地地址
+		
 		// #ifndef H5
 		base_api: 'http://yy.dlsmk.cn:8080/portal/mobileapi',
+		base_api: 'https://yy.dlsmk.cn/portal/mobileapi',
+		base_api: "http://172.28.43.23:8089/portal/mobileapi",//本地地址
 		// #endif
 	}
 
 } else {
 	// 生产环境
 	config = {
-		base_api: 'https://yy.dlsmk.cn/portal/mobileapi'
+		base_api: 'https://yy.dlsmk.cn/portal/mobileapi',
 	}
-}
+} 
 
-export default config
+module.exports = config
diff --git a/static/js/http.interceptor.js b/static/js/http.interceptor.js
index db568be..040d6c9 100644
--- a/static/js/http.interceptor.js
+++ b/static/js/http.interceptor.js
@@ -1,6 +1,5 @@
 import config from './config.js'
 const base_url = config.base_api
-console.log(base_url)
 const install = (Vue, vm) => {
 	// 此为自定义配置参数,具体参数见上方说明
 	Vue.prototype.$u.http.setConfig({
@@ -30,8 +29,9 @@
 		//console.log(config.url,config.header['Authorization'])
 		config.header["X-TENANT-ID"] = tenantid;
 		if (config.url == "/i/activity" || config.url == "/v1/feedback/release" ||
-			config.url == '/medicineapi/medicalcard/add' || config.url == '/medicalapi/pay' ||
-			config.url == '/v1/security/save' || config.url == '/i/security/check' || config.url == '/i/security/pwdset') {
+			config.url == '/medicineapi/medicalcard/add' || config.url == '/medicalapi/quickpay/payinit' ||
+			config.url == '/v1/security/save' || config.url == '/i/security/check' || config.url == '/i/security/pwdset' ||
+			config.url == '/medicalapi/quickpay/confirm') {
 			config.header['content-type'] = "application/json";
 		} else {
 			config.header['content-type'] = "application/x-www-form-urlencoded";
@@ -45,7 +45,7 @@
 			// res为服务端返回值,可能有code,result等字段
 			// 这里对res.result进行返回,将会在this.$u.post(url).then(res => {})的then回调中的res的到
 			// 如果配置了originalData为true,请留意这里的返回值
-			if (res.data.code == 200) {
+			if (res.data.code == 200 || res.data.code == 501) {
 				return res.data
 			} else if (res.data.code == 500) {
 				uni.showModal({
@@ -71,7 +71,7 @@
 				complete(res) {
 					setTimeout(() => {
 						uni.reLaunch({
-							url: "/pages/sub_basic/login/index"
+							url: "/pages/sub_basic/login"
 						})
 					}, 1500)
 				}