commissionlist.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <view class="container">
  3. <view class="main-container">
  4. <view v-if="money && money != 0" class="nav-tab flex-row flex-between">
  5. <view class="form-label">待提现金额:{{ money / 100 }}元</view>
  6. <view class="form-value">
  7. <view v-if="apply" class="op-btn" @tap="bindApply">申请提现</view>
  8. </view>
  9. </view>
  10. <view class="nav-tab flex-row flex-between">
  11. <view class="order-type-container flex-row flex-start">
  12. <view :class="'nav-item ' + (navSelected == 0 ? 'nav-active' : '')" @tap="bindSelectNavTab" data-nav="0">全部</view>
  13. <view :class="'nav-item ' + (navSelected == 1 ? 'nav-active' : '')" @tap="bindSelectNavTab" data-nav="1">待提现</view>
  14. <view :class="'nav-item ' + (navSelected == 2 ? 'nav-active' : '')" @tap="bindSelectNavTab" data-nav="2">审核中</view>
  15. <view :class="'nav-item ' + (navSelected == 3 ? 'nav-active' : '')" @tap="bindSelectNavTab" data-nav="3">已提现</view>
  16. </view>
  17. </view>
  18. <view class="list-group">
  19. <view class="list-item" v-for="(item, index) in commissionList" :key="index">
  20. <view class="list-item-head flex-row flex-between">
  21. <view class="order-time">{{ item.ctime }}</view>
  22. <view class="order-status">
  23. <text v-if="item.status == 0" class="i-status to-check">待提现</text>
  24. <text v-if="item.status == 1" class="i-status to-ing">审核中</text>
  25. <text v-if="item.status == 2" class="i-status to-pay-ok">已提现</text>
  26. </view>
  27. </view>
  28. <view class="list-item-body">
  29. <view class="form-item flex-row flex-between">
  30. <view class="form-label">订单号</view>
  31. <view class="form-value" @tap="handleClipboard" :data-clipdata="item.order_sn">
  32. {{ item.order_sn }}
  33. <image src="/static/resource/images/clip.png" style="width: 10px; height: 10px; margin-left: 5px"></image>
  34. </view>
  35. </view>
  36. <view class="form-item flex-row flex-between">
  37. <view class="form-label">设备编号</view>
  38. <view class="form-value" @tap="handleClipboard" :data-clipdata="item.battery_sn">
  39. {{ item.battery_sn }}
  40. <image src="/static/resource/images/clip.png" style="width: 10px; height: 10px; margin-left: 5px"></image>
  41. </view>
  42. </view>
  43. <view class="form-item flex-row flex-between">
  44. <view class="form-label">订单金额</view>
  45. <view class="form-value">
  46. <text>{{ item.total_money / 100 }}元/</text>
  47. </view>
  48. </view>
  49. <view class="form-item flex-row flex-between">
  50. <view class="form-label">雇主门店</view>
  51. <view class="form-value">{{ item.main_name }}</view>
  52. </view>
  53. <view class="form-item flex-row flex-between">
  54. <view class="form-label">佣金比例</view>
  55. <view class="form-value">{{ item.proportion }}%</view>
  56. </view>
  57. <view class="form-item flex-row flex-between">
  58. <view class="form-label">收佣门店</view>
  59. <view class="form-value">{{ item.shop_name }}</view>
  60. </view>
  61. <view class="form-item flex-row flex-between">
  62. <view class="form-label">佣金金额</view>
  63. <view class="form-value pay-money">{{ item.money / 100 }}元</view>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. <no-more :is-loading="isLoading" />
  69. </view>
  70. </view>
  71. </template>
  72. <script>
  73. import noMore from '@/component/nomore/nomore';
  74. // pages/commissionlist/commissionlist.js
  75. var config = require('../../common/config.js');
  76. var http = require('../../common/http.js');
  77. var common = require('../../common/common.js');
  78. var storage = require('../../common/storage.js');
  79. export default {
  80. components: {
  81. noMore
  82. },
  83. data() {
  84. return {
  85. navSelected: 0,
  86. start_page: 1,
  87. limit_page: 10,
  88. commissionList: [],
  89. isLoading: false,
  90. money: null,
  91. apply: false
  92. };
  93. },
  94. /**
  95. * 生命周期函数--监听页面加载
  96. */
  97. onLoad: function (options) {
  98. this.loadCommissionMoney();
  99. this.refreshCommissionList();
  100. },
  101. /**
  102. * 生命周期函数--监听页面显示
  103. */
  104. onShow: function () {},
  105. /**
  106. * 用户点击右上角分享
  107. */
  108. onShareAppMessage: function () {},
  109. /**
  110. * 页面相关事件处理函数--监听用户下拉动作
  111. */
  112. onPullDownRefresh: function () {
  113. this.refreshCommissionList();
  114. },
  115. /**
  116. * 页面上拉触底事件的处理函数
  117. */
  118. onReachBottom: function () {
  119. this.setData({
  120. isLoading: true
  121. });
  122. this.start_page++;
  123. this.loadCommissionList();
  124. },
  125. methods: {
  126. loadCommissionMoney: function () {
  127. const that = this;
  128. http.postApi(config.API_COMMISSION_MONEY, {}, function (resp) {
  129. if (resp.data.code === 200) {
  130. that.setData({
  131. money: resp.data.data.money,
  132. apply: resp.data.data.apply
  133. });
  134. } else {
  135. common.simpleToast(resp.data.msg);
  136. }
  137. });
  138. },
  139. bindSelectNavTab: function (e) {
  140. const navSelected = e.currentTarget.dataset.nav || 1;
  141. this.setData({
  142. navSelected: navSelected,
  143. start_page: 1,
  144. commissionList: []
  145. });
  146. this.loadCommissionList();
  147. },
  148. refreshCommissionList() {
  149. this.setData({
  150. start_page: 1,
  151. commissionList: []
  152. });
  153. this.loadCommissionList();
  154. },
  155. loadCommissionList: function () {
  156. const pData = {
  157. page: this.start_page,
  158. limit: this.limit_page,
  159. status: this.navSelected
  160. };
  161. const that = this;
  162. common.loading();
  163. http.postApi(config.API_COMMISSION_LIST, pData, function (resp) {
  164. uni.hideLoading();
  165. uni.stopPullDownRefresh();
  166. if (resp.data.code === 200) {
  167. let commissionList = that.commissionList;
  168. commissionList.push.apply(commissionList, resp.data.data.list);
  169. that.setData({
  170. commissionList: commissionList,
  171. isLoading: false
  172. });
  173. } else {
  174. common.simpleToast(resp.data.msg);
  175. }
  176. });
  177. },
  178. bindApply: function () {
  179. const that = this;
  180. uni.login({
  181. success: function (res) {
  182. //const accountInfo = uni.getAccountInfoSync();
  183. var pData = {
  184. code: res.code,
  185. appid: "wxddbcc3709026525e"
  186. };
  187. http.postApi(config.API_COMMISSION_APPLY_BOSS, pData, function (resp) {
  188. if (resp.data.code === 200) {
  189. common.simpleToast('申请成功');
  190. that.loadCommissionMoney();
  191. that.refreshCommissionList();
  192. } else {
  193. common.simpleToast(resp.data.msg);
  194. }
  195. });
  196. }
  197. });
  198. },
  199. handleClipboard(e) {
  200. const clipdata = e.currentTarget.dataset.clipdata;
  201. uni.setClipboardData({
  202. data: clipdata
  203. });
  204. },
  205. navigatorToPage: function (e) {
  206. const page = e.currentTarget.dataset.page;
  207. if (!page) {
  208. return;
  209. }
  210. uni.navigateTo({
  211. url: page
  212. });
  213. }
  214. }
  215. };
  216. </script>
  217. <style>
  218. @import './commissionlist.css';
  219. </style>