天波h5前端应用
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

706 lines
28KB

  1. <!--
  2. * @Date: 2023-03-14 09:32:37
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-04-28 16:42: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. that.$toast.success({
  358. message: '支付成功'
  359. });
  360. } else {
  361. that.$router.replace({
  362. name: "payResult",
  363. query: {
  364. outTradeNo: that.outTradeNo,
  365. price: that.price,
  366. rechargeUrl: data.rechargeUrl,
  367. iccid: that.$route.query.iccid,
  368. isAdmin: that.$route.query.isAdmin || false,
  369. serialNo: that.$route.query.imei,
  370. issue: that.packageIssue
  371. }
  372. });
  373. }
  374. } else {
  375. that.$dialog.confirm({
  376. message: "您取消了支付",
  377. showCancelButton: false
  378. });
  379. }
  380. }
  381. );
  382. }
  383. if (typeof WeixinJSBridge == "undefined") {
  384. if (document.addEventListener) {
  385. document.addEventListener(
  386. "WeixinJSBridgeReady",
  387. onBridgeReady,
  388. false
  389. );
  390. } else if (document.attachEvent) {
  391. document.attachEvent("WeixinJSBridgeReady", onBridgeReady);
  392. document.attachEvent(
  393. "onWeixinJSBridgeReady",
  394. onBridgeReady
  395. );
  396. }
  397. } else {
  398. onBridgeReady();
  399. }
  400. },
  401. // 跳转到支付宝花呗外部链接
  402. aliPay(data) {
  403. console.log("选择了支付宝::", data);
  404. this.$toast.loading({
  405. message: "加载中"
  406. });
  407. let orderData = data;
  408. let that = this;
  409. let reqBody = {
  410. openId: this.$store.getters.openId, //openId
  411. imei: that.$route.query.imei, //imei
  412. iccid: that.$route.query.iccid,
  413. productId: this.payProductId, //套餐id
  414. pkId: data.packagesCardId,
  415. packageName: /* data.productModel + ',' + */data.packagesName, //套餐名字
  416. packagePayType: Number(this.payType), //支付类型
  417. packageIssue: this.packageIssue, //分期
  418. packagePrice: process.env.NODE_ENV === "production" ? data.packagesPrice * 100 : 1 //总金额单位为分,测试环境写死
  419. };
  420. this.$toast.clear();
  421. APICore.payLiveBaseDevice(reqBody)
  422. .then(res => {
  423. if (res.data.code === 104 || res.data.code === 106) {
  424. this.getAuth();
  425. setTimeout(() => {
  426. this.aliPay(orderData);
  427. }, 1000);
  428. }
  429. let alipayData = res.data.data.xmlStrMap;
  430. that.outTradeNo = alipayData.outTradeNo;
  431. let alipayForm = decodeURI(alipayData.payXmlStr);
  432. that.$store.commit("isFromWx", true);
  433. let alipayUserId = process.env.NODE_ENV === "production" ? 42 : 18;
  434. this.$router.replace({
  435. name: "payResult",
  436. query: {
  437. rechargeUrl:
  438. data.rechargeUrl ||
  439. `https://id.ssjlai.com/frontend/#/alipay`,
  440. outTradeNo: that.outTradeNo,
  441. price: that.price,
  442. alipayForm: alipayForm,
  443. iccid: that.$route.query.iccid,
  444. isAdmin: that.$route.query.isAdmin || false,
  445. serialNo: that.$route.query.imei,
  446. alipayUserId: alipayUserId,
  447. productId: this.payProductId
  448. }
  449. });
  450. })
  451. .catch(error => {
  452. console.log("error", error);
  453. this.$dialog.confirm({
  454. message: `${error.message}`,
  455. showCancelButton: false
  456. })
  457. })
  458. .finally(() => {
  459. this.$toast.clear();
  460. });
  461. },
  462. },
  463. created() {
  464. // 套餐列表
  465. this.getDevicePayPackage();
  466. },
  467. }
  468. </script>
  469. <style lang="scss">
  470. .package-buy-container {
  471. .van-tabs {
  472. min-height: 100vh;
  473. background: #fafafa;
  474. &.blue {
  475. background: #1890ff !important;
  476. }
  477. .van-tabs__wrap {
  478. height: 50px;
  479. width: 100%;
  480. .van-tabs__nav {
  481. .van-tab {
  482. @include center();
  483. padding: 0;
  484. span {
  485. color: #333333;
  486. font-size: 16px;
  487. padding: 4px;
  488. }
  489. &.van-tab--active {
  490. span {
  491. color: #1890ff;
  492. font-weight: 500;
  493. font-size: 16px;
  494. }
  495. }
  496. }
  497. }
  498. }
  499. }
  500. }
  501. </style>
  502. <style scoped lang="scss">
  503. .package-buy-container {
  504. height: 100vh;
  505. overflow: hidden;
  506. .package-container {
  507. height: calc(100vh - 88px);
  508. background: #fafafa;
  509. .refuel-package {
  510. height: calc(100vh - 88px);
  511. padding: 10px 20px;
  512. overflow: scroll;
  513. .refuel-item {
  514. padding: 10px;
  515. margin-bottom: 20px;
  516. background-color: #fff;
  517. border-top-right-radius: 5px;
  518. border-bottom-right-radius: 5px;
  519. border-top-left-radius: 3px;
  520. border-bottom-left-radius: 3px;
  521. border-left: 3px solid #1890ff;
  522. box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
  523. rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  524. p,
  525. span {
  526. font-size: 16px;
  527. }
  528. .title {
  529. text-align: left;
  530. padding-top: 10px;
  531. font-weight: 500;
  532. }
  533. .tips {
  534. margin-top: 10px;
  535. p {
  536. font-size: 14px;
  537. }
  538. }
  539. .bottom {
  540. padding-top: 20px;
  541. display: flex;
  542. justify-content: space-between;
  543. align-items: center;
  544. span {
  545. font-size: 20px;
  546. color: #fca842;
  547. font-weight: bold;
  548. .price-span {
  549. margin-left: 5px;
  550. font-size: 14px;
  551. }
  552. }
  553. .btn-button {
  554. height: 35px;
  555. width: 100px;
  556. @include center();
  557. background-color: #fca842;
  558. border-radius: 17px;
  559. p {
  560. font-size: 14px;
  561. color: #fff;
  562. }
  563. }
  564. }
  565. }
  566. }
  567. .base-package {
  568. height: calc(100vh - 88px);
  569. position: relative;
  570. .base-item {
  571. margin: 10px;
  572. z-index: 999;
  573. box-shadow: rgba(14, 30, 37, 0.12) 0 3px 5px 0,
  574. rgba(14, 30, 37, 0.32) 0 2px 16px 0;
  575. padding: 15px 10px;
  576. background-color: #fff;
  577. /* border-radius: 5px; */
  578. .title {
  579. display: flex;
  580. justify-content: flex-start;
  581. p {
  582. font-size: 16px;
  583. font-weight: bold;
  584. }
  585. }
  586. .details {
  587. display: flex;
  588. justify-content: flex-start;
  589. align-items: center;
  590. p {
  591. height: 40px;
  592. @include center();
  593. font-size: 14px;
  594. padding: 5px 0 5px 10px;
  595. }
  596. .total {
  597. font-size: 16px;
  598. padding: 0;
  599. }
  600. .orange {
  601. color: orange;
  602. }
  603. .large {
  604. font-size: 26px;
  605. margin: 0 2px;
  606. }
  607. .price {
  608. font-size: 16px;
  609. }
  610. /* .buy-btn {
  611. height: 30px;
  612. width: 100px;
  613. display: flex;
  614. justify-content: center;
  615. align-items: center;
  616. background: orange;
  617. border-radius: 45px;
  618. p {
  619. font-size: 16px;
  620. padding: 0;
  621. color: red;
  622. }
  623. } */
  624. }
  625. .remark {
  626. display: flex;
  627. justify-content: flex-start;
  628. p {
  629. font-size: 14px;
  630. padding: 5px 10px;
  631. /* font-weight: bold; */
  632. }
  633. }
  634. .package-buy {
  635. @include center();
  636. padding: 5px 8px;
  637. .buy-btn {
  638. height: 40px;
  639. width: 200px;
  640. padding: 0 5px;
  641. display: flex;
  642. justify-content: center;
  643. align-items: center;
  644. background: orange;
  645. border-radius: 20px;
  646. p {
  647. font-size: 16px;
  648. padding: 0;
  649. color: white;
  650. }
  651. }
  652. }
  653. .radios-con {
  654. /* padding: 20px 10px; */
  655. /* @include center(); */
  656. /* align-items: center; */
  657. padding: 10px 0 10px 10px;
  658. font-size: 14px;
  659. /* box-shadow: rgba(14, 30, 37, 0.12) 0 3px 5px 0,
  660. rgba(14, 30, 37, 0.32) 0 2px 16px 0; */
  661. img {
  662. height: 20px;
  663. width: 20px;
  664. margin: 2px;
  665. }
  666. .pay-type {
  667. text-align: left;
  668. p {
  669. font-size: 14px;
  670. padding: 0 0 10px 0;
  671. }
  672. }
  673. .radio-con {
  674. @include center();
  675. }
  676. .van-cell-text {
  677. display: flex;
  678. justify-content: flex-start;
  679. align-items: center;
  680. span {
  681. font-size: 14px;
  682. padding: 0 5px;
  683. }
  684. }
  685. }
  686. }
  687. .content {
  688. font-size: 14px;
  689. }
  690. }
  691. .data-null {
  692. height: calc(100vh - 88px);
  693. @include center();
  694. flex-direction: column;
  695. span {
  696. font-size: 14px;
  697. }
  698. }
  699. }
  700. }
  701. </style>