Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wx-school-app
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姜雷
wx-school-app
Commits
45adba11
Commit
45adba11
authored
Jul 02, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into test
parents
35c29a83
006468e4
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
268 additions
and
120 deletions
+268
-120
OrderList.scss
src/pages/Order/OrderList/OrderList.scss
+12
-3
OrderList.tsx
src/pages/Order/OrderList/OrderList.tsx
+187
-91
store.ts
src/pages/Order/OrderList/store.ts
+69
-6
useConsumeOrders.ts
src/pages/Order/OrderList/useConsumeOrders.ts
+0
-10
useRechargeOrders.ts
src/pages/Order/OrderList/useRechargeOrders.ts
+0
-10
No files found.
src/pages/Order/OrderList/OrderList.scss
View file @
45adba11
page
{
padding-top
:
80px
;
background-color
:
#eee
;
}
.OrderList
{
.OrderList
{
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
width
:
100%
;
width
:
100%
;
height
:
100%
;
//
height: 100%;
overflow
:
hidden
;
//
overflow: hidden;
.Tab
{
.Tab
{
position
:
absolute
;
position
:
fixed
;
top
:
0
;
top
:
0
;
display
:
flex
;
display
:
flex
;
background-color
:
#fff
;
background-color
:
#fff
;
...
@@ -14,6 +18,7 @@
...
@@ -14,6 +18,7 @@
line-height
:
80px
;
line-height
:
80px
;
text-align
:
center
;
text-align
:
center
;
font-size
:
30px
;
font-size
:
30px
;
z-index
:
1
;
.Tab-item
{
.Tab-item
{
width
:
50%
;
width
:
50%
;
color
:
#999
;
color
:
#999
;
...
@@ -28,6 +33,10 @@
...
@@ -28,6 +33,10 @@
margin-top
:
80px
;
margin-top
:
80px
;
background-color
:
#eee
;
background-color
:
#eee
;
}
}
.OrderList-Wrap
{
padding-top
:
22px
;
background-color
:
#eee
;
}
.OrderList-Group
{
.OrderList-Group
{
margin-bottom
:
22px
;
margin-bottom
:
22px
;
.OrderList-GroupTitle
{
.OrderList-GroupTitle
{
...
...
src/pages/Order/OrderList/OrderList.tsx
View file @
45adba11
import
{
ComponentClass
}
from
'react'
;
import
{
ComponentClass
}
from
'react'
;
import
Taro
,
{
Component
,
Config
,
useState
,
useEffect
}
from
'@tarojs/taro'
;
import
Taro
,
{
Component
,
Config
,
useState
,
useEffect
}
from
'@tarojs/taro'
;
import
{
View
,
Text
,
ScrollView
}
from
'@tarojs/components'
;
import
{
View
,
Text
,
ScrollView
}
from
'@tarojs/components'
;
import
{
connect
,
useSelector
,
useDispatch
}
from
'@tarojs/redux'
;
import
{
connect
,
useSelector
,
useDispatch
,
useStore
}
from
'@tarojs/redux'
;
import
OrderItem
from
'../components/OrderItem/OrderItem'
;
import
OrderItem
from
'../components/OrderItem/OrderItem'
;
import
'./OrderList.scss'
;
import
'./OrderList.scss'
;
import
{
fetchAllOrder
,
RechargeOrderItem
}
from
'../../../api/order'
;
import
{
fetchAllOrder
,
RechargeOrderItem
,
fetchRechargeOrders
,
}
from
'../../../api/order'
;
import
{
Customer
}
from
'@/types/Customer/Customer'
;
import
{
Customer
}
from
'@/types/Customer/Customer'
;
import
{
shareHandle
}
from
'@/common/shareMethod'
;
import
{
shareHandle
}
from
'@/common/shareMethod'
;
import
RechargeItem
from
'../components/RechargeItem/RechargeItem'
;
import
RechargeItem
from
'../components/RechargeItem/RechargeItem'
;
import
useRechargeOrders
from
'./useRechargeOrders'
;
import
useConsumeOrders
from
'./useConsumeOrders'
;
import
Order
,
{
AllOrderItem
}
from
'@/types/Order/Order'
;
import
Order
,
{
AllOrderItem
}
from
'@/types/Order/Order'
;
import
{
selectOrder
,
updateConsumeOrders
}
from
'./actions'
;
import
{
selectOrder
,
updateConsumeOrders
,
updateRechargeOrders
,
appendConsumeOrders
,
appendRechargeOrders
,
}
from
'./actions'
;
import
{
ConsumeOrderInfo
,
RechargeOrderInfo
,
OrderStoreState
}
from
'./store'
;
type
PageStateProps
=
{
type
PageStateProps
=
{
userinfo
:
Customer
;
userinfo
:
Customer
;
consume
:
ConsumeOrderInfo
;
recharge
:
RechargeOrderInfo
;
};
};
type
PageDispatchProps
=
{
type
PageDispatchProps
=
{
selectOrder
:
(
entity
:
Order
)
=>
void
;
selectOrder
:
(
entity
:
Order
)
=>
void
;
updateConsumeOrders
:
(
entity
:
AllOrderItem
[])
=>
void
;
updateConsumeOrders
:
(
entity
:
AllOrderItem
[])
=>
void
;
appendConsumeOrders
:
(
entity
:
AllOrderItem
[])
=>
void
;
updateRechargeOrders
:
(
entity
:
RechargeOrderItem
[])
=>
void
;
appendRechargeOrders
:
(
entity
:
RechargeOrderItem
[])
=>
void
;
};
};
type
PageOwnProps
=
{};
type
PageOwnProps
=
{};
...
@@ -29,6 +43,9 @@ type PageProps = PageStateProps & PageDispatchProps & PageOwnProps;
...
@@ -29,6 +43,9 @@ type PageProps = PageStateProps & PageDispatchProps & PageOwnProps;
type
PageState
=
{
type
PageState
=
{
needRefresh
:
boolean
;
needRefresh
:
boolean
;
orderType
:
number
;
// 0 消费,1 充值
consumeScrollTop
:
number
;
rechargeScrollTop
:
number
;
};
};
interface
OrderList
{
interface
OrderList
{
...
@@ -36,8 +53,10 @@ interface OrderList {
...
@@ -36,8 +53,10 @@ interface OrderList {
state
:
PageState
;
state
:
PageState
;
}
}
@
connect
(
@
connect
(
state
=>
({
(
state
:
{
userinfo
:
Customer
;
OrderList
:
OrderStoreState
})
=>
({
userinfo
:
state
.
userinfo
,
userinfo
:
state
.
userinfo
,
consume
:
state
.
OrderList
.
consume
,
recharge
:
state
.
OrderList
.
recharge
,
}),
}),
dispatch
=>
({
dispatch
=>
({
selectOrder
(
data
:
Order
)
{
selectOrder
(
data
:
Order
)
{
...
@@ -46,6 +65,15 @@ interface OrderList {
...
@@ -46,6 +65,15 @@ interface OrderList {
updateConsumeOrders
(
data
:
AllOrderItem
[])
{
updateConsumeOrders
(
data
:
AllOrderItem
[])
{
dispatch
(
updateConsumeOrders
(
data
));
dispatch
(
updateConsumeOrders
(
data
));
},
},
appendConsumeOrders
(
data
:
AllOrderItem
[])
{
dispatch
(
appendConsumeOrders
(
data
));
},
updateRechargeOrders
(
data
:
RechargeOrderItem
[])
{
dispatch
(
updateRechargeOrders
(
data
));
},
appendRechargeOrders
(
data
:
RechargeOrderItem
[])
{
dispatch
(
appendRechargeOrders
(
data
));
},
}),
}),
)
)
class
OrderList
extends
Component
{
class
OrderList
extends
Component
{
...
@@ -59,20 +87,80 @@ class OrderList extends Component {
...
@@ -59,20 +87,80 @@ class OrderList extends Component {
super
(
props
);
super
(
props
);
this
.
state
=
{
this
.
state
=
{
needRefresh
:
false
,
needRefresh
:
false
,
orderType
:
0
,
consumeScrollTop
:
0
,
rechargeScrollTop
:
0
,
};
};
}
}
// componentWillMount() {
componentWillMount
()
{
// this.getAllOrderHandle();
this
.
fetchConsumeOrders
();
// }
this
.
fetchRechargeOrders
();
}
componentDidShow
()
{
componentDidShow
()
{
const
{
needRefresh
}
=
this
.
state
;
const
{
needRefresh
}
=
this
.
state
;
if
(
needRefresh
)
{
this
.
fetchConsumeOrders
();
}
}
onPullDownRefresh
()
{
const
{
orderType
}
=
this
.
state
;
Taro
.
showLoading
({
title
:
''
,
mask
:
true
,
});
if
(
orderType
)
{
this
.
fetchRechargeOrders
().
then
(()
=>
{
Taro
.
stopPullDownRefresh
();
Taro
.
hideLoading
();
});
}
else
{
this
.
fetchConsumeOrders
().
then
(()
=>
{
Taro
.
stopPullDownRefresh
();
Taro
.
hideLoading
();
});
}
}
onReachBottom
()
{
const
{
orderType
}
=
this
.
state
;
Taro
.
showLoading
({
title
:
''
,
mask
:
true
,
});
if
(
orderType
)
{
this
.
appendRechargeOrders
().
then
(()
=>
{
Taro
.
stopPullDownRefresh
();
Taro
.
hideLoading
();
});
}
else
{
this
.
appendConsumeOrders
().
then
(()
=>
{
Taro
.
stopPullDownRefresh
();
Taro
.
hideLoading
();
});
}
}
onPageScroll
(
e
)
{
const
{
orderType
}
=
this
.
state
;
if
(
orderType
)
{
this
.
setState
({
rechargeScrollTop
:
e
.
scrollTop
,
});
}
else
{
this
.
setState
({
consumeScrollTop
:
e
.
scrollTop
,
});
}
}
fetchConsumeOrders
()
{
const
{
const
{
userinfo
:
{
customerId
},
userinfo
:
{
customerId
},
updateConsumeOrders
,
updateConsumeOrders
,
}
=
this
.
props
;
}
=
this
.
props
;
if
(
needRefresh
)
{
return
fetchAllOrder
({
fetchAllOrder
({
customerId
,
customerId
,
pageSize
:
10
,
pageSize
:
10
,
})
})
...
@@ -85,16 +173,67 @@ class OrderList extends Component {
...
@@ -85,16 +173,67 @@ class OrderList extends Component {
icon
:
'none'
,
icon
:
'none'
,
});
});
});
});
// this.getAllOrderHandle();
}
}
appendConsumeOrders
()
{
const
{
userinfo
:
{
customerId
},
consume
:
{
lastOrderId
},
appendConsumeOrders
,
}
=
this
.
props
;
return
fetchAllOrder
({
customerId
,
lastOrderId
,
pageSize
:
10
,
})
.
then
(
res
=>
{
appendConsumeOrders
(
res
.
data
);
})
.
catch
(
err
=>
{
Taro
.
showToast
({
title
:
err
.
msg
||
'请求失败'
,
icon
:
'none'
,
});
});
}
fetchRechargeOrders
()
{
const
{
userinfo
:
{
customerId
},
updateRechargeOrders
,
}
=
this
.
props
;
return
fetchRechargeOrders
({
customerId
,
pageSize
:
10
,
})
.
then
(
res
=>
{
updateRechargeOrders
(
res
.
data
);
})
.
catch
(
err
=>
{
console
.
log
(
err
);
});
}
appendRechargeOrders
()
{
const
{
userinfo
:
{
customerId
},
recharge
:
{
lastOrderId
},
appendRechargeOrders
,
}
=
this
.
props
;
return
fetchRechargeOrders
({
customerId
,
lastOrderId
,
pageSize
:
10
,
})
.
then
(
res
=>
{
appendRechargeOrders
(
res
.
data
);
})
.
catch
(
err
=>
{
Taro
.
showToast
({
title
:
err
.
msg
||
'请求失败'
,
icon
:
'none'
,
});
});
}
}
// const onPullDownRefresh = () => {
// console.log('in onPullDownRefresh');
// this.getAllOrderHandle().then(() => {
// Taro.stopPullDownRefresh();
// });
// };
goPayPage
=
(
data
:
Order
)
=>
{
goPayPage
=
(
data
:
Order
)
=>
{
const
{
selectOrder
}
=
this
.
props
;
const
{
selectOrder
}
=
this
.
props
;
// dispatch(selectOrder(data));
// dispatch(selectOrder(data));
...
@@ -119,86 +258,51 @@ class OrderList extends Component {
...
@@ -119,86 +258,51 @@ class OrderList extends Component {
url
:
'/pages/Order/OrderDetail/OrderDetail'
,
url
:
'/pages/Order/OrderDetail/OrderDetail'
,
});
});
};
};
setOrderType
(
type
:
number
)
{
this
.
setState
(
{
orderType
:
type
,
},
()
=>
{
const
{
orderType
,
consumeScrollTop
,
rechargeScrollTop
}
=
this
.
state
;
if
(
orderType
)
{
Taro
.
pageScrollTo
({
scrollTop
:
rechargeScrollTop
,
duration
:
0
,
});
}
else
{
Taro
.
pageScrollTo
({
scrollTop
:
consumeScrollTop
,
duration
:
0
,
});
}
},
);
}
render
()
{
render
()
{
const
{
orderType
}
=
this
.
state
;
const
{
const
{
userinfo
:
{
customerId
},
consume
:
{
consumeOrders
},
recharge
:
{
rechargeOrders
},
}
=
this
.
props
;
}
=
this
.
props
;
const
[
orderType
,
setOrderType
]
=
useState
(
0
);
// 0 消费,1 充值
const
[
consumeOrders
,
fetchMoreConsumeOrders
,
resetConsumeOrders
,
]
=
useConsumeOrders
(
customerId
,
10
);
// const [consumeScrollTop, setConsumeScrollTop] = useState(0);
// const scrollHandle = e => {
// console.log(e);
// };
const
onConsumeScrollToLower
=
()
=>
{
Taro
.
showLoading
({
title
:
''
,
mask
:
true
,
});
fetchMoreConsumeOrders
()
.
then
(()
=>
{
Taro
.
hideLoading
();
})
.
catch
(
err
=>
{
Taro
.
hideLoading
();
Taro
.
showToast
({
title
:
err
.
msg
||
'请求失败'
,
icon
:
'none'
,
});
});
};
const
[
rechargeOrders
,
fetchMoreRechargeOrders
,
resetRechargeOrders
,
]
=
useRechargeOrders
(
customerId
,
10
);
const
onRechargeScrollToLower
=
()
=>
{
Taro
.
showLoading
({
title
:
''
,
mask
:
true
,
});
fetchMoreRechargeOrders
()
.
then
(()
=>
{
Taro
.
hideLoading
();
})
.
catch
(
err
=>
{
Taro
.
hideLoading
();
Taro
.
showToast
({
title
:
err
.
msg
||
'请求失败'
,
icon
:
'none'
,
});
});
};
return
(
return
(
<
View
className=
'OrderList'
>
<
View
className=
'OrderList'
>
<
View
className=
'Tab'
>
<
View
className=
'Tab'
>
<
Text
<
Text
className=
{
`Tab-item ${orderType === 0 ? 'active' : ''}`
}
className=
{
`Tab-item ${orderType === 0 ? 'active' : ''}`
}
onClick=
{
()
=>
setOrderType
(
0
)
}
>
onClick=
{
()
=>
this
.
setOrderType
(
0
)
}
>
消费
消费
</
Text
>
</
Text
>
<
Text
<
Text
className=
{
`Tab-item ${orderType === 1 ? 'active' : ''}`
}
className=
{
`Tab-item ${orderType === 1 ? 'active' : ''}`
}
onClick=
{
()
=>
setOrderType
(
1
)
}
>
onClick=
{
()
=>
this
.
setOrderType
(
1
)
}
>
充值
充值
</
Text
>
</
Text
>
</
View
>
</
View
>
{
orderType
===
0
?
(
{
orderType
===
0
?
(
<
ScrollView
<
View
className=
'OrderList-Wrap'
>
className=
'OrderList-Content'
scrollY
onScrollToUpper=
{
()
=>
resetConsumeOrders
()
}
onScrollToLower=
{
onConsumeScrollToLower
}
upperThreshold=
{
-
100
}
lowerThreshold=
{
70
}
scrollWithAnimation
scrollTop=
{
0
}
>
{
consumeOrders
.
map
((
allItem
,
index
)
=>
(
{
consumeOrders
.
map
((
allItem
,
index
)
=>
(
<
View
key=
{
allItem
.
groupName
}
className=
'OrderList-Group'
>
<
View
key=
{
allItem
.
groupName
}
className=
'OrderList-Group'
>
<
View
className=
'OrderList-GroupTitle'
>
<
View
className=
'OrderList-GroupTitle'
>
...
@@ -217,17 +321,9 @@ class OrderList extends Component {
...
@@ -217,17 +321,9 @@ class OrderList extends Component {
))
}
))
}
</
View
>
</
View
>
))
}
))
}
</
Scroll
View
>
</
View
>
)
:
(
)
:
(
<
ScrollView
<
View
className=
'OrderList-Wrap'
>
className=
'OrderList-Content'
scrollY
onScrollToUpper=
{
()
=>
resetRechargeOrders
()
}
onScrollToLower=
{
onRechargeScrollToLower
}
upperThreshold=
{
-
100
}
lowerThreshold=
{
70
}
scrollWithAnimation
scrollTop=
{
0
}
>
{
rechargeOrders
.
map
(
reChargeItem
=>
(
{
rechargeOrders
.
map
(
reChargeItem
=>
(
<
View
key=
{
reChargeItem
.
groupName
}
className=
'OrderList-Group'
>
<
View
key=
{
reChargeItem
.
groupName
}
className=
'OrderList-Group'
>
<
View
className=
'OrderList-GroupTitle'
>
<
View
className=
'OrderList-GroupTitle'
>
...
@@ -241,7 +337,7 @@ class OrderList extends Component {
...
@@ -241,7 +337,7 @@ class OrderList extends Component {
))
}
))
}
</
View
>
</
View
>
))
}
))
}
</
Scroll
View
>
</
View
>
)
}
)
}
</
View
>
</
View
>
);
);
...
...
src/pages/Order/OrderList/store.ts
View file @
45adba11
...
@@ -11,16 +11,20 @@ import {
...
@@ -11,16 +11,20 @@ import {
}
from
'./actions'
;
}
from
'./actions'
;
import
{
RechargeOrderItem
}
from
'@/api/order'
;
import
{
RechargeOrderItem
}
from
'@/api/order'
;
export
interface
OrderStoreState
{
export
type
ConsumeOrderInfo
=
{
selectedOrder
:
Order
;
consume
:
{
consumeOrders
:
AllOrderItem
[];
consumeOrders
:
AllOrderItem
[];
lastOrderId
:
number
;
lastOrderId
:
number
;
};
};
recharge
:
{
export
type
RechargeOrderInfo
=
{
rechargeOrders
:
RechargeOrderItem
[];
rechargeOrders
:
RechargeOrderItem
[];
lastOrderId
:
number
;
lastOrderId
:
number
;
};
};
export
interface
OrderStoreState
{
selectedOrder
:
Order
;
consume
:
ConsumeOrderInfo
;
recharge
:
RechargeOrderInfo
;
}
}
const
initOrder
=
()
=>
({
const
initOrder
=
()
=>
({
actualMoney
:
0
,
actualMoney
:
0
,
...
@@ -64,6 +68,18 @@ const INITIAL_STATE = {
...
@@ -64,6 +68,18 @@ const INITIAL_STATE = {
},
},
};
};
const
getLastId
=
(
arr
):
number
=>
{
const
itemIdx
=
arr
.
length
-
1
;
if
(
itemIdx
>=
0
)
{
const
orderIdx
=
arr
[
itemIdx
].
data
.
length
-
1
;
if
(
orderIdx
>=
0
)
{
let
lastOrderId
=
arr
[
itemIdx
].
data
[
orderIdx
].
id
;
return
lastOrderId
;
}
}
return
0
;
};
export
default
function
OrderList
(
export
default
function
OrderList
(
state
:
OrderStoreState
=
INITIAL_STATE
,
state
:
OrderStoreState
=
INITIAL_STATE
,
actions
:
Actions
,
actions
:
Actions
,
...
@@ -75,6 +91,17 @@ export default function OrderList(
...
@@ -75,6 +91,17 @@ export default function OrderList(
selectedOrder
:
actions
.
payload
,
selectedOrder
:
actions
.
payload
,
};
};
case
UPDATE_CONSUME_ORDERS
:
case
UPDATE_CONSUME_ORDERS
:
if
(
actions
.
payload
.
length
)
{
let
arr
=
actions
.
payload
;
let
lastOrderId
=
getLastId
(
arr
);
return
{
...
state
,
consume
:
{
lastOrderId
:
lastOrderId
,
consumeOrders
:
actions
.
payload
,
},
};
}
return
{
return
{
...
state
,
...
state
,
consume
:
{
consume
:
{
...
@@ -83,6 +110,17 @@ export default function OrderList(
...
@@ -83,6 +110,17 @@ export default function OrderList(
},
},
};
};
case
APPEND_CONSUME_ORDERS
:
case
APPEND_CONSUME_ORDERS
:
if
(
actions
.
payload
.
length
)
{
let
arr
=
actions
.
payload
;
let
lastOrderId
=
getLastId
(
arr
);
return
{
...
state
,
consume
:
{
lastOrderId
:
lastOrderId
,
consumeOrders
:
[...
state
.
consume
.
consumeOrders
,
...
actions
.
payload
],
},
};
}
return
{
return
{
...
state
,
...
state
,
consume
:
{
consume
:
{
...
@@ -99,6 +137,17 @@ export default function OrderList(
...
@@ -99,6 +137,17 @@ export default function OrderList(
},
},
};
};
case
UPDATE_RECHARGE_ORDERS
:
case
UPDATE_RECHARGE_ORDERS
:
if
(
actions
.
payload
.
length
)
{
let
arr
=
actions
.
payload
;
let
lastOrderId
=
getLastId
(
arr
);
return
{
...
state
,
recharge
:
{
lastOrderId
:
lastOrderId
,
rechargeOrders
:
actions
.
payload
,
},
};
}
return
{
return
{
...
state
,
...
state
,
recharge
:
{
recharge
:
{
...
@@ -107,6 +156,20 @@ export default function OrderList(
...
@@ -107,6 +156,20 @@ export default function OrderList(
},
},
};
};
case
APPEND_RECHARGE_ORDERS
:
case
APPEND_RECHARGE_ORDERS
:
if
(
actions
.
payload
.
length
)
{
let
arr
=
actions
.
payload
;
let
lastOrderId
=
getLastId
(
arr
);
return
{
...
state
,
recharge
:
{
lastOrderId
:
lastOrderId
,
rechargeOrders
:
[
...
state
.
recharge
.
rechargeOrders
,
...
actions
.
payload
,
],
},
};
}
return
{
return
{
...
state
,
...
state
,
recharge
:
{
recharge
:
{
...
...
src/pages/Order/OrderList/useConsumeOrders.ts
View file @
45adba11
...
@@ -34,16 +34,6 @@ const useConsumeOrders = (
...
@@ -34,16 +34,6 @@ const useConsumeOrders = (
console
.
log
(
err
);
console
.
log
(
err
);
});
});
const
fetchMore
=
()
=>
{
const
fetchMore
=
()
=>
{
let
arr
=
state
.
consumeOrders
;
const
itemIdx
=
arr
.
length
-
1
;
if
(
itemIdx
>=
0
)
{
const
orderIdx
=
arr
[
itemIdx
].
data
.
length
-
1
;
if
(
orderIdx
>=
0
)
{
dispatch
(
updateConsumeLastId
(
arr
[
itemIdx
].
data
[
orderIdx
].
id
));
return
fetchData
(
customerId
,
pageSize
);
}
}
dispatch
(
updateConsumeLastId
(
0
));
return
fetchData
(
customerId
,
pageSize
);
return
fetchData
(
customerId
,
pageSize
);
};
};
const
resetOrders
=
()
=>
{
const
resetOrders
=
()
=>
{
...
...
src/pages/Order/OrderList/useRechargeOrders.ts
View file @
45adba11
...
@@ -32,16 +32,6 @@ const useRechargeOrders = (
...
@@ -32,16 +32,6 @@ const useRechargeOrders = (
console
.
log
(
err
);
console
.
log
(
err
);
});
});
const
fetchMore
=
()
=>
{
const
fetchMore
=
()
=>
{
let
arr
=
state
.
rechargeOrders
;
const
itemIdx
=
arr
.
length
-
1
;
if
(
itemIdx
>=
0
)
{
const
orderIdx
=
arr
[
itemIdx
].
data
.
length
-
1
;
if
(
orderIdx
>=
0
)
{
dispatch
(
updateRechargeLastId
(
arr
[
itemIdx
].
data
[
orderIdx
].
id
));
return
fetchData
(
customerId
,
pageSize
);
}
}
dispatch
(
updateRechargeLastId
(
0
));
return
fetchData
(
customerId
,
pageSize
);
return
fetchData
(
customerId
,
pageSize
);
};
};
const
resetOrders
=
()
=>
{
const
resetOrders
=
()
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment