天波h5前端应用
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

153 lines
5.1KB

  1. <!--
  2. * @Date: 2023-02-24 14:18:25
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-04-08 16:53:10
  5. * @FilePath: \TelpoH5FrontendWeb\src\views\package-home\index.vue
  6. * @description:
  7. -->
  8. <template>
  9. <div class="package-home">
  10. </div>
  11. </template>
  12. <script>
  13. import { APIPay } from "@/api/pay";
  14. import APICore from "@/api/core";
  15. import APIWx from "@/api/wx";
  16. import { isNotNull } from "@/utils/index";
  17. import AppId from "@/config/appId";
  18. export default {
  19. name: "",
  20. data() {
  21. return {
  22. params: {}, //获取路由的参数
  23. isRecharge: null, //是否已经支付
  24. };
  25. },
  26. created() {
  27. /* this.getToken(); */
  28. this.getAuth();
  29. this.checkImei();
  30. this.getParams();
  31. },
  32. methods: {
  33. checkImei() {
  34. let reqBody = {
  35. imei: this.params.imei,
  36. iccid: this.params.iccid || ''
  37. };
  38. APIWx.CheckImei(reqBody).then(res =>{
  39. let data = res.data;
  40. if(data) {
  41. this.isRecharge = data.isRecharge;
  42. };
  43. }).catch(e => {
  44. console.log("e", e.message);
  45. })
  46. },
  47. // checkBrowser 检查扫码的浏览器内核
  48. checkBrowser() {
  49. const userAgent = window.navigator.userAgent;
  50. console.log("浏览器内核", userAgent);
  51. if (/AlipayClient/.test(userAgent)) {
  52. console.log("支付宝");
  53. } else if (/MicroMessenger/.test(userAgent)) {
  54. console.log("微信");
  55. let url = window.location.href.split("?code=")[1];
  56. console.log("获取授权code的url", url);
  57. this.getWxCode();
  58. /* if (
  59. isNotNull(url) ||
  60. window.location.href.indexOf("code") > -1
  61. ) {
  62. let timeStamp = new Date().getTime();
  63. let code = url.split("&")[0];
  64. console.log("code", code);
  65. if (isNotNull(code)) {
  66. this.getWxCode();
  67. }
  68. } else {
  69. this.getWxCode();
  70. } */
  71. } else {
  72. this.getWxCode();
  73. console.log("当前浏览器内核并非支付宝或者微信");
  74. }
  75. },
  76. // 获取b端接口的token
  77. getAuth() {
  78. let manufactorId = "5bf13062-a41e-4d00-ba14-1101aad12650";
  79. APICore.getAuth({ manufactorId: manufactorId }).then(res => {
  80. this.$store.commit("gatewayToken", res.data.data);
  81. });
  82. },
  83. // 获取token
  84. getToken() {
  85. let manufacturerNo = '9f166b07-ff83-4991-84dc-ca6ad4a6b95b';
  86. APIPay.getToken(manufacturerNo).then(res => {
  87. console.log("token的数据", res.data)
  88. let data = res.data;
  89. if(data.code === 20000) {
  90. this.$store.commit("token", data.token);
  91. console.log("token的数据", localStorage.getItem('token'))
  92. }
  93. })
  94. },
  95. // 根据code获取openId
  96. getOpenId(code) {
  97. //let code = this.$store.getters.wxAuthCode;
  98. APIPay.getOpenId(code).then(res => {
  99. let data= res.data;
  100. if(data.code === 20000) {
  101. this.$store.commit("openId", data.data.openId);
  102. }
  103. })
  104. },
  105. // 获取微信code
  106. getWxCode() {
  107. let params = this.params;
  108. let commonUrl = process.env.VUE_APP_BASE_API;
  109. // todo 暂时去掉
  110. if(this.isRecharge) {
  111. // 如果是已经支付,但未激活,跳转激活界面
  112. this.$router.replace({
  113. name: 'cardActive',
  114. query: {
  115. imei: params.imei,
  116. iccid: params.iccid
  117. }
  118. })
  119. } else {
  120. let redUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/${params.routerName}?imei=${params.imei}&iccid=${params.iccid}`);
  121. let url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${AppId}&redirect_uri=${redUrl}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`;
  122. window.location.href = url;
  123. }
  124. },
  125. // 获取url传过来的参数
  126. getParams() {
  127. let params = this.$route.query;
  128. if (params) {
  129. console.log("params", params);
  130. this.params = {...params};
  131. this.$store.commit("appId", AppId);
  132. if(params.reqUrl) {
  133. const reqUrl = encodeURI(params.reqUrl);
  134. console.log("reqUrl", params.reqUrl, reqUrl);
  135. window.location.href = reqUrl;
  136. } else {
  137. console.log("不存在redUrl");
  138. this.checkBrowser();
  139. }
  140. console.log("this.params", this.params);
  141. }
  142. },
  143. }
  144. };
  145. </script>
  146. <style scoped lang="scss">
  147. </style>