wallet.vue 6.3 KB

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