推广小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
551 B

<template>
<view class="page">
<navbar bgColor="#88D259" />
<!-- <PrivacyAgreementPoup /> -->
<tabber select="home" />
</view>
</template>
<script>
import tabber from '@/components/base/tabbar.vue'
export default {
components:{
tabber
},
data() {
return {
}
}
}
</script>
<style scoped lang="scss">
.page {
position: relative;
.bg-color {
width: 100%;
position: absolute;
top: 0;
left: 0;
height: 550rpx;
background: linear-gradient(to bottom, #88D259, #88D259, #fff);
}
}
</style>