|
@ -1,11 +1,12 @@ |
|
|
<template> |
|
|
<template> |
|
|
<view class="page"> |
|
|
<view class="page"> |
|
|
|
|
|
|
|
|
<navbar bgColor="#88D259" /> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <PrivacyAgreementPoup /> --> |
|
|
|
|
|
|
|
|
<view class="head-box"></view> |
|
|
|
|
|
<uv-navbar title=" " bgColor="transparent" height="100rpx"></uv-navbar> |
|
|
|
|
|
<view class="content"> |
|
|
|
|
|
123 |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<tabber select="home" /> |
|
|
<tabber select="home" /> |
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
@ -25,17 +26,23 @@ |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|
|
|
page { |
|
|
|
|
|
background-color: #060504; |
|
|
|
|
|
} |
|
|
|
|
|
</style> |
|
|
<style scoped lang="scss"> |
|
|
<style scoped lang="scss"> |
|
|
.page { |
|
|
.page { |
|
|
position: relative; |
|
|
|
|
|
.bg-color { |
|
|
|
|
|
|
|
|
.head-box { |
|
|
|
|
|
background: url('@/static/image/nav-bg.png') no-repeat; |
|
|
|
|
|
background-size: 100% 100%; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
|
|
|
height: 534rpx; |
|
|
position: absolute; |
|
|
position: absolute; |
|
|
top: 0; |
|
|
|
|
|
left: 0; |
|
|
|
|
|
height: 550rpx; |
|
|
|
|
|
background: linear-gradient(to bottom, #88D259, #88D259, #fff); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.content { |
|
|
|
|
|
color: #fff; |
|
|
|
|
|
padding-top: calc(var(--status-bar-height) + 100rpx); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |