123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <template>
- <view class="jz_income uni-flex uni-column">
- <view class="item_top uni-flex justify-align-center">
- <view class="dataBtn uni-flex justify-align-center" @click="onShowDatePicker('rangetime')">
- <view class="date"> {{range[0]}} - {{range[1]}}</view>
- <image src="../../../static/income/03.png"></image>
- </view>
- </view>
- <view class="income_item uni-flex uni-column">
- <view class="income_space"></view>
- <view class="content_list uni-flex uni-column">
- <view class="content_item_wrap">
- <view class="content_item uni-flex space-between align-items" v-for="(item, key) in moneyLogList" :key="key">
- <view class="item_lf uni-flex align-items">
- <view class="uni-flex justify-align-center lef-img">
- <image src="../../../static/income.png"></image>
- </view>
- <view class="item_titles uni-flex space-between uni-column">
- <view class="bankMsg">{{item.bank}}</view>
- <view class="uni-flex">
- <view class="orderNo ">{{item.withDrawNo}}</view>
- </view>
- <view class="">{{item.createDate}}</view>
- </view>
- </view>
- <view class="item_rt uni-flex justify-align-center">
- <view class="uni-flex uni-column">
- <view>¥{{item.amount}}</view>
- <view v-if="item.state==0" style="color: #666666;text-align: right;">待处理</view>
- <view v-if="item.state==1" style="color: #666666;text-align: right;">已处理</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
- <mx-date-picker :show="showPicker" :type="type" :value="value" :show-tips="true" :begin-text="'开始'" :end-text="'结束'"
- :show-seconds="true" @confirm="onSelected" @cancel="onSelected" />
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex'
- import MxDatePicker from "@/components/mx-datepicker/mx-datepicker.vue";
- import util from '../../../common/util.js'
- import loadMore from '@/components/uni-load-more.vue';
- import backTop from '@/components/uni-top.vue';
- import uniIcon from '../../../components/uni-icon.vue';
- var index;
- var date = new Date();
- var range = util.getMonthFirstLastDay(date.getFullYear(), date.getMonth() + 1);
- export default {
- components: {
- MxDatePicker,
- loadMore,
- backTop,
- uniIcon
- },
- computed: {
- ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
- },
- data() {
- return {
- loadingType: 0,
- contentText: {
- contentdown: "上拉显示更多",
- contentrefresh: "正在加载...",
- contentnomore: "没有更多数据了"
- },
- backTop: {
- "src": "../../static/top.png",
- "scrollTop": 0
- },
- user: {},
- moneyLogList: [],
- showPicker: false,
- type: 'rangetime',
- range: range,
- value: ''
- }
- },
- onLoad() {
- if (!this.hasLogin) {
- uni.navigateTo({
- url: '../login/login',
- });
- } else {
- index = 1;
- this.user = JSON.parse(this.jyyUser);
- this.getData();
- }
- },
- onPullDownRefresh() {
- this.getData();
- setTimeout(function() {
- uni.stopPullDownRefresh();
- }, 1000);
- },
- onReachBottom() {
- this.getData();
- },
- methods: {
- goProduct(e) {
- uni.navigateTo({
- url: 'product?id=' + e.id + '&userid=' + this.user.id
- })
- },
- getData() {
- if (this.loadingType !== 0) {
- return;
- }
- uni.request({
- url: this.webUrl + 'WithDrawList',
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- userid: this.user.id,
- PageIndex: index,
- begin: this.range[0],
- end: this.range[1],
- },
- success: res => {
- if (res.data.result.bankList.length > 0) {
- this.moneyLogList = this.moneyLogList.concat(res.data.result.bankList);
- } else {
- this.loadingType = 2;
- return;
- }
- if (index == parseInt(res.data.result.pages)) {
- this.loadingType = 2;
- return;
- } else {
- this.loadingType = 0;
- }
- index++;
- },
- fail: () => {},
- complete: () => {}
- });
- },
- onShowDatePicker(type) { //显示
- this.type = type;
- this.showPicker = true;
- this.value = this[type];
- },
- onSelected(e) { //选择
- this.showPicker = false;
- if (e) {
- this.range[0] = util.formatDate(e.value[0], "YY-MM-DD");
- this.range[1] = util.formatDate(e.value[1], "YY-MM-DD");
- index = 1;
- this.loadingType = 0;
- this.moneyLogList = [];
- this.getData();
- }
- }
- }
- }
- </script>
- <style>
- .rtLine {
- color: #999999;
- margin-left: 30upx;
- }
- page {
- height: auto;
- }
- .jz_income .mescroll-uni.mescroll-uni-fixed {
- position: static;
- }
- .jz_income .orderNo {
- width: 300upx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .jz_income .orderNoTitle {
- width: 110upx;
- }
- .jz_income .bankMsg {
- width: 450upx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .jz_income .item_rt {
- margin-right: 18upx;
- }
- .jz_income .content_item {
- margin-left: 0upx;
- }
- .jz_income .orderNo {
- width: 450upx;
- }
- </style>
|