livenessView.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="page-body">
  3. <!-- #ifdef MP-ALIPAY-->
  4. <web-view :src="isMinorityUrl+'/9901?source=web&token='+face_token+'&serialNumber='+face_key+'&backUrl='+ url"></web-view>
  5. <!-- #endif -->
  6. <!-- #ifdef MP-WEIXIN -->
  7. <web-view :src="isMinorityUrl+'/9901?token='+face_token+'&serialNumber='+face_key+'&backUrl='+ url"></web-view>
  8. <!-- #endif -->
  9. </view>
  10. </template>
  11. <script>
  12. var config = require('../../common/config.js');
  13. var http = require('../../common/http.js');
  14. var common = require('../../common/common.js');
  15. var storage = require('../../common/storage.js')
  16. export default {
  17. data() {
  18. return {
  19. face_token: '',
  20. face_key: '',
  21. url: '',
  22. isMinorityUrl:'', //是否是小众租车appid url
  23. };
  24. },
  25. /**
  26. * 生命周期函数--监听页面加载
  27. */
  28. onLoad: function(options) {
  29. this.face_token = options.face_token
  30. this.face_key = options.face_key
  31. const accountInfo = uni.getAccountInfoSync();
  32. if(accountInfo.miniProgram.appId=='wx868f4e5130ef2636'){
  33. this.setData({isMinorityUrl:'https://h5live.chinadatapay.com'})
  34. }else{
  35. this.setData({isMinorityUrl:'https://h5livev1.chinadatapay.com'})
  36. }
  37. console.log(this.isMinorityUrl,'isMinorityUrl');
  38. //#ifdef MP-ALIPAY
  39. // this.url = encodeURIComponent('https://ax.tellhe.cn/callBack')
  40. // this.url = encodeURIComponent('https://ax.tellhe.cn/callBack/faceCallback.html')
  41. this.url = encodeURIComponent('https://admin.bms16.com/static/faceCallback.html')
  42. //#endif
  43. //#ifdef MP-WEIXIN
  44. this.url = '/pages/callPage/callPage'
  45. //#endif
  46. },
  47. /**
  48. * 生命周期函数--监听页面显示
  49. */
  50. onShow: function() {
  51. this.getFaceKey()
  52. },
  53. methods: {
  54. getFaceKey() {
  55. const _face_key = uni.getStorageSync('faceKey')
  56. if (_face_key&&_face_key != this.face_key) {
  57. this.face_key = _face_key
  58. }
  59. }
  60. }
  61. };
  62. </script>
  63. <style>
  64. @import './livenessView.css';
  65. </style>