|
@@ -1,166 +1,358 @@
|
1
|
|
-import { useState } from "react";
|
|
1
|
+import react, { useState, useEffect } from "react";
|
|
2
|
+import Taro from "@tarojs/taro";
|
|
3
|
+import { getOrderSub, getQrcode } from "@/services/payOrder";
|
|
4
|
+import formatTime from "@/utils/formatTime";
|
|
5
|
+import image from "@/assets/icons/ProCard/8kb.jpg";
|
|
6
|
+import food from "@/assets/icons/ProCard/food.png";
|
|
7
|
+import ProCard_hot from "@/assets/icons/ProCard/ProCard_hot.png";
|
2
|
8
|
|
3
|
|
-import image from '@/assets/icons/ProCard/8kb.jpg'
|
4
|
|
-import food from '@/assets/icons/ProCard/food.png'
|
5
|
|
-import ProCard_hot from '@/assets/icons/ProCard/ProCard_hot.png'
|
|
9
|
+import Evaluation from "@/assets/icons/UserCenter/Evaluation.png";
|
|
10
|
+import Null from "@/assets/icons/UserCenter/null_logo.png";
|
|
11
|
+import QRcode from "@/assets/icons/UserCenter/QRcode.png";
|
6
|
12
|
|
7
|
|
-import Evaluation from '@/assets/icons/UserCenter/Evaluation.png'
|
8
|
|
-import Null from '@/assets/icons/UserCenter/null_logo.png'
|
9
|
|
-import QRcode from '@/assets/icons/UserCenter/QRcode.png'
|
10
|
|
-
|
11
|
|
-import Pay from '@/assets/icons/GuideCheck/Pay_logo.png'
|
12
|
|
-import starOn from '@/assets/icons/GuideCheck/starOn.png'
|
13
|
|
-import starOff from '@/assets/icons/GuideCheck/starOff.png'
|
|
13
|
+import Pay from "@/assets/icons/GuideCheck/Pay_logo.png";
|
|
14
|
+import starOn from "@/assets/icons/GuideCheck/starOn.png";
|
|
15
|
+import starOff from "@/assets/icons/GuideCheck/starOff.png";
|
14
|
16
|
import AlreadyUsed from "../AlreadyUsed";
|
15
|
|
-import './style.less'
|
16
|
|
-
|
|
17
|
+import "./style.less";
|
17
|
18
|
|
18
|
|
-const scoreList = new Array(5).fill(0)
|
19
|
|
-const score = '3.9'
|
|
19
|
+const scoreList = new Array(5).fill(0);
|
|
20
|
+const score = "3.9";
|
20
|
21
|
|
|
22
|
+const dict = {
|
|
23
|
+ 0: { status: 0 },
|
|
24
|
+ 1: { status: 1 },
|
|
25
|
+ 2: { isVerified: 1 },
|
|
26
|
+ 3: { status: 9 },
|
|
27
|
+};
|
21
|
28
|
export default (props) => {
|
|
29
|
+ const { type } = props;
|
|
30
|
+ const [list, setList] = useState([]);
|
|
31
|
+ const [IsPull, setPull] = useState(false);
|
|
32
|
+ const [pageNum, setNumber] = useState(1);
|
|
33
|
+ const [HasNextPage, setHasNextPage] = useState(true);
|
|
34
|
+
|
|
35
|
+ useEffect(() => {
|
|
36
|
+ getList();
|
|
37
|
+ }, [pageNum]);
|
|
38
|
+
|
|
39
|
+ const pageRefresh = () => {
|
|
40
|
+ // 页面下拉刷新回调
|
|
41
|
+ setPull(true);
|
|
42
|
+ };
|
|
43
|
+
|
|
44
|
+ const getList = () => {
|
|
45
|
+ setHasNextPage(false);
|
|
46
|
+
|
|
47
|
+ // let params = {};
|
|
48
|
+
|
|
49
|
+ // if (type === 1) {
|
|
50
|
+ // }
|
|
51
|
+ getOrderSub({
|
|
52
|
+ pageNum,
|
|
53
|
+ pageSize: 10,
|
|
54
|
+ ...(type !== undefined ? dict[type] : null),
|
|
55
|
+ }).then((res) => {
|
|
56
|
+ setList(
|
|
57
|
+ pageNum === 1 ? res.records || [] : list.concat(res.records || [])
|
|
58
|
+ );
|
|
59
|
+ setHasNextPage(res.current < res.pages);
|
|
60
|
+ setPull(false);
|
|
61
|
+ });
|
|
62
|
+ };
|
|
63
|
+
|
|
64
|
+ const pageLoadMore = () => {
|
|
65
|
+ // 页面上拉加载更多
|
|
66
|
+ if (HasNextPage) {
|
|
67
|
+ setNumber(pageNum + 1);
|
|
68
|
+ }
|
|
69
|
+ };
|
|
70
|
+
|
|
71
|
+ useEffect(() => {
|
|
72
|
+ // 下拉刷新触发
|
|
73
|
+ if (IsPull) {
|
|
74
|
+ if (pageNum === 1) {
|
|
75
|
+ getList();
|
|
76
|
+ } else {
|
|
77
|
+ setNumber(1);
|
|
78
|
+ }
|
|
79
|
+ }
|
|
80
|
+ }, [IsPull]);
|
|
81
|
+
|
|
82
|
+ //核销
|
|
83
|
+ const onWriteOff = (item) => {
|
|
84
|
+ Taro.scanCode({
|
|
85
|
+ onlyFromCamera: true,
|
|
86
|
+ success: (res) => {
|
|
87
|
+ if (res.path) {
|
|
88
|
+ getQrcode(res.result).then((result) => {
|
|
89
|
+ Taro.navigateTo({
|
|
90
|
+ url: `/${result.page}?${result.scene}`,
|
|
91
|
+ });
|
|
92
|
+ });
|
|
93
|
+ } else {
|
|
94
|
+ Taro.showToast({
|
|
95
|
+ title: "非当前小程序生成二维码",
|
|
96
|
+ icon: "none",
|
|
97
|
+ duration: 2000,
|
|
98
|
+ });
|
|
99
|
+ }
|
|
100
|
+ },
|
|
101
|
+ fail: (err) => {
|
|
102
|
+ console.log(err, "err");
|
|
103
|
+ },
|
|
104
|
+ });
|
|
105
|
+ };
|
|
106
|
+
|
22
|
107
|
return (
|
23
|
|
- <scroll-view scroll-y style='height: 90vh;' >
|
24
|
|
- <view className='complete-boxs' >
|
25
|
|
- {/* 已使用 */}
|
26
|
|
- <view className='OrderNumber' >订单编号:ABC123456789</view>
|
27
|
|
- <view class='wrapper'>
|
28
|
|
- <view class='left-complete-one'>
|
29
|
|
- <image className='left-image-1' src={ProCard_hot}></image>
|
30
|
|
- <view className='left-viewText'>
|
31
|
|
- 返现¥16.00
|
32
|
|
- </view>
|
33
|
|
- {/* 评分 */}
|
34
|
|
- <view className='card-box-star'>
|
35
|
|
- {
|
36
|
|
- scoreList.map((_, index) => {
|
37
|
|
- console.log(index)
|
38
|
|
- const src = (index + '0.1') < score ? starOn : starOff
|
39
|
|
- return (
|
40
|
|
- <image className='card-star-image' key={index} src={src} />
|
41
|
|
- )
|
42
|
|
- })
|
43
|
|
- }
|
44
|
|
- <text className='card-star-text' >{score}</text>
|
45
|
|
- </view>
|
46
|
|
- <view className='title-image'>
|
47
|
|
- <image className='image-1' mode='scaleToFill' src={image}></image>
|
48
|
|
- <image className='image-2' src={food}></image>
|
49
|
|
- </view>
|
50
|
|
- <view className='title-content'>
|
51
|
|
- <view className='Pro-title'>
|
52
|
|
- <view className='title-text'>【米啊糯】新街口店 <text className='title-money-2' >数量:1张</text></view>
|
|
108
|
+ <scroll-view
|
|
109
|
+ scroll-y
|
|
110
|
+ style="height: 90vh;"
|
|
111
|
+ refresher-enabled
|
|
112
|
+ refresher-triggered={IsPull}
|
|
113
|
+ onrefresherrefresh={pageRefresh}
|
|
114
|
+ refresher-background="#fff"
|
|
115
|
+ onscrolltolower={pageLoadMore}
|
|
116
|
+ >
|
|
117
|
+ <view className="complete-boxs">
|
|
118
|
+ {list.map((item, index) => {
|
|
119
|
+ /* 待支付 */
|
|
120
|
+ if (item.status === 0) {
|
|
121
|
+ return (
|
|
122
|
+ <view key={`${type}-${item.orderId}`}>
|
|
123
|
+ <view className="OrderNumber">订单编号:{item.orderId}</view>
|
|
124
|
+
|
|
125
|
+ <view class="wrapper">
|
|
126
|
+ <view class="left-complete-one">
|
|
127
|
+ <image className="left-image-1" src={ProCard_hot}></image>
|
|
128
|
+ <view className="left-viewText">
|
|
129
|
+ 返现¥{item.cashback / 100}
|
|
130
|
+ </view>
|
|
131
|
+ <view className="title-image">
|
|
132
|
+ <image
|
|
133
|
+ className="image-1"
|
|
134
|
+ mode="scaleToFill"
|
|
135
|
+ src={item.poster || image}
|
|
136
|
+ ></image>
|
|
137
|
+ <image className="image-2" src={food}></image>
|
|
138
|
+ </view>
|
|
139
|
+ <view className="title-content">
|
|
140
|
+ <view className="Pro-title">
|
|
141
|
+ <view className="title-text">
|
|
142
|
+ {item.packageDescription}
|
|
143
|
+ <text className="title-money-2">
|
|
144
|
+ 数量:{item.amount}张
|
|
145
|
+ </text>
|
|
146
|
+ </view>
|
|
147
|
+ </view>
|
|
148
|
+ <text className="title-money">
|
|
149
|
+ ¥{item.unitPrice / 100}元
|
|
150
|
+ </text>
|
|
151
|
+ <view className="title-time">
|
|
152
|
+ 有效期:{formatTime(item?.startTime, "yyyy/MM/dd")}-
|
|
153
|
+ {formatTime(item.endTime, "yyyy/MM/dd")}
|
|
154
|
+ </view>
|
|
155
|
+ </view>
|
|
156
|
+ </view>
|
|
157
|
+ <view class="right-complete-two">
|
|
158
|
+ <view
|
|
159
|
+ className="right-content"
|
|
160
|
+ onClick={() => {
|
|
161
|
+ Taro.navigateTo({
|
|
162
|
+ url: `/pages/PayOrder/index?orderId=${item.orderId}`,
|
|
163
|
+ });
|
|
164
|
+ }}
|
|
165
|
+ >
|
|
166
|
+ <image className="right-image" src={Pay} />
|
|
167
|
+ <view className="right-title">支付</view>
|
|
168
|
+ </view>
|
|
169
|
+ </view>
|
|
170
|
+ </view>
|
53
|
171
|
</view>
|
54
|
|
- <text className='title-money' >¥6990元</text>
|
55
|
|
- <view className='title-time' >核销时间:2021/06/21 12:00</view>
|
56
|
|
- </view>
|
57
|
|
- </view>
|
58
|
|
- <view class='right-complete-two'>
|
59
|
|
- <view className='right-content'>
|
60
|
|
- <image className='right-image' src={Evaluation} />
|
61
|
|
- <view className='right-title'>评价</view>
|
62
|
|
- </view>
|
63
|
|
- </view>
|
64
|
|
- </view>
|
65
|
|
- {/* 待核销 */}
|
66
|
|
- <view className='OrderNumber'>订单编号:ABC123456789</view>
|
67
|
|
- <view class='wrapper'>
|
68
|
|
- <view class='left-complete-one'>
|
69
|
|
- <image className='left-image-1' src={ProCard_hot}></image>
|
70
|
|
- <view className='left-viewText'>
|
71
|
|
- 返现¥16.00
|
72
|
|
- </view>
|
73
|
|
- <view className='title-image'>
|
74
|
|
- <image className='image-1' mode='scaleToFill' src={image}></image>
|
75
|
|
- <image className='image-2' src={food}></image>
|
76
|
|
- </view>
|
77
|
|
- <view className='title-content'>
|
78
|
|
- <view className='Pro-title'>
|
79
|
|
- <view className='title-text'>【SEOUL·创意韩国料理】 <text className='title-money-2' >数量:1张</text></view>
|
|
172
|
+ );
|
|
173
|
+ }
|
|
174
|
+ /* 待核销 */
|
|
175
|
+ if (item.status === 1 && item.isVerified == 0) {
|
|
176
|
+ return (
|
|
177
|
+ <view key={`${type}-${item.orderId}`}>
|
|
178
|
+ <view className="OrderNumber">订单编号:{item.orderId}</view>
|
|
179
|
+ <view class="wrapper">
|
|
180
|
+ <view class="left-complete-one">
|
|
181
|
+ <image className="left-image-1" src={ProCard_hot}></image>
|
|
182
|
+ <view className="left-viewText">
|
|
183
|
+ 返现¥{item.cashback / 100}
|
|
184
|
+ </view>
|
|
185
|
+ <view className="title-image">
|
|
186
|
+ <image
|
|
187
|
+ className="image-1"
|
|
188
|
+ mode="scaleToFill"
|
|
189
|
+ src={item.poster || image}
|
|
190
|
+ ></image>
|
|
191
|
+ <image className="image-2" src={food}></image>
|
|
192
|
+ </view>
|
|
193
|
+ <view className="title-content">
|
|
194
|
+ <view className="Pro-title">
|
|
195
|
+ <view className="title-text">
|
|
196
|
+ {item.packageDescription}
|
|
197
|
+ <text className="title-money-2">
|
|
198
|
+ 数量:{item.amount}张
|
|
199
|
+ </text>
|
|
200
|
+ </view>
|
|
201
|
+ </view>
|
|
202
|
+ <text className="title-money">
|
|
203
|
+ ¥{item.unitPrice / 100}元
|
|
204
|
+ </text>
|
|
205
|
+ <view className="title-time">
|
|
206
|
+ 有效期:{formatTime(item?.startTime, "yyyy/MM/dd")}-
|
|
207
|
+ {formatTime(item.endTime, "yyyy/MM/dd")}
|
|
208
|
+ </view>
|
|
209
|
+ </view>
|
|
210
|
+ </view>
|
|
211
|
+ <view class="right-complete-two">
|
|
212
|
+ <view
|
|
213
|
+ className="right-content"
|
|
214
|
+ onClick={() => onWriteOff(item)}
|
|
215
|
+ >
|
|
216
|
+ <image className="right-image" src={QRcode} />
|
|
217
|
+ <view className="right-title">扫码核销</view>
|
|
218
|
+ </view>
|
|
219
|
+ </view>
|
|
220
|
+ </view>
|
80
|
221
|
</view>
|
81
|
|
- <text className='title-money' >¥6990元</text>
|
82
|
|
- <view className='title-time' >有效期:2021/06/21-2021/12/31</view>
|
83
|
|
- </view>
|
84
|
|
- </view>
|
85
|
|
- <view class='right-complete-two'>
|
86
|
|
- <view className='right-content'>
|
87
|
|
- <image className='right-image' src={QRcode} />
|
88
|
|
- <view className='right-title'>扫码核销</view>
|
89
|
|
- </view>
|
90
|
|
- </view>
|
91
|
|
- </view>
|
92
|
|
- {/* 待支付 */}
|
93
|
|
- <view className='OrderNumber'>订单编号:ABC123456789</view>
|
94
|
|
-
|
95
|
|
- <view class='wrapper'>
|
96
|
|
- <view class='left-complete-one'>
|
97
|
|
- <image className='left-image-1' src={ProCard_hot}></image>
|
98
|
|
- <view className='left-viewText'>
|
99
|
|
- 返现¥16.00
|
100
|
|
- </view>
|
101
|
|
- <view className='title-image'>
|
102
|
|
- <image className='image-1' mode='scaleToFill' src={image}></image>
|
103
|
|
- <image className='image-2' src={food}></image>
|
104
|
|
- </view>
|
105
|
|
- <view className='title-content'>
|
106
|
|
- <view className='Pro-title'>
|
107
|
|
- <view className='title-text'>【SEOUL·创意韩国料理】 <text className='title-money-2' >数量:1张</text></view>
|
|
222
|
+ );
|
|
223
|
+ }
|
|
224
|
+ /* 已过期 */
|
|
225
|
+ if (item.status === 9) {
|
|
226
|
+ return (
|
|
227
|
+ <view key={`${type}-${item.orderId}`}>
|
|
228
|
+ <view className="OrderNumber">订单编号:{item.orderId}</view>
|
|
229
|
+ <view class="wrapper">
|
|
230
|
+ <view class="left-complete-one">
|
|
231
|
+ <image className="left-image-1" src={ProCard_hot}></image>
|
|
232
|
+ <view className="left-viewText">
|
|
233
|
+ 返现¥{item.cashback / 100}
|
|
234
|
+ </view>
|
|
235
|
+ {/* 评分 */}
|
|
236
|
+ <view className="card-box-star">
|
|
237
|
+ {scoreList.map((_, index) => {
|
|
238
|
+ const src = index + 1 <= item.score ? starOn : starOff;
|
|
239
|
+ return (
|
|
240
|
+ <image
|
|
241
|
+ className="card-star-image"
|
|
242
|
+ key={index}
|
|
243
|
+ src={src}
|
|
244
|
+ />
|
|
245
|
+ );
|
|
246
|
+ })}
|
|
247
|
+ <text className="card-star-text">{item.score}</text>
|
|
248
|
+ </view>
|
|
249
|
+ <view className="title-image">
|
|
250
|
+ <image
|
|
251
|
+ className="image-1"
|
|
252
|
+ mode="scaleToFill"
|
|
253
|
+ src={item.poster || image}
|
|
254
|
+ ></image>
|
|
255
|
+ <image className="image-2" src={food}></image>
|
|
256
|
+ </view>
|
|
257
|
+ <view className="title-content">
|
|
258
|
+ <view className="Pro-title">
|
|
259
|
+ <view className="title-text">
|
|
260
|
+ {item.packageDescription}
|
|
261
|
+ <text className="title-money-2">
|
|
262
|
+ 数量:{item.amount}张
|
|
263
|
+ </text>
|
|
264
|
+ </view>
|
|
265
|
+ </view>
|
|
266
|
+ <text className="title-money">
|
|
267
|
+ ¥{item.unitPrice / 100}元
|
|
268
|
+ </text>
|
|
269
|
+ <view className="title-time">
|
|
270
|
+ 有效期:{formatTime(item?.startTime, "yyyy/MM/dd")}-
|
|
271
|
+ {formatTime(item.endTime, "yyyy/MM/dd")}
|
|
272
|
+ </view>
|
|
273
|
+ </view>
|
|
274
|
+ </view>
|
|
275
|
+ <view class="right-complete-two">
|
|
276
|
+ <view className="right-content">
|
|
277
|
+ <image className="right-image-2" src={Null} />
|
|
278
|
+ </view>
|
|
279
|
+ </view>
|
|
280
|
+ </view>
|
108
|
281
|
</view>
|
109
|
|
- <text className='title-money' >¥6990元</text>
|
110
|
|
- <view className='title-time' >有效期:2021/06/21-2021/12/31</view>
|
111
|
|
- </view>
|
112
|
|
- </view>
|
113
|
|
- <view class='right-complete-two'>
|
114
|
|
- <view className='right-content'>
|
115
|
|
- <image className='right-image' src={Pay} />
|
116
|
|
- <view className='right-title'>支付</view>
|
117
|
|
- </view>
|
118
|
|
- </view>
|
119
|
|
- </view>
|
120
|
|
- {/* 已过期 */}
|
121
|
|
- <view className='OrderNumber'>订单编号:ABC123456789</view>
|
122
|
|
- <view class='wrapper'>
|
123
|
|
- <view class='left-complete-one'>
|
124
|
|
- <image className='left-image-1' src={ProCard_hot}></image>
|
125
|
|
- <view className='left-viewText'>
|
126
|
|
- 返现¥16.00
|
127
|
|
- </view>
|
128
|
|
- {/* 评分 */}
|
129
|
|
- <view className='card-box-star'>
|
130
|
|
- {
|
131
|
|
- scoreList.map((_, index) => {
|
132
|
|
- console.log(index)
|
133
|
|
- const src = (index + '0.1') < score ? starOn : starOff
|
134
|
|
- return (
|
135
|
|
- <image className='card-star-image' key={index} src={src} />
|
136
|
|
- )
|
137
|
|
- })
|
138
|
|
- }
|
139
|
|
- <text className='card-star-text' >{score}</text>
|
140
|
|
- </view>
|
141
|
|
- <view className='title-image'>
|
142
|
|
- <image className='image-1' mode='scaleToFill' src={image}></image>
|
143
|
|
- <image className='image-2' src={food}></image>
|
144
|
|
- </view>
|
145
|
|
- <view className='title-content'>
|
146
|
|
- <view className='Pro-title'>
|
147
|
|
- <view className='title-text'>【SEOUL·创意韩国料理】 <text className='title-money-2' >数量:1张</text></view>
|
|
282
|
+ );
|
|
283
|
+ }
|
|
284
|
+ /* 已使用 */
|
|
285
|
+ if (item.isVerified == 1) {
|
|
286
|
+ return (
|
|
287
|
+ <view key={`${type}-${item.orderId}`}>
|
|
288
|
+ <view className="OrderNumber">订单编号:{item.orderId}</view>
|
|
289
|
+ <view class="wrapper">
|
|
290
|
+ <view class="left-complete-one">
|
|
291
|
+ <image className="left-image-1" src={ProCard_hot}></image>
|
|
292
|
+ <view className="left-viewText">
|
|
293
|
+ 返现¥{item.cashback / 100}
|
|
294
|
+ </view>
|
|
295
|
+ {/* 评分 */}
|
|
296
|
+ <view className="card-box-star">
|
|
297
|
+ {scoreList.map((_, index) => {
|
|
298
|
+ console.log(index);
|
|
299
|
+ const src = index + 1 <= item.score ? starOn : starOff;
|
|
300
|
+ return (
|
|
301
|
+ <image
|
|
302
|
+ className="card-star-image"
|
|
303
|
+ key={index}
|
|
304
|
+ src={src}
|
|
305
|
+ />
|
|
306
|
+ );
|
|
307
|
+ })}
|
|
308
|
+ <text className="card-star-text">{item.score}</text>
|
|
309
|
+ </view>
|
|
310
|
+ <view className="title-image">
|
|
311
|
+ <image
|
|
312
|
+ className="image-1"
|
|
313
|
+ mode="scaleToFill"
|
|
314
|
+ src={item.poster || image}
|
|
315
|
+ ></image>
|
|
316
|
+ <image className="image-2" src={food}></image>
|
|
317
|
+ </view>
|
|
318
|
+ <view className="title-content">
|
|
319
|
+ <view className="Pro-title">
|
|
320
|
+ <view className="title-text">
|
|
321
|
+ {item.packageDescription}
|
|
322
|
+ <text className="title-money-2">
|
|
323
|
+ 数量:{item.amount}张
|
|
324
|
+ </text>
|
|
325
|
+ </view>
|
|
326
|
+ </view>
|
|
327
|
+ <text className="title-money">
|
|
328
|
+ ¥{item.unitPrice / 100}元
|
|
329
|
+ </text>
|
|
330
|
+ <view className="title-time">
|
|
331
|
+ 核销时间:{" "}
|
|
332
|
+ {formatTime(item.verifiedDate, "yyyy/MM/dd hh:mm")}
|
|
333
|
+ </view>
|
|
334
|
+ </view>
|
|
335
|
+ </view>
|
|
336
|
+ <view class="right-complete-two">
|
|
337
|
+ <view className="right-content">
|
|
338
|
+ <image className="right-image" src={Evaluation} />
|
|
339
|
+ <view className="right-title">评价</view>
|
|
340
|
+ </view>
|
|
341
|
+ </view>
|
|
342
|
+ </view>
|
148
|
343
|
</view>
|
149
|
|
- <text className='title-money' >¥6990元</text>
|
150
|
|
- <view className='title-time' >有效期:2021/06/21-2021/12/31</view>
|
151
|
|
- </view>
|
152
|
|
- </view>
|
153
|
|
- <view class='right-complete-two'>
|
154
|
|
- <view className='right-content'>
|
155
|
|
- <image className='right-image-2' src={Null} />
|
156
|
|
- </view>
|
157
|
|
- </view>
|
158
|
|
- </view>
|
159
|
|
- <view className='foot'>
|
160
|
|
- 已经到底了~
|
161
|
|
- </view>
|
|
344
|
+ );
|
|
345
|
+ }
|
|
346
|
+ })}
|
|
347
|
+
|
|
348
|
+ <view className="foot">已经到底了~</view>
|
162
|
349
|
</view>
|
163
|
|
- </scroll-view >
|
|
350
|
+ </scroll-view>
|
|
351
|
+ );
|
|
352
|
+};
|
|
353
|
+
|
|
354
|
+// {/* 待核销 */}
|
|
355
|
+
|
|
356
|
+// {/* 待支付 */}
|
164
|
357
|
|
165
|
|
- )
|
166
|
|
-}
|
|
358
|
+// {/* 已过期 */}
|