income.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <template>
  2. <view class="jz_income uni-flex uni-column">
  3. <view class="item_top uni-flex justify-align-center">
  4. <view class="dataBtn uni-flex justify-align-center" @click="onShowDatePicker('rangetime')">
  5. <view class="date"> {{range[0]}} - {{range[1]}}</view>
  6. <image src="../../../static/income/03.png"></image>
  7. </view>
  8. </view>
  9. <view class="income_item uni-flex uni-column">
  10. <view class="income_space"></view>
  11. <view class="content_list uni-flex uni-column">
  12. <view class="content_item_wrap">
  13. <view class="content_item uni-flex space-between align-items" v-for="(item, key) in moneyLogList" :key="key">
  14. <view class="item_lf uni-flex align-items">
  15. <view class="uni-flex justify-align-center lef-img">
  16. <image src="../../../static/income.png"></image>
  17. </view>
  18. <view class="item_titles uni-flex space-between uni-column">
  19. <view class="bankMsg">{{item.bank}}</view>
  20. <view class="uni-flex">
  21. <view class="orderNo ">{{item.withDrawNo}}</view>
  22. </view>
  23. <view class="">{{item.createDate}}</view>
  24. </view>
  25. </view>
  26. <view class="item_rt uni-flex justify-align-center">
  27. <view class="uni-flex uni-column">
  28. <view>¥{{item.amount}}</view>
  29. <view v-if="item.state==0" style="color: #666666;text-align: right;">待处理</view>
  30. <view v-if="item.state==1" style="color: #666666;text-align: right;">已处理</view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
  38. <mx-date-picker :show="showPicker" :type="type" :value="value" :show-tips="true" :begin-text="'开始'" :end-text="'结束'"
  39. :show-seconds="true" @confirm="onSelected" @cancel="onSelected" />
  40. </view>
  41. </template>
  42. <script>
  43. import {
  44. mapState,
  45. mapMutations
  46. } from 'vuex'
  47. import MxDatePicker from "@/components/mx-datepicker/mx-datepicker.vue";
  48. import util from '../../../common/util.js'
  49. import loadMore from '@/components/uni-load-more.vue';
  50. import backTop from '@/components/uni-top.vue';
  51. import uniIcon from '../../../components/uni-icon.vue';
  52. var index;
  53. var date = new Date();
  54. var range = util.getMonthFirstLastDay(date.getFullYear(), date.getMonth() + 1);
  55. export default {
  56. components: {
  57. MxDatePicker,
  58. loadMore,
  59. backTop,
  60. uniIcon
  61. },
  62. computed: {
  63. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  64. },
  65. data() {
  66. return {
  67. loadingType: 0,
  68. contentText: {
  69. contentdown: "上拉显示更多",
  70. contentrefresh: "正在加载...",
  71. contentnomore: "没有更多数据了"
  72. },
  73. backTop: {
  74. "src": "../../static/top.png",
  75. "scrollTop": 0
  76. },
  77. user: {},
  78. moneyLogList: [],
  79. showPicker: false,
  80. type: 'rangetime',
  81. range: range,
  82. value: ''
  83. }
  84. },
  85. onLoad() {
  86. if (!this.hasLogin) {
  87. uni.navigateTo({
  88. url: '../login/login',
  89. });
  90. } else {
  91. index = 1;
  92. this.user = JSON.parse(this.jyyUser);
  93. this.getData();
  94. }
  95. },
  96. onPullDownRefresh() {
  97. this.getData();
  98. setTimeout(function() {
  99. uni.stopPullDownRefresh();
  100. }, 1000);
  101. },
  102. onReachBottom() {
  103. this.getData();
  104. },
  105. methods: {
  106. goProduct(e) {
  107. uni.navigateTo({
  108. url: 'product?id=' + e.id + '&userid=' + this.user.id
  109. })
  110. },
  111. getData() {
  112. if (this.loadingType !== 0) {
  113. return;
  114. }
  115. uni.request({
  116. url: this.webUrl + 'WithDrawList',
  117. method: 'POST',
  118. header: {
  119. 'content-type': 'application/x-www-form-urlencoded'
  120. },
  121. data: {
  122. userid: this.user.id,
  123. PageIndex: index,
  124. begin: this.range[0],
  125. end: this.range[1],
  126. },
  127. success: res => {
  128. if (res.data.result.bankList.length > 0) {
  129. this.moneyLogList = this.moneyLogList.concat(res.data.result.bankList);
  130. } else {
  131. this.loadingType = 2;
  132. return;
  133. }
  134. if (index == parseInt(res.data.result.pages)) {
  135. this.loadingType = 2;
  136. return;
  137. } else {
  138. this.loadingType = 0;
  139. }
  140. index++;
  141. },
  142. fail: () => {},
  143. complete: () => {}
  144. });
  145. },
  146. onShowDatePicker(type) { //显示
  147. this.type = type;
  148. this.showPicker = true;
  149. this.value = this[type];
  150. },
  151. onSelected(e) { //选择
  152. this.showPicker = false;
  153. if (e) {
  154. this.range[0] = util.formatDate(e.value[0], "YY-MM-DD");
  155. this.range[1] = util.formatDate(e.value[1], "YY-MM-DD");
  156. index = 1;
  157. this.loadingType = 0;
  158. this.moneyLogList = [];
  159. this.getData();
  160. }
  161. }
  162. }
  163. }
  164. </script>
  165. <style>
  166. .rtLine {
  167. color: #999999;
  168. margin-left: 30upx;
  169. }
  170. page {
  171. height: auto;
  172. }
  173. .jz_income .mescroll-uni.mescroll-uni-fixed {
  174. position: static;
  175. }
  176. .jz_income .orderNo {
  177. width: 300upx;
  178. overflow: hidden;
  179. white-space: nowrap;
  180. text-overflow: ellipsis;
  181. }
  182. .jz_income .orderNoTitle {
  183. width: 110upx;
  184. }
  185. .jz_income .bankMsg {
  186. width: 450upx;
  187. overflow: hidden;
  188. text-overflow: ellipsis;
  189. white-space: nowrap;
  190. }
  191. .jz_income .item_rt {
  192. margin-right: 18upx;
  193. }
  194. .jz_income .content_item {
  195. margin-left: 0upx;
  196. }
  197. .jz_income .orderNo {
  198. width: 450upx;
  199. }
  200. </style>