|
@@ -0,0 +1,323 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page">
|
|
3
|
+ <div class="profit-info">
|
|
4
|
+ <div class="item">
|
|
5
|
+ <h6 class="tit">余额</h6>
|
|
6
|
+ <div class="money green" v-if="dataInfo">
|
|
7
|
+ {{ dataInfo.balance / 100 }}
|
|
8
|
+ </div>
|
|
9
|
+ </div>
|
|
10
|
+ <div class="item">
|
|
11
|
+ <h6 class="tit">待结算金额</h6>
|
|
12
|
+ <div class="money green" v-if="dataInfo">
|
|
13
|
+ {{ dataInfo.waitingSettleAmount / 100 }}
|
|
14
|
+ </div>
|
|
15
|
+ </div>
|
|
16
|
+ </div>
|
|
17
|
+
|
|
18
|
+ <div class="filter">
|
|
19
|
+ <span class="key">时间:</span>
|
|
20
|
+ <picker
|
|
21
|
+ mode="date"
|
|
22
|
+ @change="dateChange($event, 'startDate')"
|
|
23
|
+ :end="filter.endDate || endDate"
|
|
24
|
+ ><input
|
|
25
|
+ class="value"
|
|
26
|
+ placeholder="开始日期"
|
|
27
|
+ :disabled="true"
|
|
28
|
+ v-model="filter.startDate"
|
|
29
|
+ /></picker>
|
|
30
|
+ <span class="row">至</span>
|
|
31
|
+ <picker
|
|
32
|
+ mode="date"
|
|
33
|
+ @change="dateChange($event, 'endDate')"
|
|
34
|
+ :start="filter.startDate"
|
|
35
|
+ :end="endDate"
|
|
36
|
+ ><input
|
|
37
|
+ class="value"
|
|
38
|
+ placeholder="结束日期"
|
|
39
|
+ :disabled="true"
|
|
40
|
+ v-model="filter.endDate"
|
|
41
|
+ /></picker>
|
|
42
|
+ </div>
|
|
43
|
+
|
|
44
|
+ <ul class="list">
|
|
45
|
+ <h1 class="list-tit">账单列表</h1>
|
|
46
|
+ <li v-for="item of listData" :key="item.id">
|
|
47
|
+ <div class="other">
|
|
48
|
+ <div class="title">
|
|
49
|
+ {{ item.title }}
|
|
50
|
+ <span class="shop">({{ item.shopName }})</span>
|
|
51
|
+ </div>
|
|
52
|
+ <div class="time">
|
|
53
|
+ {{ item.createdTime | dateFormat("yyyy-MM-dd hh:mm") }}
|
|
54
|
+ </div>
|
|
55
|
+ </div>
|
|
56
|
+ <div class="other">
|
|
57
|
+ <div class="status">
|
|
58
|
+ {{ item.type | minaBillType }}({{
|
|
59
|
+ item.status === 0 ? "未结算" : "已结算"
|
|
60
|
+ }})
|
|
61
|
+ </div>
|
|
62
|
+ <div class="money">¥{{ item.amount / 100 }}</div>
|
|
63
|
+ </div>
|
|
64
|
+ <div class="good-main">
|
|
65
|
+ <div class="img">
|
|
66
|
+ <my-image :src="item.productImage"></my-image>
|
|
67
|
+ </div>
|
|
68
|
+ <div class="info">
|
|
69
|
+ <h2 class="good-name">{{ item.productName }}</h2>
|
|
70
|
+ </div>
|
|
71
|
+ </div>
|
|
72
|
+ </li>
|
|
73
|
+ </ul>
|
|
74
|
+ <div class="more-text" v-if="dataEnd">- 没有更多数据了 -</div>
|
|
75
|
+ </div>
|
|
76
|
+</template>
|
|
77
|
+
|
|
78
|
+<script>
|
|
79
|
+let minaBillTypeEnum = {
|
|
80
|
+ 1: "充值",
|
|
81
|
+ 2: "消费",
|
|
82
|
+ 3: "退款",
|
|
83
|
+ 4: "收益",
|
|
84
|
+ 5: "收益返还",
|
|
85
|
+ 6: "提现",
|
|
86
|
+ 7: "收入",
|
|
87
|
+ 8: "优选佣金",
|
|
88
|
+ 9: "优选佣金返还",
|
|
89
|
+ 10: "BD佣金",
|
|
90
|
+ 11: "BD佣金返还",
|
|
91
|
+ 12: "BDM佣金",
|
|
92
|
+ 13: "BDM佣金返还",
|
|
93
|
+};
|
|
94
|
+import MyImage from "../../components/image/index";
|
|
95
|
+export default {
|
|
96
|
+ name: "",
|
|
97
|
+ components: { MyImage },
|
|
98
|
+ filters: {
|
|
99
|
+ minaBillType(v) {
|
|
100
|
+ return minaBillTypeEnum[v];
|
|
101
|
+ },
|
|
102
|
+ },
|
|
103
|
+ // 数据
|
|
104
|
+ data() {
|
|
105
|
+ return {
|
|
106
|
+ filter: {
|
|
107
|
+ startDate: "",
|
|
108
|
+ endDate: "",
|
|
109
|
+ },
|
|
110
|
+ pageIndex: 1,
|
|
111
|
+ dataEnd: false,
|
|
112
|
+ listData: [],
|
|
113
|
+ dataInfo: null,
|
|
114
|
+ endDate: "",
|
|
115
|
+ };
|
|
116
|
+ },
|
|
117
|
+ onShow() {},
|
|
118
|
+
|
|
119
|
+ onLoad() {
|
|
120
|
+ this.getList();
|
|
121
|
+ this.getInfo();
|
|
122
|
+ this.endDate = this.fn.dateFormat2(new Date());
|
|
123
|
+ },
|
|
124
|
+ onPullDownRefresh() {
|
|
125
|
+ this.getList(true);
|
|
126
|
+ this.getInfo();
|
|
127
|
+ },
|
|
128
|
+ onReachBottom() {
|
|
129
|
+ this.getMoreList();
|
|
130
|
+ },
|
|
131
|
+
|
|
132
|
+ // 函数
|
|
133
|
+ methods: {
|
|
134
|
+ getInfo() {
|
|
135
|
+ this.api.get("/Supplier/GetIncomeInfo").then((res) => {
|
|
136
|
+ this.dataInfo = res.data;
|
|
137
|
+ });
|
|
138
|
+ },
|
|
139
|
+
|
|
140
|
+ getList(isPull) {
|
|
141
|
+ uni.showLoading({
|
|
142
|
+ title: "加载中...",
|
|
143
|
+ });
|
|
144
|
+ this.pageIndex = 1;
|
|
145
|
+ this.dataEnd = false;
|
|
146
|
+ let sendData = {
|
|
147
|
+ pageIndex: this.pageIndex++,
|
|
148
|
+ };
|
|
149
|
+ if (this.filter.startDate) {
|
|
150
|
+ sendData.startTime = this.filter.startDate;
|
|
151
|
+ }
|
|
152
|
+ if (this.filter.endDate) {
|
|
153
|
+ sendData.endTime = this.filter.endDate;
|
|
154
|
+ }
|
|
155
|
+ this.api.get("/Supplier/GetBillList", sendData).then((res) => {
|
|
156
|
+ if (isPull) {
|
|
157
|
+ uni.stopPullDownRefresh();
|
|
158
|
+ }
|
|
159
|
+ uni.hideLoading();
|
|
160
|
+ this.listData = res.data;
|
|
161
|
+ if (!this.listData.length) {
|
|
162
|
+ this.dataEnd = true;
|
|
163
|
+ }
|
|
164
|
+ });
|
|
165
|
+ },
|
|
166
|
+ getMoreList() {
|
|
167
|
+ uni.showLoading({
|
|
168
|
+ title: "加载中...",
|
|
169
|
+ });
|
|
170
|
+ let sendData = {
|
|
171
|
+ pageIndex: this.pageIndex++,
|
|
172
|
+ };
|
|
173
|
+ if (this.filter.startDate) {
|
|
174
|
+ sendData.startTime = this.filter.startDate;
|
|
175
|
+ }
|
|
176
|
+ if (this.filter.endDate) {
|
|
177
|
+ sendData.endTime = this.filter.endDate;
|
|
178
|
+ }
|
|
179
|
+ this.api.get("/Supplier/GetBillList", sendData).then((res) => {
|
|
180
|
+ uni.hideLoading();
|
|
181
|
+ this.listData = [...this.listData, ...res.data];
|
|
182
|
+ if (!res.data.length) {
|
|
183
|
+ this.dataEnd = true;
|
|
184
|
+ }
|
|
185
|
+ });
|
|
186
|
+ },
|
|
187
|
+
|
|
188
|
+ dateChange(e, name) {
|
|
189
|
+ this.filter[name] = e.detail.value;
|
|
190
|
+ this.getList();
|
|
191
|
+ },
|
|
192
|
+ },
|
|
193
|
+
|
|
194
|
+ // 数据计算
|
|
195
|
+ computed: {},
|
|
196
|
+
|
|
197
|
+ // 数据监听
|
|
198
|
+ watch: {},
|
|
199
|
+};
|
|
200
|
+</script>
|
|
201
|
+
|
|
202
|
+<style lang="scss" scoped>
|
|
203
|
+.filter {
|
|
204
|
+ display: flex;
|
|
205
|
+ align-items: center;
|
|
206
|
+ padding: px(40);
|
|
207
|
+ font-size: px(44);
|
|
208
|
+ background-color: #fff;
|
|
209
|
+ .row {
|
|
210
|
+ padding: 0 px(20);
|
|
211
|
+ flex-shrink: 0;
|
|
212
|
+ }
|
|
213
|
+ .key {
|
|
214
|
+ flex-shrink: 0;
|
|
215
|
+ }
|
|
216
|
+ .value {
|
|
217
|
+ border: 1px solid #f1f1f1;
|
|
218
|
+ height: px(80);
|
|
219
|
+ width: px(200);
|
|
220
|
+ padding: 0 px(10);
|
|
221
|
+ width: 90%;
|
|
222
|
+ }
|
|
223
|
+}
|
|
224
|
+
|
|
225
|
+.profit-info {
|
|
226
|
+ text-align: center;
|
|
227
|
+ padding: px(60) px(40);
|
|
228
|
+ background-color: #fff;
|
|
229
|
+ display: flex;
|
|
230
|
+ justify-content: space-between;
|
|
231
|
+ align-items: center;
|
|
232
|
+ .item {
|
|
233
|
+ width: 50%;
|
|
234
|
+ }
|
|
235
|
+ .tit {
|
|
236
|
+ font-size: px(44);
|
|
237
|
+ }
|
|
238
|
+ .money {
|
|
239
|
+ font-size: px(56);
|
|
240
|
+ color: #ff4b26;
|
|
241
|
+ margin-top: px(30);
|
|
242
|
+ }
|
|
243
|
+}
|
|
244
|
+.list {
|
|
245
|
+ padding: px(50) 0;
|
|
246
|
+ border-top: 1px solid #f1f1f1;
|
|
247
|
+ background-color: #fff;
|
|
248
|
+ .list-tit {
|
|
249
|
+ font-size: px(50);
|
|
250
|
+ text-align: center;
|
|
251
|
+ padding: px(30) 0;
|
|
252
|
+ }
|
|
253
|
+ li {
|
|
254
|
+ border-bottom: 2px solid #f1f1f1;
|
|
255
|
+ padding: px(30) px(40);
|
|
256
|
+ }
|
|
257
|
+ .other {
|
|
258
|
+ display: flex;
|
|
259
|
+ justify-content: space-between;
|
|
260
|
+ align-items: center;
|
|
261
|
+ padding: px(10) 0;
|
|
262
|
+ .title {
|
|
263
|
+ font-size: px(44);
|
|
264
|
+ .shop {
|
|
265
|
+ font-size: px(40);
|
|
266
|
+ color: #999;
|
|
267
|
+ }
|
|
268
|
+ }
|
|
269
|
+ .time {
|
|
270
|
+ font-size: px(42);
|
|
271
|
+ }
|
|
272
|
+ .money {
|
|
273
|
+ color: #ff4b26;
|
|
274
|
+ }
|
|
275
|
+ }
|
|
276
|
+ .good-main {
|
|
277
|
+ display: flex;
|
|
278
|
+ align-items: stretch;
|
|
279
|
+ justify-content: space-between;
|
|
280
|
+ background-color: #f9f9f9;
|
|
281
|
+ padding: px(10);
|
|
282
|
+ margin-top: px(20);
|
|
283
|
+ .img {
|
|
284
|
+ width: px(250);
|
|
285
|
+ height: px(250);
|
|
286
|
+ margin-right: px(30);
|
|
287
|
+ flex-shrink: 0;
|
|
288
|
+ /deep/ img {
|
|
289
|
+ width: px(250);
|
|
290
|
+ height: px(250);
|
|
291
|
+ }
|
|
292
|
+ }
|
|
293
|
+ .info {
|
|
294
|
+ .good-name {
|
|
295
|
+ font-size: px(42);
|
|
296
|
+ @include omits(2);
|
|
297
|
+ }
|
|
298
|
+ }
|
|
299
|
+ }
|
|
300
|
+}
|
|
301
|
+.blod {
|
|
302
|
+ font-weight: bold;
|
|
303
|
+}
|
|
304
|
+.more-text {
|
|
305
|
+ display: flex;
|
|
306
|
+ justify-content: center;
|
|
307
|
+ padding-bottom: px(60);
|
|
308
|
+ font-size: px(34);
|
|
309
|
+ color: #999;
|
|
310
|
+}
|
|
311
|
+.shop-name {
|
|
312
|
+ color: #666;
|
|
313
|
+ display: inline-block;
|
|
314
|
+ margin-left: px(10);
|
|
315
|
+ font-size: px(40);
|
|
316
|
+}
|
|
317
|
+.green {
|
|
318
|
+ color: #27a34f !important;
|
|
319
|
+}
|
|
320
|
+.red {
|
|
321
|
+ color: #f85e5e !important;
|
|
322
|
+}
|
|
323
|
+</style>
|