天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 line
5.5KB

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