wallet.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <!-- myPages/pages/wallet/wallet.wxml -->
  3. <view class="container">
  4. <view @tap="clickPaymentDetail" class="current_view flex-row flex-between">
  5. <view class="flex-row">
  6. <view>{{$t('当前余额')+':'}}</view>
  7. <view class="money_red">{{ coin / 100 + $t('币')}}</view>
  8. </view>
  9. <view class="flex-row">
  10. <view class="money_mark">{{$t('收支明细')}}</view>
  11. <image class="item-icon" src="/static/resource/images/youjiantou.png"></image>
  12. </view>
  13. </view>
  14. <view class="money_view flex-row">
  15. <view>{{$t('充值金额')}}</view>
  16. <view class="money_mark">({{ $t('每一条报警短信消耗') + coupon.cost / 100 + $t('币')}})</view>
  17. </view>
  18. <view class="table_view" style="display: flex">
  19. <view class="top_up_view" v-for="(item, index) in topupList" :key="index">
  20. <view @tap="clickCurrentMoney" :data-index="index" :class="selectIndex == index ? 'select_bg top_up_bg' : 'top_up_bg'">
  21. <view class="money_text">{{ item.money / 100 + $t('元')}}</view>
  22. <view class="coin_text">{{ item.coin / 100 + $t('币')}}</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="bottom_top_up">
  27. <view @tap="clickTopUp" class="top_up">{{ currentMoney / 100 + $t('元')}} | {{$t('充值')}}</view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. // pages/wallet/wallet.js
  33. var appConfig = require('../../../common/appConfig.js');
  34. const config = require('../../../common/config.js');
  35. const http = require('../../../common/http.js');
  36. const common = require('../../../common/common.js');
  37. var storage = require('../../../common/storage.js');
  38. var user = require('../../../common/user.js');
  39. export default {
  40. data() {
  41. return {
  42. topupList: [],
  43. selectIndex: 0,
  44. currentMoney: 0,
  45. coupon: {
  46. cost: 0
  47. },
  48. coin: 0
  49. };
  50. }
  51. /**
  52. * 生命周期函数--监听页面加载
  53. */,
  54. onLoad: function (options) {
  55. uni.setNavigationBarTitle({
  56. title: this.$t('充值')
  57. });
  58. //currentMoney
  59. this.loadGetCoin();
  60. this.loadCoinConfig();
  61. this.loadHasCoupon();
  62. },
  63. /**
  64. * 生命周期函数--监听页面初次渲染完成
  65. */
  66. onReady: function () {},
  67. /**
  68. * 生命周期函数--监听页面显示
  69. */
  70. onShow: function () {},
  71. /**
  72. * 生命周期函数--监听页面隐藏
  73. */
  74. onHide: function () {},
  75. /**
  76. * 生命周期函数--监听页面卸载
  77. */
  78. onUnload: function () {},
  79. /**
  80. * 页面相关事件处理函数--监听用户下拉动作
  81. */
  82. onPullDownRefresh: function () {},
  83. /**
  84. * 页面上拉触底事件的处理函数
  85. */
  86. onReachBottom: function () {},
  87. /**
  88. * 用户点击右上角分享
  89. */
  90. onShareAppMessage: function () {},
  91. methods: {
  92. clickCurrentMoney: function (e) {
  93. const index = e.currentTarget.dataset.index;
  94. this.setData({
  95. selectIndex: index,
  96. currentMoney: this.topupList[index].money
  97. });
  98. },
  99. loadReponse() {},
  100. loadCoinConfig() {
  101. const me = this;
  102. common.loading(this);
  103. http.postApi(config.API_COIN_CONFIG, {}, function (resp) {
  104. uni.hideLoading();
  105. if (resp.data.code === 200) {
  106. me.setData({
  107. topupList: resp.data.data.list
  108. });
  109. if (resp.data.data.list.length > 0) {
  110. me.setData({
  111. currentMoney: me.topupList[me.selectIndex].money
  112. });
  113. }
  114. }
  115. });
  116. },
  117. loadGetCoin() {
  118. const me = this;
  119. http.postApi(config.API_GET_COIN, {}, function (resp) {
  120. if (resp.data.code === 200) {
  121. me.setData({
  122. coin: resp.data.data.coin
  123. });
  124. }
  125. });
  126. },
  127. clickPaymentDetail() {
  128. uni.navigateTo({
  129. url: '/myPages/pages/paymentDetail/paymentDetail',
  130. success: function (res) {},
  131. fail: function (res) {},
  132. complete: function (res) {}
  133. });
  134. },
  135. loadHasCoupon() {
  136. const me = this;
  137. http.postRequest(config.API_HAS_COUPON, {}, function (resp) {
  138. if (resp.data.code === 200) {
  139. me.setData({
  140. coupon: resp.data.data
  141. });
  142. } else {
  143. common.simpleToast(me,resp.data.msg);
  144. }
  145. });
  146. },
  147. clickTopUp() {
  148. const pData = {
  149. coin: this.topupList[this.selectIndex].coin,
  150. type: 'jsapi'
  151. };
  152. const me = this;
  153. common.loading(this);
  154. http.postApi(config.API_COIN_CREDIT, pData, function (resp) {
  155. uni.hideLoading();
  156. if (resp.data.code === 200) {
  157. console.log(resp.data.data.payParams);
  158. var payParams = JSON.parse(resp.data.data.payParams);
  159. var order_sn = resp.data.data.order_sn;
  160. user.wxPay(order_sn, payParams, function (isSuccess) {
  161. if (isSuccess) {
  162. common.simpleToast(me,me.$t('支付成功'));
  163. me.loadGetCoin();
  164. }
  165. });
  166. } else if (resp.data.code === 15001) {
  167. uni.showModal({
  168. title: me.$t('提示'),
  169. content: resp.data.data.shop_name + me.$t('门店没有足够的余额,提醒商家进行充值'),
  170. showCancel: false,
  171. success: function (res) {
  172. if (res.confirm) {
  173. //这里是点击了确定以后
  174. } else {
  175. //这里是点击了取消以后
  176. }
  177. }
  178. });
  179. } else {
  180. common.simpleToast(me,resp.data.msg);
  181. }
  182. });
  183. }
  184. }
  185. };
  186. </script>
  187. <style>
  188. @import './wallet.css';
  189. </style>