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

708 line
28KB

  1. <!--
  2. * @Date: 2023-03-14 09:32:37
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-05-07 13:28:01
  5. * @FilePath: \TelpoH5FrontendWeb\src\views\package-buy\index.vue
  6. * @description:
  7. -->
  8. <template>
  9. <div class="package-buy-container">
  10. <van-nav-bar :left-arrow="true" title="套餐订购" :border="true" @click-left="onNavBack">
  11. <!-- <template #title>
  12. <h5 style="font-size: 16px">套餐订购</h5>
  13. </template> -->
  14. </van-nav-bar>
  15. <!-- 套餐内容 -->
  16. <div class="package-container">
  17. <van-tabs
  18. type="line"
  19. v-model="active"
  20. color="#1890ff"
  21. background="#fafafa"
  22. swipeable
  23. line-width="20%"
  24. line-height="4px"
  25. >
  26. <van-tab title="加油包">
  27. <div class="refuel-package" v-if="refuelPackageList.length > 0">
  28. <div
  29. class="refuel-item"
  30. v-for="(item, index) in refuelPackageList"
  31. :key="index"
  32. >
  33. <div class="title">
  34. <p>{{item.packagesName}}</p>
  35. </div>
  36. <div class="bottom">
  37. <span>
  38. {{item.packagesPrice}}
  39. <span class="price-span">元</span>
  40. </span>
  41. <div class="btn-button" @click="onBuyRefuel(item)">
  42. <p>立即订购</p>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. <div class="data-null" v-else>
  48. <img src="@/assets/img/news-noData.png" alt />
  49. <span>暂无加油包</span>
  50. </div>
  51. </van-tab>
  52. <van-tab title="基础套餐">
  53. <div class="base-package" v-if="basePackageList.length > 0">
  54. <div
  55. class="base-item"
  56. v-for="(item, index) in basePackageList"
  57. :key="index"
  58. >
  59. <div class="base-item-content">
  60. <!-- <div class="title">
  61. <p>{{item.packagesName}}</p>
  62. </div>-->
  63. <div class="remark">
  64. <p>每月200分钟通话时长,1G流量</p>
  65. </div>
  66. <div class="details">
  67. <p>
  68. <span
  69. class="orange large"
  70. >¥{{(item.packagesPrice/(item.packageIssue === 0 ? 1: item.packageIssue)).toFixed(0)}}</span>元/月,
  71. </p>
  72. <p class="total">
  73. <span>合计</span>
  74. <span class="orange price">{{item.packagesPrice}}元</span>
  75. </p>
  76. </div>
  77. <div class="radios-con">
  78. <div class="pay-type">
  79. <p>支付方式:</p>
  80. </div>
  81. <van-radio-group
  82. v-model="radio"
  83. direction="horizontal"
  84. @change="onRaidoChange"
  85. >
  86. <van-radio name="1">
  87. <template #default>
  88. <div class="radio-con">
  89. <span>微信</span>
  90. <img src="../../assets/wx-pay.png" />
  91. </div>
  92. </template>
  93. </van-radio>
  94. <van-radio name="2">
  95. <template #default>
  96. <div class="radio-con">
  97. <span>支付宝</span>
  98. <img src="../../assets/alipay.png" />
  99. </div>
  100. </template>
  101. </van-radio>
  102. <van-radio name="3">
  103. <template #default>
  104. <div class="radio-con">
  105. <span>12期花呗</span>
  106. <img src="../../assets/antpay.png" />
  107. </div>
  108. </template>
  109. </van-radio>
  110. </van-radio-group>
  111. </div>
  112. <div class="package-buy">
  113. <div class="buy-btn" @click="onBuyBase(item)">
  114. <p>套餐订购</p>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. <div class="data-null" v-else>
  121. <img src="@/assets/img/news-noData.png" alt />
  122. <span>暂无基础套餐</span>
  123. </div>
  124. </van-tab>
  125. </van-tabs>
  126. </div>
  127. </div>
  128. </template>
  129. <script>
  130. import APICore from "@/api/core";
  131. import APIWx from "@/api/wx";
  132. import AppId from "@/config/appId";
  133. import { APIPay } from "@/api/pay";
  134. let wx = require("weixin-js-sdk"); // TODO 再封装,可拦截错误提示等操作
  135. export default {
  136. name:'',
  137. data(){
  138. return {
  139. basePackageList: [], //基础套餐
  140. refuelPackageList: [], //加油包
  141. outTradeNo: "", //订单号
  142. price: "", //价格,
  143. isShowNoData: false, //是否显示无套餐内容, 默认false
  144. radio: '1', //支付方式单选按钮默认值
  145. payProductId: null, //套餐id
  146. packageIssue: null, //套餐分期
  147. payType: '1', //支付方式 1 微信, 2 支付宝,支付宝又分为花呗和全额支付,全额支付分期数传0 或者1 ,花呗则传 3 6 12
  148. active: 0, //tabs默认选择的下标
  149. }
  150. },
  151. methods: {
  152. onNavBack() {
  153. this.$router.replace({
  154. name: "cardInfo",
  155. query: { imei: this.$route.query.imei, iccid: this.$route.query.iccid, isShowMenu: true, isHasCode: true}
  156. });
  157. },
  158. // 获取core token
  159. getAuth() {
  160. let manufactorId = "5bf13062-a41e-4d00-ba14-1101aad12650";
  161. APICore.getAuth({ manufactorId: manufactorId }).then(res => {
  162. this.$store.commit("gatewayToken", res.data.data);
  163. });
  164. },
  165. // 获取微信授权
  166. getWxAutograph(){
  167. let that = this;
  168. return new Promise((resolve, reject) => {
  169. APIWx.createJSSDK({
  170. sUrl: window.location.href.split("#")[0],
  171. userId: '',
  172. appId: AppId
  173. })
  174. .then(res => {
  175. let item = res.data.data;
  176. wx.config({
  177. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  178. appId: item.appId, // 必填,公众号的唯一标识
  179. timestamp: item.timeStamp, // 必填,生成签名的时间戳
  180. nonceStr: item.nonceStr, // 必填,生成签名的随机串
  181. signature: item.signature, // 必填,签名
  182. jsApiList: ["chooseWXPay"] // 必填,需要使用的JS接口列表
  183. });
  184. wx.ready(() => {
  185. resolve(true);
  186. });
  187. })
  188. .catch(err => {
  189. reject(false);
  190. console.log(err);
  191. });
  192. });
  193. },
  194. // 获取套餐列表数据
  195. getDevicePayPackage() {
  196. this.$toast.loading({
  197. message: "加载中",
  198. duration: 1500
  199. });
  200. APICore.devicePayPackage(this.$route.query.imei)
  201. .then(res => {
  202. console.log("data", res.data);
  203. if (res.data.code === 106 || res.data.code === 104) {
  204. // token过期
  205. this.getAuth();
  206. setTimeout(() => {
  207. this.getDevicePayPackage();
  208. }, 1500);
  209. } else if (res.data.code === 0 && res.data.data === null) {
  210. this.isShowNoData = true;
  211. } else {
  212. if(res.data.data === null) {
  213. this.isShowNoData = false;
  214. } else {
  215. let data = res.data.data.packagesList;
  216. // 处理获取套餐的逻辑
  217. // 筛选 基础套餐,producModelId 1 是基础套餐;2 是加油包
  218. this.basePackageList = data.filter(item => {
  219. return item.producModelId === 1
  220. });
  221. this.refuelPackageList = data.filter(item => {
  222. return item.producModelId === 2
  223. });
  224. }
  225. this.$toast.success({
  226. message: "加载完成",
  227. duration: 1500
  228. });
  229. }
  230. })
  231. .catch(error => {
  232. this.$dialog.confirm({
  233. title: "获取套餐数据失败",
  234. message: error.message,
  235. showCancelButton: false,
  236. });
  237. })
  238. .finally(() => {
  239. setTimeout(() => {
  240. this.$toast.clear();
  241. }, 1500);
  242. });
  243. },
  244. // 购买加油包
  245. onBuyRefuel(data){
  246. console.log("加油包", data);
  247. this.price = data.packagesPrice;
  248. this.wxPay(data,1);
  249. },
  250. // 购买基础套餐
  251. onBuyBase(data) {
  252. console.log("基础包", data);
  253. this.price = data.packagesPrice;
  254. let payTypeToPackAgeId = data.payTypeList;
  255. if (this.payType == '2') {
  256. // 全额
  257. this.payProductId = payTypeToPackAgeId.filter(item => {
  258. return item.payType == '2'
  259. })[0].productId;
  260. this.packageIssue = 0;
  261. console.log("this.payProductId", this.payProductId);
  262. this.aliPay(data);
  263. } else if (this.payType == '3') {
  264. // 分期
  265. this.payProductId = payTypeToPackAgeId.filter(item => {
  266. return item.payType == '3'
  267. })[0].productId;
  268. this.packageIssue = 12;
  269. this.payType = '2';
  270. console.log("this.payProductId2", this.payProductId);
  271. this.aliPay(data);
  272. } else {
  273. // 微信
  274. let openId = this.$store.getters.openId;
  275. this.payProductId = payTypeToPackAgeId.filter(item => {
  276. return item.payType == '1'
  277. })[0].productId;
  278. this.packageIssue = 0;
  279. console.log("this.payProductId3", this.payProductId);
  280. if(openId === null || openId === 'null') {
  281. this.$dialog.confirm({
  282. message: '获取OpenId失败,请您重新进入',
  283. showCancelButton: false,
  284. })
  285. } else {
  286. this.wxPay(data);
  287. }
  288. }
  289. },
  290. // 支付类型切换
  291. onRaidoChange(value) {
  292. console.log("选择的支付类型是", value);
  293. this.payType = value;
  294. },
  295. // 微信支付
  296. wxPay(data, packageType) {
  297. let that = this;
  298. const orderData = data;
  299. console.log("orderData", orderData);
  300. let reqBody = {
  301. openId: this.$store.getters.openId, //openId
  302. imei: that.$route.query.imei, //imei
  303. iccid: that.$route.query.iccid,
  304. productId: orderData.payTypeList[0].productId, //套餐id
  305. packageName:
  306. orderData.productModel + "," + orderData.packagesName, //套餐名字
  307. packagePayType: '1', //支付类型, 默认微信
  308. pkId: data.packagesCardId,
  309. packageIssue: orderData.packageIssue, //分期
  310. packagePrice: orderData.packagesPrice * 100
  311. };
  312. // 1.获取微信预下单Id
  313. APICore.payLiveBaseDevice(reqBody)
  314. .then(res => {
  315. if (res.data.code === 104 || res.data.code === 106) {
  316. this.getAuth();
  317. setTimeout(() => {
  318. this.wxPay(orderData);
  319. }, 1000);
  320. } else if ( res.data.code !== 0){
  321. return this.$dialog.confirm({
  322. message: `请反馈给一线人员,\n${res.data.message},或者请您重新进入`,
  323. showCancelButton: false
  324. })
  325. }
  326. let wxData = res.data.data;
  327. let outTradeNo = wxData.out_trade_no;
  328. that.outTradeNo = wxData.out_trade_no;
  329. //this.checkWxPayResult(outTradeNo);
  330. //this.closeTime();
  331. // 调起微信支付收银台
  332. this.onWxPay(wxData,packageType);
  333. })
  334. .catch(error => {
  335. console.log("error", error);
  336. })
  337. },
  338. onWxPay(data,packageType) {
  339. let that = this;
  340. function onBridgeReady() {
  341. WeixinJSBridge.invoke(
  342. "getBrandWCPayRequest",
  343. {
  344. appId: AppId, //公众号ID,由商户传入
  345. timeStamp: data.timeStamp, //时间戳,自1970年以来的秒数
  346. nonceStr: data.nonceStr, //随机串
  347. package: data.package,
  348. signType: data.signType, //微信签名方式:
  349. paySign: data.paySign //微信签名
  350. },
  351. function(res) {
  352. if (res.err_msg == "get_brand_wcpay_request:ok") {
  353. // 使用以上方式判断前端返回,微信团队郑重提示:
  354. //res.err_msg将在用户支付成功后返回ok,但并不保证它绝对可靠。
  355. if(packageType === 1) {
  356. // 加油包不用跳转,直接提示支付成功
  357. // 2023.06.09 修改充值成功提示如下:
  358. that.$toast.success({
  359. message: '充值成功,请重启设备后,恢复正常使用。'
  360. });
  361. } else {
  362. that.$router.replace({
  363. name: "payResult",
  364. query: {
  365. outTradeNo: that.outTradeNo,
  366. price: that.price,
  367. rechargeUrl: data.rechargeUrl,
  368. iccid: that.$route.query.iccid,
  369. isAdmin: that.$route.query.isAdmin || false,
  370. serialNo: that.$route.query.imei,
  371. issue: that.packageIssue
  372. }
  373. });
  374. }
  375. } else {
  376. let cancelMessage = packageType === 1 ? '立即订购': '套餐订购'
  377. that.$dialog.confirm({
  378. message: `请点击“${cancelMessage}”支付`,
  379. showCancelButton: false
  380. });
  381. }
  382. }
  383. );
  384. }
  385. if (typeof WeixinJSBridge == "undefined") {
  386. if (document.addEventListener) {
  387. document.addEventListener(
  388. "WeixinJSBridgeReady",
  389. onBridgeReady,
  390. false
  391. );
  392. } else if (document.attachEvent) {
  393. document.attachEvent("WeixinJSBridgeReady", onBridgeReady);
  394. document.attachEvent(
  395. "onWeixinJSBridgeReady",
  396. onBridgeReady
  397. );
  398. }
  399. } else {
  400. onBridgeReady();
  401. }
  402. },
  403. // 跳转到支付宝花呗外部链接
  404. aliPay(data) {
  405. console.log("选择了支付宝::", data);
  406. this.$toast.loading({
  407. message: "加载中"
  408. });
  409. let orderData = data;
  410. let that = this;
  411. let reqBody = {
  412. openId: this.$store.getters.openId, //openId
  413. imei: that.$route.query.imei, //imei
  414. iccid: that.$route.query.iccid,
  415. productId: this.payProductId, //套餐id
  416. pkId: data.packagesCardId,
  417. packageName: /* data.productModel + ',' + */data.packagesName, //套餐名字
  418. packagePayType: Number(this.payType), //支付类型
  419. packageIssue: this.packageIssue, //分期
  420. packagePrice: process.env.NODE_ENV === "production" ? data.packagesPrice * 100 : 1 //总金额单位为分,测试环境写死
  421. };
  422. this.$toast.clear();
  423. APICore.payLiveBaseDevice(reqBody)
  424. .then(res => {
  425. if (res.data.code === 104 || res.data.code === 106) {
  426. this.getAuth();
  427. setTimeout(() => {
  428. this.aliPay(orderData);
  429. }, 1000);
  430. }
  431. let alipayData = res.data.data.xmlStrMap;
  432. that.outTradeNo = alipayData.outTradeNo;
  433. let alipayForm = decodeURI(alipayData.payXmlStr);
  434. that.$store.commit("isFromWx", true);
  435. let alipayUserId = process.env.NODE_ENV === "production" ? 42 : 18;
  436. this.$router.replace({
  437. name: "payResult",
  438. query: {
  439. rechargeUrl:
  440. data.rechargeUrl ||
  441. `https://id.ssjlai.com/frontend/#/alipay`,
  442. outTradeNo: that.outTradeNo,
  443. price: that.price,
  444. alipayForm: alipayForm,
  445. iccid: that.$route.query.iccid,
  446. isAdmin: that.$route.query.isAdmin || false,
  447. serialNo: that.$route.query.imei,
  448. alipayUserId: alipayUserId,
  449. productId: this.payProductId
  450. }
  451. });
  452. })
  453. .catch(error => {
  454. console.log("error", error);
  455. this.$dialog.confirm({
  456. message: `${error.message}`,
  457. showCancelButton: false
  458. })
  459. })
  460. .finally(() => {
  461. this.$toast.clear();
  462. });
  463. },
  464. },
  465. created() {
  466. // 套餐列表
  467. this.getDevicePayPackage();
  468. },
  469. }
  470. </script>
  471. <style lang="scss">
  472. .package-buy-container {
  473. .van-tabs {
  474. min-height: 100vh;
  475. background: #fafafa;
  476. &.blue {
  477. background: #1890ff !important;
  478. }
  479. .van-tabs__wrap {
  480. height: 50px;
  481. width: 100%;
  482. .van-tabs__nav {
  483. .van-tab {
  484. @include center();
  485. padding: 0;
  486. span {
  487. color: #333333;
  488. font-size: 16px;
  489. padding: 4px;
  490. }
  491. &.van-tab--active {
  492. span {
  493. color: #1890ff;
  494. font-weight: 500;
  495. font-size: 16px;
  496. }
  497. }
  498. }
  499. }
  500. }
  501. }
  502. }
  503. </style>
  504. <style scoped lang="scss">
  505. .package-buy-container {
  506. height: 100vh;
  507. overflow: hidden;
  508. .package-container {
  509. height: calc(100vh - 88px);
  510. background: #fafafa;
  511. .refuel-package {
  512. height: calc(100vh - 88px);
  513. padding: 10px 20px;
  514. overflow: scroll;
  515. .refuel-item {
  516. padding: 10px;
  517. margin-bottom: 20px;
  518. background-color: #fff;
  519. border-top-right-radius: 5px;
  520. border-bottom-right-radius: 5px;
  521. border-top-left-radius: 3px;
  522. border-bottom-left-radius: 3px;
  523. border-left: 3px solid #1890ff;
  524. box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
  525. rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  526. p,
  527. span {
  528. font-size: 16px;
  529. }
  530. .title {
  531. text-align: left;
  532. padding-top: 10px;
  533. font-weight: 500;
  534. }
  535. .tips {
  536. margin-top: 10px;
  537. p {
  538. font-size: 14px;
  539. }
  540. }
  541. .bottom {
  542. padding-top: 20px;
  543. display: flex;
  544. justify-content: space-between;
  545. align-items: center;
  546. span {
  547. font-size: 20px;
  548. color: #fca842;
  549. font-weight: bold;
  550. .price-span {
  551. margin-left: 5px;
  552. font-size: 14px;
  553. }
  554. }
  555. .btn-button {
  556. height: 35px;
  557. width: 100px;
  558. @include center();
  559. background-color: #fca842;
  560. border-radius: 17px;
  561. p {
  562. font-size: 14px;
  563. color: #fff;
  564. }
  565. }
  566. }
  567. }
  568. }
  569. .base-package {
  570. height: calc(100vh - 88px);
  571. position: relative;
  572. .base-item {
  573. margin: 10px;
  574. z-index: 999;
  575. box-shadow: rgba(14, 30, 37, 0.12) 0 3px 5px 0,
  576. rgba(14, 30, 37, 0.32) 0 2px 16px 0;
  577. padding: 15px 10px;
  578. background-color: #fff;
  579. /* border-radius: 5px; */
  580. .title {
  581. display: flex;
  582. justify-content: flex-start;
  583. p {
  584. font-size: 16px;
  585. font-weight: bold;
  586. }
  587. }
  588. .details {
  589. display: flex;
  590. justify-content: flex-start;
  591. align-items: center;
  592. p {
  593. height: 40px;
  594. @include center();
  595. font-size: 14px;
  596. padding: 5px 0 5px 10px;
  597. }
  598. .total {
  599. font-size: 16px;
  600. padding: 0;
  601. }
  602. .orange {
  603. color: orange;
  604. }
  605. .large {
  606. font-size: 26px;
  607. margin: 0 2px;
  608. }
  609. .price {
  610. font-size: 16px;
  611. }
  612. /* .buy-btn {
  613. height: 30px;
  614. width: 100px;
  615. display: flex;
  616. justify-content: center;
  617. align-items: center;
  618. background: orange;
  619. border-radius: 45px;
  620. p {
  621. font-size: 16px;
  622. padding: 0;
  623. color: red;
  624. }
  625. } */
  626. }
  627. .remark {
  628. display: flex;
  629. justify-content: flex-start;
  630. p {
  631. font-size: 14px;
  632. padding: 5px 10px;
  633. /* font-weight: bold; */
  634. }
  635. }
  636. .package-buy {
  637. @include center();
  638. padding: 5px 8px;
  639. .buy-btn {
  640. height: 40px;
  641. width: 200px;
  642. padding: 0 5px;
  643. display: flex;
  644. justify-content: center;
  645. align-items: center;
  646. background: orange;
  647. border-radius: 20px;
  648. p {
  649. font-size: 16px;
  650. padding: 0;
  651. color: white;
  652. }
  653. }
  654. }
  655. .radios-con {
  656. /* padding: 20px 10px; */
  657. /* @include center(); */
  658. /* align-items: center; */
  659. padding: 10px 0 10px 10px;
  660. font-size: 14px;
  661. /* box-shadow: rgba(14, 30, 37, 0.12) 0 3px 5px 0,
  662. rgba(14, 30, 37, 0.32) 0 2px 16px 0; */
  663. img {
  664. height: 20px;
  665. width: 20px;
  666. margin: 2px;
  667. }
  668. .pay-type {
  669. text-align: left;
  670. p {
  671. font-size: 14px;
  672. padding: 0 0 10px 0;
  673. }
  674. }
  675. .radio-con {
  676. @include center();
  677. }
  678. .van-cell-text {
  679. display: flex;
  680. justify-content: flex-start;
  681. align-items: center;
  682. span {
  683. font-size: 14px;
  684. padding: 0 5px;
  685. }
  686. }
  687. }
  688. }
  689. .content {
  690. font-size: 14px;
  691. }
  692. }
  693. .data-null {
  694. height: calc(100vh - 88px);
  695. @include center();
  696. flex-direction: column;
  697. span {
  698. font-size: 14px;
  699. }
  700. }
  701. }
  702. }
  703. </style>