1
This commit is contained in:
@@ -1,21 +1,22 @@
|
|||||||
.empty_state_page {
|
.empty_state_page {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
// 白色渐变背景(从设计稿参考)
|
// 白色渐变背景(从设计稿参考)
|
||||||
background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
|
background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
box-sizing: border-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
flex: 1;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: calc(100vh - 98px);
|
height: calc(100vh - 98px);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 空状态图片
|
// 空状态图片
|
||||||
@@ -112,4 +113,3 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -51,10 +51,6 @@ function Index() {
|
|||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
className="empty_state_page"
|
className="empty_state_page"
|
||||||
style={{
|
|
||||||
paddingTop: `${totalHeight}px`,
|
|
||||||
backgroundColor: '#FFFFFF'
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<GeneralNavbar title="" showBack={true} />
|
<GeneralNavbar title="" showBack={true} />
|
||||||
|
|
||||||
|
|||||||
@@ -150,7 +150,8 @@ class GameDetailService {
|
|||||||
business_id: number
|
business_id: number
|
||||||
}>> {
|
}>> {
|
||||||
return httpService.post('/user/create_activity_id', req, {
|
return httpService.post('/user/create_activity_id', req, {
|
||||||
showLoading: false
|
showLoading: false,
|
||||||
|
showToast: false,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user