rechargeDetail.vue
7.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<template>
<view>
<view class="statistics yellow-bg uni-list-cell-pd" style="color: #fff">{{detailText | tranNull}}</view>
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-left">
消费类型
</view>
<view class="uni-list-cell-db">
<picker @change="bindPickerChange" :value="index" :range="kindArray" :range-key="'kindName'">
<view class="uni-input">{{kindArray[index].kindName}}</view>
</picker>
</view>
</view>
</view>
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-left">
充值方式
</view>
<view class="uni-list-cell-db">
<picker @change="bindPickerChangeWay" :value="indexWay" :range="arrayWay" :range-key="'typeName'">
<view class="uni-input">{{arrayWay[indexWay].typeName}}</view>
</picker>
</view>
</view>
</view>
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-left">
开始时间
</view>
<view class="uni-list-cell-db">
<picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindStartDateChange">
<view class="uni-input">{{beginDate}}</view>
</picker>
</view>
</view>
</view>
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-left">
结束时间
</view>
<view class="uni-list-cell-db">
<picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindEndDateChange">
<view class="uni-input">{{overDate}}</view>
</picker>
</view>
</view>
</view>
<view class="border-bg"></view>
<view class="" v-if="orderList.length > 0">
<uni-list class="rechargeWrap" v-for="(item, index) in orderList" :key="index">
<view class="recordCon uni-list-cell-pd">
<text class="color-black">{{item.changeFeeDetail}}</text>
<text>{{item.payStateDesc}}</text>
</view>
<view class="recordCon uni-list-cell-pd">
<text class="color-green">{{item.typeName}}</text>
<text>{{item.opTime}}</text>
</view>
</uni-list>
<view class="grace-loading text-center jy-fix-height34" v-if="isLoadAll">{{ loadingTxt }}</view>
</view>
<view v-else class="margin-top-30">
<image class="marginAuto" src="../../static/vipcard/novipcard.png" mode="aspectFit"></image>
<view class="text-center">
暂无记录
</view>
</view>
</view>
</template>
<script>
export default {
data() {
const currentDate = this.getDate({
format: true
})
return {
detailText: '',
title: 'picker',
kindArray: [],
arrayWay: [],
index: 0,
indexWay: 0,
kind: '',
type: '',
beginDate: currentDate,
overDate: currentDate,
orderList: [],
isLoadAll: false,
totalPages: 1, // 总页数
page: 1,
pageSize: 5,
loadingTxt: '加载中...',
}
},
onLoad(params) {
wx.showShareMenu({
withShareTicket: true
});
this.getKindType();
this.page = 1
this.pageSize = 5
this.totalPages = 1
this.orderList = []
},
onShow() {
this.page = 1
this.pageSize = 5
this.totalPages = 1
this.orderList = []
},
// 下拉刷新触发
onPullDownRefresh(val) {
this.page = 1
this.pageSize = 5
this.totalPages = 1
console.log('下拉刷新', val)
this.fetchData()
},
// 上拉加载触发
onReachBottom() {
// 判断当前页是否大于等于总页数
if (this.totalPages <= this.page) {
this.isLoadAll = true;
this.loadingTxt = '没有更多数据啦~';
} else {
this.page++;
this.isLoadAll = true;
this.loadingTxt = '加载中...';
this.fetchData(); // 每次滑动请求接口,实现上拉加载更多数据
}
},
computed: {
startDate() {
return this.getDate('start');
},
endDate() {
return this.getDate('end');
}
},
methods: {
getKindType() {
let that = this;
that.$myRequest({
url: that.$common.walletKindType,
method: 'POST',
data: that.$common.requestSign()
}).then(res => {
let data = res.data;
that.kindArray = data;
that.kind = data[0].kind;
that.arrayWay = data[0].typeList;
that.type = data[0].typeList[0].type;
console.log(data)
console.log(that.kind, that.type)
that.getDetailSummary();
that.page = 1
that.pageSize = 5
that.orderList = []
that.fetchData()
})
},
bindPickerChange: function(e) {
let that = this;
that.index = e.detail.value
that.kind = that.kindArray[that.index].kind;
that.arrayWay = that.kindArray[that.index].typeList;
that.type = that.kindArray[that.index].typeList[0].type;
console.log(that.kind, that.type)
that.getDetailSummary();
that.fetchData()
},
bindPickerChangeWay: function(e) {
console.log('picker发送选择改变,携带值为', e.detail.value)
this.indexWay = e.detail.value;
this.type = this.arrayWay[this.indexWay].type;
console.log(this.kind, this.type)
this.getDetailSummary();
this.fetchData()
},
bindStartDateChange: function(e) {
this.beginDate = e.detail.value
this.getDetailSummary();
this.fetchData()
},
bindEndDateChange: function(e) {
this.overDate = e.detail.value
this.getDetailSummary();
this.fetchData()
},
getDate(type) {
const date = new Date();
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
if (type === 'start') {
year = year - 60;
} else if (type === 'end') {
year = year + 2;
}
month = month > 9 ? month : '0' + month;
day = day > 9 ? day : '0' + day;
return `${year}-${month}-${day}`;
},
getDetailSummary() {
let that = this;
let data = {
kind: that.kind,
type: that.type,
beginDate: new Date(that.beginDate + " 00:00:00"),
endDate: new Date(that.overDate + " 23:59:59")
};
console.log(data)
that.$myRequest({
url: that.$common.detailSummary,
method: 'POST',
data: that.$common.requestSign(data)
}).then(res => {
let data = res.data;
if (data.rechargeSummary) {
that.detailText = data.rechargeSummary
}
if (data.paySummary) {
that.detailText = data.paySummary
}
})
},
fetchData() {
let that = this
let paramsData = {
pageNum: that.page,
pageSize: that.pageSize,
kind: that.kind,
type: that.type,
beginDate: new Date(that.beginDate + " 00:00:00"),
endDate: new Date(that.overDate + " 23:59:59")
}
// 首页信息获取 接口
that.$myRequest({
url: that.$common.walletDetailsPage,
method: 'POST',
data: that.$common.requestSign(paramsData)
}).then(res => {
const resDataArray = res.data.dataList;
if (that.totalPages === res.data.pageTotals) {
that.isLoadAll = true;
that.loadingTxt = '没有更多数据啦~';
that.orderList = resDataArray;
} else {
that.totalPages = res.data.pageTotals;
that.isLoadAll = true;
that.loadingTxt = '上拉加载更多数据';
that.orderList = resDataArray
}
})
},
}
}
</script>
<style lang="scss" scoped>
.rechargeWrap {
position: relative;
.rechargeArrow {
position: absolute;
right: 10px;
top: 30px;
font-size: 20px;
color: #999;
}
}
.recordCon {
padding-right: 35px;
color: #999;
display: flex;
justify-content: space-between;
}
</style>