作者 杜晓添

合并分支 'xide_duxiaotian' 到 'master'

Xide duxiaotian



查看合并请求 !181
@@ -307,7 +307,7 @@ @@ -307,7 +307,7 @@
307 this.joinValue = (Number(item.price).toFixed(2)) 307 this.joinValue = (Number(item.price).toFixed(2))
308 } 308 }
309 }) 309 })
310 - (this.cheapListDeal.length > 0) && (this.cheapListDeal.unshift('请选择')); 310 + (this.cheapListDeal.length > 0) && (this.cheapListDeal.unshift('请选择'));
311 // 店铺活动价 311 // 店铺活动价
312 res.data.data.goods_list.map(item => { 312 res.data.data.goods_list.map(item => {
313 if (item.active.length > 0) { 313 if (item.active.length > 0) {
@@ -390,7 +390,7 @@ @@ -390,7 +390,7 @@
390 } 390 }
391 this.$rqs('/api/cart/pay', data).then(res => { 391 this.$rqs('/api/cart/pay', data).then(res => {
392 jweixin.config({ 392 jweixin.config({
393 - debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 393 + debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
394 appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识 394 appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识
395 timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳 395 timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳
396 nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串 396 nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串
@@ -469,7 +469,7 @@ @@ -469,7 +469,7 @@
469 } 469 }
470 this.$rqs('/api/goods/pay', data).then(res => { 470 this.$rqs('/api/goods/pay', data).then(res => {
471 jweixin.config({ 471 jweixin.config({
472 - debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 472 + debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
473 appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识 473 appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识
474 timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳 474 timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳
475 nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串 475 nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串
@@ -498,27 +498,27 @@ @@ -498,27 +498,27 @@
498 signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' 498 signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
499 paySign: res.data.data.jsApiParameters.paySign, // 支付签名 499 paySign: res.data.data.jsApiParameters.paySign, // 支付签名
500 success: function(res) { 500 success: function(res) {
501 - // 支付成功后的回调函数  
502 - console.log('paysuccess') 501 + // // 支付成功后的回调函数
  502 + // console.log('paysuccess')
503 console.log(res) 503 console.log(res)
504 - var route = 'payResult' + '?type=1'  
505 - uni.navigateTo({  
506 - url: route  
507 - }); 504 + // var route = 'payResult' + '?type=1'
  505 + // uni.navigateTo({
  506 + // url: route
  507 + // });
508 }, 508 },
509 cancel: function(r) { 509 cancel: function(r) {
510 - var route = 'payResult' + '?type=2'  
511 - uni.navigateTo({  
512 - url: route  
513 - }); 510 + // var route = 'payResult' + '?type=2'
  511 + // uni.navigateTo({
  512 + // url: route
  513 + // });
514 }, 514 },
515 fail: function(res) { 515 fail: function(res) {
516 - console.log('payfail')  
517 - console.log(res)  
518 - var route = 'payResult' + '?type=0'  
519 - uni.navigateTo({  
520 - url: route  
521 - }); 516 + // console.log('payfail')
  517 + // console.log(res)
  518 + // var route = 'payResult' + '?type=0'
  519 + // uni.navigateTo({
  520 + // url: route
  521 + // });
522 } 522 }
523 }); 523 });
524 }); 524 });
1 -const BASE_URL = 'http://xide.shs.broing.cn'; 1 +// const BASE_URL = 'http://xide.shs.broing.cn';
  2 +const BASE_URL = 'http://www.xide.com';
2 // 调用接口封装 3 // 调用接口封装
3 export const rqs = (url, data, method) => { 4 export const rqs = (url, data, method) => {
4 return new Promise((resolve, reject) => { 5 return new Promise((resolve, reject) => {