recharge.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. <template>
  2. <view class="content">
  3. <view class="now">
  4. <view>当前余额:</view>
  5. <view class="now-money">¥{{new_money}}</view>
  6. </view>
  7. <view class="main-jg"></view>
  8. <view class="add-wrapper">
  9. <view class="add-box">
  10. <view class="add-log">¥</view>
  11. <input type="digit" v-model="money" placeholder="请输入充值金额" placeholder-class="place" @keyup="clearNoNum()" />
  12. </view>
  13. <view class="jg" style="height: 1px; background-color: #E6E6E6;"></view>
  14. <view class="add-tags">
  15. <view class="tag " v-for="(item, index) in addTags" :key="item.id" @click="tagClick(index,item)" :class="{ action: currentIndex === index && (money == (item.price *1))}">
  16. <view class="price">{{ item.price }}元</view>
  17. <view>赠送{{ item.give_money }}</view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="main-jg"></view>
  22. <!-- <view class="btn-wrapper">
  23. <view class="icon iconfont iconweixin1"><view>微信充值</view></view>
  24. <view class="btn" @click="btnClick" :class="{'actiont': isSect}"><image src="../../static/icon/btncz.png" mode="" :class="{'action':!isSect}"></image></view>
  25. </view> -->
  26. <!-- <view class="row-box">
  27. <view class="title">充值金额</view>
  28. <view class="row">
  29. <text class="tit">¥</text>
  30. <input class="input" type="number" v-model="money" placeholder="请输入充值金额" placeholder-class="placeholder" />
  31. </view>
  32. </view> -->
  33. <view class="list">
  34. <radio-group @change="tabRadio">
  35. <!-- #ifdef APP-PLUS -->
  36. <label>
  37. <view class="box">
  38. <view class="icon iconfont iconzhifubao"></view>
  39. <view class="title-box">
  40. <view class="title"><text>支付宝充值</text></view>
  41. </view>
  42. <view class="right"><radio value="alipay" color="#ff4c4c" :checked="type == 'alipay'" str/></view>
  43. </view>
  44. </label>
  45. <!-- #endif -->
  46. </radio-group>
  47. </view>
  48. <button class="add-btn up" :class="{ 'active-bg': payLoding }" @click="!payLoding ? confirm() : ''">立即充值</button>
  49. </view>
  50. </template>
  51. <script>
  52. import { getMoneyStyle } from '@/utils/rocessor.js';
  53. // #ifdef H5
  54. import { rechargeWechat ,userBalance,getRecharge,rechargeAli} from '@/api/wallet.js';
  55. // #endif
  56. // #ifdef MP
  57. import { rechargeRoutine ,userBalance,getRecharge} from '@/api/wallet.js';
  58. // #endif
  59. // #ifdef APP-PLUS
  60. import { rechargeRoutine ,userBalance,getRecharge,rechargeAli} from '@/api/wallet.js';
  61. // #endif
  62. import { mapState } from 'vuex';
  63. import { orderData, getUserInfo } from '@/api/user.js';
  64. export default {
  65. filters: {
  66. getMoneyStyle
  67. },
  68. data() {
  69. return {
  70. chooseTc: {
  71. id: 0
  72. },
  73. type: 'alipay',
  74. money: 0, //充值金额
  75. payLoding: false, //是否加载中
  76. addTags: [300, 200, 150, 100, 50],
  77. currentIndex: 0,
  78. addMoney: 0,
  79. isSect: false ,//是否选择微信充值
  80. new_money: 0,
  81. paying: false
  82. };
  83. },
  84. onLoad(options) {
  85. this.userBalance()
  86. this.getRecharge()
  87. },
  88. computed: {
  89. // #ifdef H5
  90. ...mapState(['weichatObj'])
  91. // #endif
  92. },
  93. methods: {
  94. // 跳转
  95. navTo(url) {
  96. uni.navigateTo({
  97. url: url
  98. });
  99. },
  100. // 切换选中对象
  101. tabRadio(e) {
  102. console.log(e.detail.value)
  103. this.type = e.detail.value;
  104. },
  105. // 提交
  106. confirm() {
  107. let obj = this;
  108. if(obj.paying) {
  109. return
  110. }
  111. if(this.money == 0){
  112. return this.$api.msg('请输入充值金额');
  113. }
  114. if(!this.type) {
  115. return this.$api.msg('请选择支付方式');
  116. }
  117. // // #ifndef APP-PLUS
  118. // if (wx.requestSubscribeMessage) {
  119. // wx.requestSubscribeMessage({
  120. // tmplIds: ['HgPU5FHUTwqGNSkJ7IsAP0XkJZV3UUf9fjUWUD3ebZY'],
  121. // success(res) {
  122. // console.log(res,'订阅消息')
  123. // },
  124. // fail(err) {
  125. // console.log(err)
  126. // },
  127. // complete() {
  128. // obj.payLoding = true;
  129. // // #ifdef H5
  130. // rechargeWechat({
  131. // price: obj.money,
  132. // from: obj.type
  133. // })
  134. // .then(e => {
  135. // let da = e.data.data;
  136. // obj.weichatObj.chooseWXPay({
  137. // timestamp: da.timestamp,
  138. // nonceStr: da.nonceStr,
  139. // package: da.package,
  140. // signType: da.signType,
  141. // paySign: da.paySign,
  142. // success: function(res) {
  143. // uni.showToast({
  144. // title: '充值成功',
  145. // duration: 2000,
  146. // position: 'top'
  147. // });
  148. // }
  149. // });
  150. // obj.payLoding = false;
  151. // })
  152. // .catch(e => {
  153. // obj.payLoding = false;
  154. // console.log(e);
  155. // });
  156. // // #endif
  157. // // #ifdef MP
  158. // rechargeRoutine({
  159. // price: obj.money
  160. // })
  161. // .then(e => {
  162. // let da = e.data;
  163. // wx.requestPayment({
  164. // timeStamp: da.timestamp,
  165. // nonceStr: da.nonceStr,
  166. // package: da.package,
  167. // signType: da.signType,
  168. // paySign: da.paySign,
  169. // success: function(res) {
  170. // uni.redirectTo({
  171. // url: '/pages/money/paySuccess?isshow=false'
  172. // });
  173. // }
  174. // });
  175. // obj.payLoding = false;
  176. // })
  177. // .catch(e => {
  178. // obj.payLoding = false;
  179. // console.log(e);
  180. // });
  181. // // #endif
  182. // }
  183. // })
  184. // } else {
  185. // obj.payLoding = true;
  186. // // #ifdef H5
  187. // rechargeWechat({
  188. // price: obj.money,
  189. // from: obj.type
  190. // })
  191. // .then(e => {
  192. // let da = e.data.data;
  193. // obj.weichatObj.chooseWXPay({
  194. // timestamp: da.timestamp,
  195. // nonceStr: da.nonceStr,
  196. // package: da.package,
  197. // signType: da.signType,
  198. // paySign: da.paySign,
  199. // success: function(res) {
  200. // uni.showToast({
  201. // title: '充值成功',
  202. // duration: 2000,
  203. // position: 'top'
  204. // });
  205. // }
  206. // });
  207. // obj.payLoding = false;
  208. // })
  209. // .catch(e => {
  210. // obj.payLoding = false;
  211. // console.log(e);
  212. // });
  213. // // #endif
  214. // // #ifdef MP
  215. // rechargeRoutine({
  216. // price: this.money
  217. // })
  218. // .then(e => {
  219. // let da = e.data;
  220. // wx.requestPayment({
  221. // timeStamp: da.timestamp,
  222. // nonceStr: da.nonceStr,
  223. // package: da.package,
  224. // signType: da.signType,
  225. // paySign: da.paySign,
  226. // success: function(res) {
  227. // uni.redirectTo({
  228. // url: '/pages/money/paySuccess?isshow=false'
  229. // });
  230. // }
  231. // });
  232. // obj.payLoding = false;
  233. // })
  234. // .catch(e => {
  235. // obj.payLoding = false;
  236. // console.log(e);
  237. // });
  238. // // #endif
  239. // }
  240. // // #endif
  241. // #ifdef APP-PLUS
  242. console.log(obj.chooseTc.id)
  243. rechargeAli({
  244. price: obj.money,
  245. rechar_id: obj.chooseTc.id
  246. }).then(res => {
  247. console.log(res);
  248. let data = res.data.data
  249. if(obj.type == 'alipay') {
  250. uni.requestPayment({
  251. provider: 'alipay',
  252. orderInfo: data, //微信、支付宝订单数据 【注意微信的订单信息,键值应该全部是小写,不能采用驼峰命名】
  253. success: function (res) {
  254. console.log('success:' + JSON.stringify(res));
  255. obj.paying = false;
  256. obj.money = 0
  257. uni.showToast({
  258. title:'支付成功',
  259. icon:'success'
  260. })
  261. obj.userBalance()
  262. },
  263. fail: function (err) {
  264. console.log('fail:' + JSON.stringify(err));
  265. obj.paying = false
  266. }
  267. });
  268. }
  269. }).catch(err => {
  270. console.log(err)
  271. obj.paying = false
  272. })
  273. // #endif
  274. },
  275. //获取订单列表
  276. loadData(source) {
  277. console.log(source);
  278. //这里是将订单挂载到tab列表下
  279. let index = this.tabCurrentIndex;
  280. let navItem = this.navList[index];
  281. let state = navItem.state;
  282. if (source === 'tabChange' && navItem.loaded === true) {
  283. //tab切换只有第一次需要加载数据
  284. return;
  285. }
  286. if (navItem.loadingType === 'loading') {
  287. //防止重复加载
  288. return;
  289. }
  290. navItem.loadingType = 'loading';
  291. setTimeout(() => {
  292. let orderList = [];
  293. orderList.forEach(item => {
  294. navItem.orderList.push(item);
  295. });
  296. //loaded新字段用于表示数据加载完毕,如果为空可以显示空白页
  297. this.$set(navItem, 'loaded', true);
  298. //判断是否还有数据, 有改为 more, 没有改为noMore
  299. navItem.loadingType = 'more';
  300. }, 600);
  301. },
  302. tagClick(index,item) {
  303. this.currentIndex = index;
  304. this.chooseTc = item
  305. this.money = item.price * 1;
  306. },
  307. clearNoNum() {
  308. // this.money = this.money.replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3');
  309. this.addTags.forEach((item,index) => {
  310. if(this.money*1 == item.price*1) {
  311. this.chooseTc = item
  312. return this.currentIndex = index
  313. }else {
  314. this.chooseTc = {
  315. id: 0
  316. }
  317. }
  318. })
  319. },
  320. btnClick() {
  321. this.isSect = !this.isSect
  322. },
  323. userBalance() {
  324. userBalance().then( res => {
  325. this.new_money = res.data.now_money
  326. console.log(res)
  327. })
  328. },
  329. getRecharge() {
  330. getRecharge().then(res => {
  331. console.log(res)
  332. this.addTags = res.data.recharge_quota
  333. })
  334. }
  335. }
  336. };
  337. </script>
  338. <style lang="scss">
  339. page {
  340. height: 100%;
  341. background-color: #fff;
  342. }
  343. .add-btn {
  344. &.modified {
  345. color: $base-color;
  346. }
  347. &.up {
  348. background-color: $base-color;
  349. color: #fff;
  350. }
  351. display: flex;
  352. align-items: center;
  353. justify-content: center;
  354. width: 604rpx;
  355. height: 90rpx;
  356. margin: 0 auto;
  357. margin-top: 30rpx;
  358. font-size: $font-lg;
  359. border-radius: 10rpx;
  360. // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
  361. }
  362. .row-box {
  363. margin-top: 30rpx;
  364. padding: 20rpx 30rpx;
  365. background: #fff;
  366. .title {
  367. font-size: $font-base + 2rpx;
  368. color: $font-color-dark;
  369. }
  370. .row {
  371. display: flex;
  372. align-items: center;
  373. position: relative;
  374. height: 80rpx;
  375. .tit {
  376. flex-shrink: 0;
  377. width: 40rpx;
  378. font-size: 30rpx;
  379. color: $font-color-dark;
  380. }
  381. .input {
  382. flex: 1;
  383. font-size: 30rpx;
  384. color: $font-color-dark;
  385. }
  386. .iconlocation {
  387. font-size: 36rpx;
  388. color: $font-color-light;
  389. }
  390. .buttom {
  391. color: $font-color;
  392. font-size: $font-base;
  393. }
  394. }
  395. }
  396. .list {
  397. padding-left: 30rpx;
  398. margin-top: 30rpx;
  399. background-color: #ffffff;
  400. .box {
  401. display: flex;
  402. align-items: center;
  403. width: 100%;
  404. height: 120rpx;
  405. border-bottom: 1px solid $border-color-light;
  406. .icon {
  407. font-size: 48rpx;
  408. padding-right: 20rpx;
  409. }
  410. .iconweixin1 {
  411. color: #18bf16;
  412. }
  413. .iconzhifubao {
  414. color: #08aaec;
  415. }
  416. .title-box {
  417. flex-grow: 1;
  418. text-align: left;
  419. .title {
  420. font-size: $font-base + 2rpx;
  421. color: $font-color-base;
  422. }
  423. .node {
  424. font-size: $font-sm;
  425. color: $font-color-light;
  426. }
  427. }
  428. }
  429. }
  430. /deep/ .uni-radio-input {
  431. width: 45rpx;
  432. height: 45rpx;
  433. }
  434. .active-bg {
  435. background-color: $color-gray !important;
  436. }
  437. .now {
  438. width: 100%;
  439. height: 86rpx;
  440. padding: 0 26rpx 0 47rpx;
  441. display: flex;
  442. justify-content: space-between;
  443. line-height: 86rpx;
  444. background-color: #fff;
  445. // margin-bottom: 21rpx;
  446. view {
  447. font-size: 28rpx;
  448. font-weight: 500;
  449. color: #333333;
  450. }
  451. .now-money {
  452. font-size: 32rpx;
  453. font-weight: bold;
  454. color: $base-color;
  455. }
  456. }
  457. .add-wrapper {
  458. width: 750rpx;
  459. padding-left: 30rpx;
  460. background: #ffffff;
  461. display: flex;
  462. flex-direction: column;
  463. align-items: center;
  464. // margin-bottom: 22rpx;
  465. .add-box {
  466. width: 100%;
  467. height: 103rpx;
  468. display: flex;
  469. flex-direction: row;
  470. justify-content: space-between;
  471. padding: 0 39rpx 0 10rpx;
  472. align-items: center;
  473. .add-log {
  474. font-size: 37rpx;
  475. font-weight: bold;
  476. }
  477. input {
  478. width: 218rpx;
  479. height: 30rpx;
  480. font-size: 32rpx;
  481. font-weight: 500;
  482. color: #000;
  483. line-height: 40px;
  484. text-align: right;
  485. .place {
  486. color: #bfbfbf;
  487. }
  488. }
  489. }
  490. .jg {
  491. width: 100%;
  492. }
  493. .add-tags {
  494. padding-top: 47rpx;
  495. padding-bottom: 17rpx;
  496. display: flex;
  497. flex-direction: row;
  498. flex-wrap: wrap;
  499. // justify-content: space-between;
  500. .tag {
  501. width: 210rpx;
  502. background-color: #f0f0f0;
  503. border-radius: 4rpx;
  504. margin: 0 30rpx 30rpx 0;
  505. text-align: center;
  506. font-size: 22rpx;
  507. padding: 20rpx;
  508. .price {
  509. font-size: 32rpx;
  510. font-weight: 500;
  511. padding-bottom: 20rpx;
  512. }
  513. }
  514. .action {
  515. color: #fff;
  516. background-color: $base-color;
  517. }
  518. }
  519. }
  520. .btn-wrapper {
  521. padding: 49rpx 32rpx 0 40rpx;
  522. height: 183rpx;
  523. display: flex;
  524. justify-content: space-between;
  525. background-color: #fff;
  526. .iconweixin1 {
  527. color: #18bf16;
  528. font-size: 48rpx;
  529. display: flex;
  530. view {
  531. // display: inline-block;
  532. height: 48rpx;
  533. text-align: 48rpx;
  534. padding-left: 20rpx;
  535. // padding-top: 10rpx;
  536. color: #000000;
  537. font-size: 30rpx;
  538. }
  539. }
  540. .btn {
  541. width: 36rpx;
  542. height: 36rpx;
  543. border: 4rpx $base-color solid;
  544. border-radius: 8rpx 8rpx;
  545. image {
  546. // display: none;
  547. width: 100%;
  548. height: 100%;
  549. }
  550. .action {
  551. display: none;
  552. }
  553. }
  554. .actiont {
  555. border:none;
  556. }
  557. }
  558. .main-jg {
  559. width: 100%;
  560. height: 21rpx;
  561. background-color: #f8f6f6;
  562. }
  563. </style>