xiaoxin il y a 1 an
Parent
commit
08ffdab583
2 fichiers modifiés avec 22 ajouts et 20 suppressions
  1. 14 20
      common/config.js
  2. 8 0
      pages/riderMy/myAccount/Txmoney/Txmoney.vue

+ 14 - 20
common/config.js

@@ -1,25 +1,19 @@
-const ROOTPATH1 = "https://mxys.chuanghai-tech.com/sqx_fast";
-// const ROOTPATH1 = "https://www.daweilinli.com/sqx_fast";
-const ROO2 = "https://mxys.chuanghai-tech.com/sqx_fast";
-// const ROO2 = "https://www.daweilinli.com/sqx_fast";
-const ROOTPATH = "https://mxys.chuanghai-tech.com/sqx_fast";
-// const ROOTPATH = "https://www.daweilinli.com/sqx_fast";
-// const APIHOST2 = "https://www.daweilinli.com/sqx_fast";
-const APIHOST2 = "https://mxys.chuanghai-tech.com/sqx_fast";
-const ROOTPATH2 = "wss://mxys.chuanghai-tech.com/wss/websocket/"; //联系客服
-// const ROOTPATH2 = "wss://www.daweilinli.com/wss/websocket/"; //联系客服
-const ROOTPATH3 = "wss://mxys.chuanghai-tech.com/wss/ordersChat/"; //聊天
-// const ROOTPATH3 = "wss://www.daweilinli.com/wss/ordersChat/"; //聊天
+// const ROOTPATH1 = "https://mxys.chuanghai-tech.com/sqx_fast";
+// const ROO2 = "https://mxys.chuanghai-tech.com/sqx_fast";
+// const ROOTPATH = "https://mxys.chuanghai-tech.com/sqx_fast";
+// const APIHOST2 = "https://mxys.chuanghai-tech.com/sqx_fast";
+// const ROOTPATH2 = "wss://mxys.chuanghai-tech.com/wss/websocket/"; //联系客服
+// const ROOTPATH3 = "wss://mxys.chuanghai-tech.com/wss/ordersChat/"; //聊天
 
 
-// const ROOTPATH1 = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
-// const ROO2 = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
-// const ROOTPATH = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
-// const APIHOST2 = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
-// //联系客服
-// const ROOTPATH2 = "wss://mxys.chuanghai-tech.com/wss-test/websocket/";
-//  //聊天
-// const ROOTPATH3 = "wss://mxys.chuanghai-tech.com/wss-test/ordersChat/"; 
+const ROOTPATH1 = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
+const ROO2 = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
+const ROOTPATH = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
+const APIHOST2 = "https://mxys.chuanghai-tech.com/wm-test/wm-api/sqx_fast";
+//联系客服
+const ROOTPATH2 = "wss://mxys.chuanghai-tech.com/wss-test/websocket/";
+//聊天
+const ROOTPATH3 = "wss://mxys.chuanghai-tech.com/wss-test/ordersChat/";
 
 module.exports = {
 	APIHOST: ROOTPATH,

+ 8 - 0
pages/riderMy/myAccount/Txmoney/Txmoney.vue

@@ -43,6 +43,10 @@
 				开户人姓名:
 				<text class="yinghang2">{{ yingPeople }}</text>
 			</view>
+			<view style="color: #333333; text-align: left">
+				商户号:
+				<text class="yinghang2">{{ mchId }}</text>
+			</view>
 			<!-- <view class="flex justify-between margin-bottom-xl" v-for="(item,index) in openLists" :key="index">
 				<view class="flex align-center">
 					<image :src="item.image" style="width:23px;height:20px"></image>
@@ -129,6 +133,8 @@ export default {
 			yingName: '',
 			// 开户人姓名
 			yingPeople: '',
+			// 商户号
+			mchId: '',
 			//画板边长默认是屏幕宽度,正方形画布
 			cw: uni.getSystemInfoSync().windowWidth
 		}
@@ -179,9 +185,11 @@ export default {
 		}
 		this.$Request.getT('/app/rider/bank/getUserId', data).then((res) => {
 			if (res.code == 0) {
+				// console.log(res)
 				this.yingNo = res.data.cardNo
 				this.yingName = res.data.openBank
 				this.yingPeople = res.data.realName
+				this.mchId = res.data.mchId
 			}
 		})
 	},