天波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ů.

200 lines
8.4KB

  1. <!--
  2. * @Date: 2023-02-24 14:18:25
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-10-30 14:51:45
  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. isHasBasePackage: null, //是否存在基础套餐
  25. whiteTitleList: ['小台风', '零川'], //白名单物联网卡列表
  26. currentIotTitle: '', //当前设备所属物联网名字
  27. };
  28. },
  29. created() {
  30. this.getAuth();
  31. },
  32. mounted() {
  33. this.getParams();
  34. },
  35. methods: {
  36. // 2023.09.20 修改需求 进入首页同时查套餐和充值状态
  37. // 1.无基础套餐卡不是零川或者小台风,跳转错误页面
  38. // 2.无基础套餐卡但是零川或者小台风,跳转话费查询页面
  39. // 3.如果有基础套餐并且已充值,跳转费查询页面
  40. // 4.如果有基础套餐但未充值,跳转套餐充值页面
  41. getDevicePayPackage() {
  42. APICore.devicePayPackage(this.params.imei)
  43. .then(res => {
  44. let data = res.data;
  45. if (data.code === 106 || data.code === 104) {
  46. this.getAuth();
  47. setTimeout(() => {
  48. this.getDevicePayPackage();
  49. }, 1500);
  50. } else {
  51. // 筛选是否存在基础套餐, producModelId = 1 是基础套餐, 2 是加油包
  52. this.isHasBasePackage = data.data.packagesList.some(res => {
  53. return res.producModelId === 1;
  54. });
  55. }
  56. }).catch(() => {})
  57. },
  58. checkImei() {
  59. let reqBody = {
  60. imei: this.params.imei,
  61. iccid: this.params.iccid || ''
  62. };
  63. APIWx.CheckImei(reqBody).then(res =>{
  64. this.isRecharge = res.data.isRecharge;
  65. this.currentIotTitle = res.data.title;
  66. this.getWxCode();
  67. }).catch(e => {
  68. console.log("e", e.message);
  69. })
  70. },
  71. // checkBrowser 检查扫码的浏览器内核
  72. checkBrowser() {
  73. const userAgent = window.navigator.userAgent;
  74. console.log("浏览器内核", userAgent);
  75. if (/AlipayClient/.test(userAgent)) {
  76. console.log("支付宝");
  77. } else if (/MicroMessenger/.test(userAgent)) {
  78. console.log("微信");
  79. let url = window.location.href.split("?code=")[1];
  80. console.log("获取授权code的url", url);
  81. this.getWxCode();
  82. /* if (
  83. isNotNull(url) ||
  84. window.location.href.indexOf("code") > -1
  85. ) {
  86. let timeStamp = new Date().getTime();
  87. let code = url.split("&")[0];
  88. console.log("code", code);
  89. if (isNotNull(code)) {
  90. this.getWxCode();
  91. }
  92. } else {
  93. this.getWxCode();
  94. } */
  95. } else {
  96. this.getWxCode();
  97. console.log("当前浏览器内核并非支付宝或者微信");
  98. }
  99. },
  100. // 获取b端接口的token
  101. getAuth() {
  102. let manufactorId = "5bf13062-a41e-4d00-ba14-1101aad12650";
  103. APICore.getAuth({ manufactorId: manufactorId }).then(res => {
  104. this.$store.commit("gatewayToken", res.data.data);
  105. });
  106. },
  107. // 获取token
  108. getToken() {
  109. let manufacturerNo = '9f166b07-ff83-4991-84dc-ca6ad4a6b95b';
  110. APIPay.getToken(manufacturerNo).then(res => {
  111. console.log("token的数据", res.data)
  112. let data = res.data;
  113. if(data.code === 20000) {
  114. this.$store.commit("token", data.token);
  115. console.log("token的数据", localStorage.getItem('token'))
  116. }
  117. })
  118. },
  119. // 根据code获取openId
  120. getOpenId(code) {
  121. //let code = this.$store.getters.wxAuthCode;
  122. APIPay.getOpenId(code).then(res => {
  123. let data= res.data;
  124. if(data.code === 20000) {
  125. this.$store.commit("openId", data.data.openId);
  126. }
  127. })
  128. },
  129. // 获取微信code
  130. getWxCode() {
  131. let params = this.params;
  132. let commonUrl = process.env.VUE_APP_BASE_API;
  133. let isWhiteTitle = this.whiteTitleList.includes(this.currentIotTitle) > 0;
  134. let cardInfoBaseUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/cardInfo?imei=${params.imei}&iccid=${params.iccid}`);
  135. let toupBaseUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/${params.routerName}?imei=${params.imei}&iccid=${params.iccid}`);
  136. if(this.isHasBasePackage) {
  137. // 有套餐
  138. if(this.isRecharge) {
  139. // 已支付,跳转话费查询页面
  140. console.log("有套餐跳转话费查询页面");
  141. let wxRedUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${AppId}&redirect_uri=${cardInfoBaseUrl}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`;
  142. window.location.href = wxRedUrl;
  143. } else if (!this.isRecharge) {
  144. // 未支付, 跳转套餐充值页面
  145. console.log("跳转套餐充值页面");
  146. let wxRedUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${AppId}&redirect_uri=${toupBaseUrl}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`;
  147. window.location.href = wxRedUrl;
  148. }
  149. } else {
  150. // 无套餐
  151. if(isWhiteTitle) {
  152. // 是零川或者小台风,跳转话费查询页面
  153. let wxRedUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${AppId}&redirect_uri=${cardInfoBaseUrl}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`;
  154. window.location.href = wxRedUrl;
  155. console.log("无套餐跳转话费查询页面");
  156. } else {
  157. // 跳转错误页面;
  158. this.$router.replace({
  159. name: 'iotcardError'
  160. })
  161. console.log("跳转错误页面");
  162. }
  163. }
  164. // 2023.09.20 废弃
  165. /* if(this.isRecharge) {
  166. let redUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/cardInfo?imei=${params.imei}&iccid=${params.iccid}`);
  167. 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`;
  168. window.location.href = url;
  169. } else {
  170. let redUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/${params.routerName}?imei=${params.imei}&iccid=${params.iccid}`);
  171. 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`;
  172. window.location.href = url;
  173. } */
  174. },
  175. // 获取url传过来的参数
  176. getParams() {
  177. let params = this.$route.query;
  178. if (params) {
  179. this.params = {...params};
  180. this.$store.commit("appId", AppId);
  181. if(params.reqUrl) {
  182. const reqUrl = encodeURI(params.reqUrl);
  183. window.location.href = reqUrl;
  184. } else {
  185. this.getDevicePayPackage();
  186. this.checkImei();
  187. }
  188. }
  189. },
  190. }
  191. };
  192. </script>
  193. <style scoped lang="scss">
  194. </style>