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

671 lines
27KB

  1. <!--
  2. * @Date: 2023-03-14 09:32:37
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-03-14 11:35:43
  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="false" :border="true">
  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. // 获取core token
  153. getAuth() {
  154. let manufactorId = "5bf13062-a41e-4d00-ba14-1101aad12650";
  155. APICore.getAuth({ manufactorId: manufactorId }).then(res => {
  156. this.$store.commit("gatewayToken", res.data.data);
  157. });
  158. },
  159. // 获取微信授权
  160. getWxAutograph(){
  161. let that = this;
  162. return new Promise((resolve, reject) => {
  163. APIWx.createJSSDK({
  164. sUrl: window.location.href.split("#")[0],
  165. userId: '',
  166. appId: AppId
  167. })
  168. .then(res => {
  169. let item = res.data.data;
  170. wx.config({
  171. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  172. appId: item.appId, // 必填,公众号的唯一标识
  173. timestamp: item.timeStamp, // 必填,生成签名的时间戳
  174. nonceStr: item.nonceStr, // 必填,生成签名的随机串
  175. signature: item.signature, // 必填,签名
  176. jsApiList: ["chooseWXPay"] // 必填,需要使用的JS接口列表
  177. });
  178. wx.ready(() => {
  179. resolve(true);
  180. });
  181. })
  182. .catch(err => {
  183. reject(false);
  184. console.log(err);
  185. });
  186. });
  187. },
  188. // 获取套餐列表数据
  189. getDevicePayPackage() {
  190. this.$toast.loading({
  191. message: "加载中",
  192. duration: 1500
  193. });
  194. APICore.devicePayPackage(this.$route.query.imei)
  195. .then(res => {
  196. console.log("data", res.data);
  197. if (res.data.code === 106 || res.data.code === 104) {
  198. // token过期
  199. this.getAuth();
  200. setTimeout(() => {
  201. this.getDevicePayPackage();
  202. }, 1500);
  203. } else if (res.data.code === 0 && res.data.data === null) {
  204. this.isShowNoData = true;
  205. } else {
  206. if(res.data.data === null) {
  207. this.isShowNoData = false;
  208. } else {
  209. let data = res.data.data.packagesList;
  210. // 处理获取套餐的逻辑
  211. // 筛选 基础套餐,producModelId 1 是基础套餐;2 是加油包
  212. this.basePackageList = data.filter(item => {
  213. return item.producModelId === 1
  214. });
  215. this.refuelPackageList = data.filter(item => {
  216. return item.producModelId === 2
  217. });
  218. }
  219. this.$toast.success({
  220. message: "加载完成",
  221. duration: 1500
  222. });
  223. }
  224. })
  225. .catch(error => {
  226. this.$dialog.confirm({
  227. title: "获取套餐数据失败",
  228. message: error.message,
  229. showCancelButton: false,
  230. });
  231. })
  232. .finally(() => {
  233. setTimeout(() => {
  234. this.$toast.clear();
  235. }, 1500);
  236. });
  237. },
  238. // 购买加油包
  239. onBuyRefuel(data){
  240. console.log("加油包", data);
  241. this.price = data.packagesPrice;
  242. this.wxPay(data,1);
  243. },
  244. // 购买基础套餐
  245. onBuyBase(data) {
  246. console.log("基础包", data);
  247. this.price = data.packagesPrice;
  248. let payTypeToPackAgeId = data.payTypeList;
  249. if (this.payType === '2') {
  250. // 全额
  251. this.payProductId = payTypeToPackAgeId.filter(item => {
  252. return item.payType === '2'
  253. })[0].productId;
  254. this.packageIssue = 0;
  255. console.log("this.payProductId", this.payProductId);
  256. this.aliPay(data);
  257. } else if (this.payType === '3') {
  258. // 分期
  259. this.payProductId = payTypeToPackAgeId.filter(item => {
  260. return item.payType === '3'
  261. })[0].productId;
  262. this.packageIssue = 12;
  263. this.payType = '2';
  264. console.log("this.payProductId2", this.payProductId);
  265. this.aliPay(data);
  266. } else {
  267. // 微信
  268. let openId = this.$store.getters.openId;
  269. this.payProductId = payTypeToPackAgeId.filter(item => {
  270. return item.payType === '1'
  271. })[0].productId;
  272. this.packageIssue = 0;
  273. console.log("this.payProductId3", this.payProductId);
  274. if(openId === null || openId === 'null') {
  275. this.$dialog.confirm({
  276. message: '获取OpenId失败,请您重新进入',
  277. showCancelButton: false,
  278. })
  279. } else {
  280. this.wxPay(data);
  281. }
  282. }
  283. },
  284. // 支付类型切换
  285. onRaidoChange(value) {
  286. console.log("选择的支付类型是", value);
  287. this.payType = value;
  288. },
  289. // 微信支付
  290. wxPay(data, packageType) {
  291. let that = this;
  292. const orderData = data;
  293. let reqBody = {
  294. openId: this.$store.getters.openId, //openId
  295. imei: that.$route.query.imei, //imei
  296. productId: orderData.packagesId, //套餐id
  297. packageName:
  298. orderData.productModel + "," + orderData.packagesName, //套餐名字
  299. packagePayType: '1', //支付类型, 默认微信
  300. packageIssue: orderData.packageIssue, //分期
  301. packagePrice: orderData.packagesPrice * 100
  302. };
  303. // 1.获取微信预下单Id
  304. APICore.payLiveBaseDevice(reqBody)
  305. .then(res => {
  306. if (res.data.code === 104 || res.data.code === 106) {
  307. this.getAuth();
  308. setTimeout(() => {
  309. this.wxPay(orderData);
  310. }, 1000);
  311. }
  312. let wxData = res.data.data;
  313. let outTradeNo = wxData.out_trade_no;
  314. that.outTradeNo = wxData.out_trade_no;
  315. //this.checkWxPayResult(outTradeNo);
  316. //this.closeTime();
  317. // 调起微信支付收银台
  318. wx.chooseWXPay({
  319. timestamp: wxData.timeStamp, // 支付签名时间戳,注意微信 jssdk 中的所有使用 timestamp 字段均为小写。但最新版的支付后台生成签名使用的 timeStamp 字段名需大写其中的 S 字符
  320. nonceStr: wxData.nonceStr, // 支付签名随机串,不长于 32 位
  321. package: wxData.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
  322. signType: wxData.signType, // 微信支付V3的传入 RSA ,微信支付V2的传入格式与V2统一下单的签名格式保持一致
  323. paySign: wxData.paySign, // 支付签名
  324. success: function(res) {
  325. console.log("微信支付成功::", res);
  326. if(packageType === 1) {
  327. // 加油包不用跳转,直接提示支付成功
  328. that.$toast.success({
  329. message: '支付成功'
  330. });
  331. } else {
  332. // 套餐订购,跳转查询页面
  333. that.$router.replace({
  334. name: "payResult",
  335. query: {
  336. outTradeNo: that.outTradeNo,
  337. price: that.price,
  338. rechargeUrl: data.rechargeUrl,
  339. iccid: that.$route.query.iccid,
  340. isAdmin: that.$route.query.isAdmin || false,
  341. serialNo: that.$route.query.imei,
  342. issue: that.packageIssue
  343. }
  344. });
  345. }
  346. },
  347. fail: err => {
  348. console.log("支付出错了::", err);
  349. that.$dialog.confirm({
  350. title: "支付失败",
  351. message: "出错了,请您联系管理员"
  352. });
  353. },
  354. cancel: function(err) {
  355. // 用户取消支付
  356. that.$dialog.confirm({
  357. message: "您取消了支付"
  358. });
  359. }
  360. });
  361. })
  362. .catch(error => {
  363. console.log("error", error);
  364. })
  365. },
  366. // 跳转到支付宝花呗外部链接
  367. aliPay(data) {
  368. console.log("选择了支付宝::", data);
  369. this.$toast.loading({
  370. message: "加载中"
  371. });
  372. let orderData = data;
  373. let that = this;
  374. let reqBody = {
  375. openId: this.$store.getters.openId, //openId
  376. imei: that.$route.query.imei, //imei
  377. productId: this.payProductId, //套餐id
  378. packageName: /* data.productModel + ',' + */data.packagesName, //套餐名字
  379. packagePayType: Number(this.payType), //支付类型
  380. packageIssue: this.packageIssue, //分期
  381. packagePrice: process.env.NODE_ENV === "production" ? data.packagesPrice * 100 : 1 //总金额单位为分,测试环境写死
  382. };
  383. this.$toast.clear();
  384. APICore.payLiveBaseDevice(reqBody)
  385. .then(res => {
  386. if (res.data.code === 104 || res.data.code === 106) {
  387. this.getAuth();
  388. setTimeout(() => {
  389. this.aliPay(orderData);
  390. }, 1000);
  391. }
  392. let alipayData = res.data.data.xmlStrMap;
  393. that.outTradeNo = alipayData.outTradeNo;
  394. let alipayForm = decodeURI(alipayData.payXmlStr);
  395. that.$store.commit("isFromWx", true);
  396. let alipayUserId = process.env.NODE_ENV === "production" ? 42 : 18;
  397. this.$router.replace({
  398. name: "payResult",
  399. query: {
  400. rechargeUrl:
  401. data.rechargeUrl ||
  402. `https://id.ssjlai.com/frontend/#/alipay`,
  403. outTradeNo: that.outTradeNo,
  404. price: that.price,
  405. alipayForm: alipayForm,
  406. iccid: that.$route.query.iccid,
  407. isAdmin: that.$route.query.isAdmin || false,
  408. serialNo: that.$route.query.imei,
  409. alipayUserId: alipayUserId,
  410. productId: this.payProductId
  411. }
  412. });
  413. })
  414. .catch(error => {
  415. console.log("error", error);
  416. this.$dialog.confirm({
  417. message: `${error.message}`,
  418. showCancelButton: false
  419. })
  420. })
  421. .finally(() => {
  422. this.$toast.clear();
  423. });
  424. },
  425. },
  426. created() {
  427. /* this.getAuth(); */
  428. this.getWxAutograph();
  429. // 套餐列表
  430. this.getDevicePayPackage();
  431. },
  432. }
  433. </script>
  434. <style lang="scss">
  435. .package-buy-container {
  436. .van-tabs {
  437. min-height: 100vh;
  438. background: #fafafa;
  439. &.blue {
  440. background: #1890ff !important;
  441. }
  442. .van-tabs__wrap {
  443. height: 50px;
  444. width: 100%;
  445. .van-tabs__nav {
  446. .van-tab {
  447. @include center();
  448. padding: 0;
  449. span {
  450. color: #333333;
  451. font-size: 16px;
  452. padding: 4px;
  453. }
  454. &.van-tab--active {
  455. span {
  456. color: #1890ff;
  457. font-weight: 500;
  458. font-size: 16px;
  459. }
  460. }
  461. }
  462. }
  463. }
  464. }
  465. }
  466. </style>
  467. <style scoped lang="scss">
  468. .package-buy-container {
  469. height: 100vh;
  470. overflow: hidden;
  471. .package-container {
  472. height: calc(100vh - 88px);
  473. background: #fafafa;
  474. .refuel-package {
  475. height: calc(100vh - 88px);
  476. padding: 10px 20px;
  477. overflow: scroll;
  478. .refuel-item {
  479. padding: 10px;
  480. margin-bottom: 20px;
  481. background-color: #fff;
  482. border-top-right-radius: 5px;
  483. border-bottom-right-radius: 5px;
  484. border-top-left-radius: 3px;
  485. border-bottom-left-radius: 3px;
  486. border-left: 3px solid #1890ff;
  487. box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
  488. rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  489. p,
  490. span {
  491. font-size: 16px;
  492. }
  493. .title {
  494. text-align: left;
  495. padding-top: 10px;
  496. font-weight: 500;
  497. }
  498. .tips {
  499. margin-top: 10px;
  500. p {
  501. font-size: 14px;
  502. }
  503. }
  504. .bottom {
  505. padding-top: 20px;
  506. display: flex;
  507. justify-content: space-between;
  508. align-items: center;
  509. span {
  510. font-size: 20px;
  511. color: #fca842;
  512. font-weight: bold;
  513. .price-span {
  514. margin-left: 5px;
  515. font-size: 14px;
  516. }
  517. }
  518. .btn-button {
  519. height: 35px;
  520. width: 100px;
  521. @include center();
  522. background-color: #fca842;
  523. border-radius: 17px;
  524. p {
  525. font-size: 14px;
  526. color: #fff;
  527. }
  528. }
  529. }
  530. }
  531. }
  532. .base-package {
  533. height: calc(100vh - 88px);
  534. position: relative;
  535. .base-item {
  536. margin: 10px;
  537. z-index: 999;
  538. box-shadow: rgba(14, 30, 37, 0.12) 0 3px 5px 0,
  539. rgba(14, 30, 37, 0.32) 0 2px 16px 0;
  540. padding: 15px 10px;
  541. background-color: #fff;
  542. /* border-radius: 5px; */
  543. .title {
  544. display: flex;
  545. justify-content: flex-start;
  546. p {
  547. font-size: 16px;
  548. font-weight: bold;
  549. }
  550. }
  551. .details {
  552. display: flex;
  553. justify-content: flex-start;
  554. align-items: center;
  555. p {
  556. height: 40px;
  557. @include center();
  558. font-size: 14px;
  559. padding: 5px 0 5px 10px;
  560. }
  561. .total {
  562. font-size: 16px;
  563. padding: 0;
  564. }
  565. .orange {
  566. color: orange;
  567. }
  568. .large {
  569. font-size: 26px;
  570. margin: 0 2px;
  571. }
  572. .price {
  573. font-size: 16px;
  574. }
  575. /* .buy-btn {
  576. height: 30px;
  577. width: 100px;
  578. display: flex;
  579. justify-content: center;
  580. align-items: center;
  581. background: orange;
  582. border-radius: 45px;
  583. p {
  584. font-size: 16px;
  585. padding: 0;
  586. color: red;
  587. }
  588. } */
  589. }
  590. .remark {
  591. display: flex;
  592. justify-content: flex-start;
  593. p {
  594. font-size: 14px;
  595. padding: 5px 10px;
  596. /* font-weight: bold; */
  597. }
  598. }
  599. .package-buy {
  600. @include center();
  601. padding: 5px 8px;
  602. .buy-btn {
  603. height: 40px;
  604. width: 200px;
  605. padding: 0 5px;
  606. display: flex;
  607. justify-content: center;
  608. align-items: center;
  609. background: orange;
  610. border-radius: 20px;
  611. p {
  612. font-size: 16px;
  613. padding: 0;
  614. color: white;
  615. }
  616. }
  617. }
  618. .radios-con {
  619. /* padding: 20px 10px; */
  620. /* @include center(); */
  621. /* align-items: center; */
  622. padding: 10px 0 10px 10px;
  623. font-size: 14px;
  624. /* box-shadow: rgba(14, 30, 37, 0.12) 0 3px 5px 0,
  625. rgba(14, 30, 37, 0.32) 0 2px 16px 0; */
  626. img {
  627. height: 20px;
  628. width: 20px;
  629. margin: 2px;
  630. }
  631. .pay-type {
  632. text-align: left;
  633. p {
  634. font-size: 14px;
  635. padding: 0 0 10px 0;
  636. }
  637. }
  638. .radio-con {
  639. @include center();
  640. }
  641. .van-cell-text {
  642. display: flex;
  643. justify-content: flex-start;
  644. align-items: center;
  645. span {
  646. font-size: 14px;
  647. padding: 0 5px;
  648. }
  649. }
  650. }
  651. }
  652. .content {
  653. font-size: 14px;
  654. }
  655. }
  656. .data-null {
  657. height: calc(100vh - 88px);
  658. @include center();
  659. flex-direction: column;
  660. span {
  661. font-size: 14px;
  662. }
  663. }
  664. }
  665. }
  666. </style>