天波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.4KB

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