|
@@ -48,26 +48,32 @@ export default (props) => {
|
48
|
48
|
return (
|
49
|
49
|
<>
|
50
|
50
|
{
|
51
|
|
- applionLoading ? <mp-loading extClass="page-loading-circle" type="circle" show={applionLoading} /> :
|
|
51
|
+ !applionLoading ?
|
|
52
|
+
|
52
|
53
|
|
53
|
|
- <>
|
54
|
54
|
|
|
55
|
+ <>
|
55
|
56
|
{
|
56
|
|
- applionList.map((item, index) => {
|
57
|
|
- return (
|
58
|
|
- <AppliCard key={index} item={item} onClick={goSetDogLicense} copy={trackingCopy} />
|
59
|
57
|
|
60
|
|
- )
|
|
58
|
+ applionLoading ? <mp-loading extClass="page-loading-circle" type="circle" show={applionLoading} /> :
|
|
59
|
+ applionList.map((item, index) => {
|
|
60
|
+ return (
|
|
61
|
+ <AppliCard key={index} item={item} onClick={goSetDogLicense} copy={trackingCopy} />
|
61
|
62
|
|
62
|
|
- })
|
|
63
|
+ )
|
|
64
|
+
|
|
65
|
+ })
|
63
|
66
|
}
|
|
67
|
+
|
64
|
68
|
</>
|
|
69
|
+ :
|
|
70
|
+ <View style={{ textAlign: 'center', margin: '6vw 0 3vw 0', color: '#858585', fontSize: '12px' }}>
|
|
71
|
+ 暂无申请信息
|
|
72
|
+ </View>
|
65
|
73
|
}
|
66
|
74
|
|
67
|
75
|
|
68
|
|
- <View style={{ textAlign: 'center', margin: '6vw 0 3vw 0', color: '#858585', fontSize: '12px' }}>
|
69
|
|
- 申请驳回,费用将原路退回支付账户!
|
70
|
|
- </View>
|
|
76
|
+
|
71
|
77
|
|
72
|
78
|
</>
|
73
|
79
|
)
|