4b045f7c
刘淇
江阴初始化项目
|
1
|
<template>
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
2
|
<view>
|
10ba946f
chenbiao
add 余额明细 接口联调
|
3
|
<view class="statistics yellow-bg uni-list-cell-pd" style="color: #fff">{{detailText | tranNull}}</view>
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
4
5
6
7
8
9
|
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-left">
消费类型
</view>
<view class="uni-list-cell-db">
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
10
|
<picker @change="bindPickerChange" :value="index" :range="kindArray" :range-key="'kindName'">
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
11
12
13
14
15
16
17
18
19
20
21
22
|
<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">
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
23
|
<picker @change="bindPickerChangeWay" :value="indexWay" :range="arrayWay" :range-key="'typeName'">
|
10ba946f
chenbiao
add 余额明细 接口联调
|
24
|
<view class="uni-input">{{arrayWay[indexWay].typeName}}</view>
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
25
26
27
28
29
30
31
32
33
34
35
36
37
|
</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">
|
10ba946f
chenbiao
add 余额明细 接口联调
|
38
|
<view class="uni-input">{{beginDate}}</view>
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
</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>
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
59
|
<view class="" v-if="orderList.length > 0">
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
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
|
<uni-list class="rechargeWrap">
<view class="recordCon uni-list-cell-pd">
<text>+66</text>
<text>充值成功</text>
</view>
<view class="recordCon uni-list-cell-pd">
<text class="color-green">微信充值</text>
<text>2020-10-01 01:01:01</text>
</view>
</uni-list>
<uni-list class="rechargeWrap">
<view class="recordCon uni-list-cell-pd">
<text>+66</text>
<text>充值成功</text>
</view>
<view class="recordCon uni-list-cell-pd">
<text class="color-blue">支付宝充值</text>
<text>2020-10-01 01:01:01</text>
</view>
</uni-list>
<uni-list class="rechargeWrap">
<view class="recordCon uni-list-cell-pd">
<text>+66</text>
<text>充值成功</text>
</view>
<view class="recordCon uni-list-cell-pd">
<text class="color-red">线下公对公充值</text>
<text>2020-10-01 01:01:01</text>
</view>
</uni-list>
<uni-list class="rechargeWrap">
<view class="recordCon uni-list-cell-pd">
<text>-66</text>
<text>支付成功</text>
</view>
<view class="recordCon uni-list-cell-pd">
<text class="color-green">购买卡券</text>
<text>2020-10-01 01:01:01</text>
</view>
<view class="rechargeArrow">
>
</view>
</uni-list>
<uni-list class="rechargeWrap">
<view class="recordCon uni-list-cell-pd">
<text>-66</text>
<text>支付成功</text>
</view>
<view class="recordCon uni-list-cell-pd">
<text class="">停车支付</text>
<text>2020-10-01 01:01:01</text>
</view>
<view class="rechargeArrow">
>
</view>
</uni-list>
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
123
124
125
126
127
128
|
</view>
<!-- 底部文案 -->
<view class="">
<text>{{status === 'more' ? contentText.contentdown : (status === 'loading' ? contentText.contentrefresh : contentText.contentnomore)}}</text>
</view>
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
129
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
130
131
132
|
</view>
|
4b045f7c
刘淇
江阴初始化项目
|
133
134
135
|
</template>
<script>
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
136
137
138
139
140
141
|
export default {
data() {
const currentDate = this.getDate({
format: true
})
return {
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
142
143
|
detailText: '',
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
144
145
146
147
148
|
title: 'picker',
kindArray: [],
arrayWay: [],
index: 0,
indexWay: 0,
|
10ba946f
chenbiao
add 余额明细 接口联调
|
149
|
beginDate: currentDate,
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
150
|
overDate: currentDate,
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
151
152
153
154
|
orderList: [],
page: 1,
pageSize: 10,
status: 'more', // 默认展示上拉显示更多
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
155
|
contentText: {
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
156
157
158
159
160
|
contentdown: "上拉显示更多",
contentrefresh: "正在加载...",
contentnomore: "没有更多数据了"
}
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
161
162
163
164
165
166
|
}
},
onLoad(params) {
wx.showShareMenu({
withShareTicket: true
});
|
10ba946f
chenbiao
add 余额明细 接口联调
|
167
|
this.getKindType();
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
168
169
170
171
|
// 页码归为第1页
this.page = 1
// 初始化获取列表数据
this.fetchData()
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
172
173
174
|
},
onShow() {
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
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
|
this.getDetailSummary();
this.page = 1
this.pageSize = 10
this.orderList = []
this.fetchData()
},
// 下拉刷新触发
onPullDownRefresh(val) {
this.page = 1
this.pageSize = 10
console.log('下拉刷新', val)
this.fetchData().then(() => {
uni.stopPullDownRefresh();
}).catch(err => {
uni.stopPullDownRefresh();
// 弹窗提示
uni.showToast({
title: '请求出错了',
icon: 'none'
})
})
},
// 上拉加载触发
onReachBottom() {
// 改变状态为加载中
this.status = 'loading'
// 页码发生变化
++this.page
// 加载更多
this.fetchData('loadMore').then(resArray => {
// 此时判断当前有没有请求到数据
if (resArray.length) {
this.status = 'more'
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
208
|
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
209
210
211
212
213
214
215
|
} else {
this.status = 'noMore';
--this.page;
}
}).catch(err => {
console.log('网络请求失败')
})
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
216
|
},
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
217
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
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 => {
|
10ba946f
chenbiao
add 余额明细 接口联调
|
234
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
235
|
let data = res.data;
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
236
|
that.kindArray = data;
|
10ba946f
chenbiao
add 余额明细 接口联调
|
237
238
|
that.arrayWay = data[0].typeList;
console.log(data)
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
239
240
241
242
243
244
|
})
},
bindPickerChange: function(e) {
let that = this;
that.index = e.detail.value
|
10ba946f
chenbiao
add 余额明细 接口联调
|
245
|
that.arrayWay = that.kindArray[that.index].typeList;
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
246
|
that.fetchData()
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
247
248
249
250
|
},
bindPickerChangeWay: function(e) {
console.log('picker发送选择改变,携带值为', e.detail.value)
this.indexWay = e.detail.value
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
251
|
that.fetchData()
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
252
253
|
},
bindStartDateChange: function(e) {
|
10ba946f
chenbiao
add 余额明细 接口联调
|
254
|
this.beginDate = e.detail.value
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
255
|
that.fetchData()
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
256
257
258
|
},
bindEndDateChange: function(e) {
this.overDate = e.detail.value
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
259
|
that.fetchData()
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
|
},
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}`;
},
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
275
276
277
|
getDetailSummary() {
let that = this;
let data = {
|
10ba946f
chenbiao
add 余额明细 接口联调
|
278
279
|
kind: '1',
type: '1',
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
280
281
|
beginDate: new Date(that.beginDate + " 00:00:00"),
endDate: new Date(that.overDate + " 23:59:59")
|
10ba946f
chenbiao
add 余额明细 接口联调
|
282
283
284
285
286
287
288
|
};
console.log(data)
that.$myRequest({
url: that.$common.detailSummary,
method: 'POST',
data: that.$common.requestSign(data)
}).then(res => {
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
289
|
|
10ba946f
chenbiao
add 余额明细 接口联调
|
290
|
let data = res.data;
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
291
|
if (data.rechargeSummary) {
|
10ba946f
chenbiao
add 余额明细 接口联调
|
292
293
|
that.detailText = data.rechargeSummary
}
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
294
|
if (data.paySummary) {
|
10ba946f
chenbiao
add 余额明细 接口联调
|
295
296
|
that.detailText = data.paySummary
}
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
297
|
|
10ba946f
chenbiao
add 余额明细 接口联调
|
298
|
})
|
b9ec5385
chenbiao
add 余额明细 刷新下拉分页请求
|
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
|
},
fetchData(way) {
let that = this
let paramsData = {
pageNum: that.page,
pageSize: that.pageSize,
kind: '1',
type: '1',
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
if (way === 'loadMore') {
that.orderList = that.orderList.concat(resDataArray)
} else {
that.orderList = resDataArray
}
})
},
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
334
335
|
}
}
|
4b045f7c
刘淇
江阴初始化项目
|
336
337
338
|
</script>
<style lang="scss" scoped>
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
|
.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;
}
|
4b045f7c
刘淇
江阴初始化项目
|
357
|
</style>
|