income.vue 5.2 KB

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