Files
dvcp_v2_wechat_app/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue
shijingjing 7c834349d9 29217
2022-04-20 15:57:52 +08:00

45 lines
735 B
Vue

<template>
<div class="AppGreatPowerIntegral">
<div class="myIntegral">
<span>824</span>
<label>我的积分</label>
</div>
<div class="tabs"></div>
</div>
</template>
<script>
export default {
name: 'AppGreatPowerIntegral',
appName: '学习强国',
data() {
return {
}
},
onShow() {},
methods: {}
}
</script>
<style lang="scss" scoped>
.AppGreatPowerIntegral {
.myIntegral {
padding-top: 30px;
box-sizing: border-box;
height: 344px;
width: 100%;
background: #4181FF;
text-align: center;
span {
font-size: 100px;
font-weight: 600;
color: #FFFFFF;
}
label {
font-size: 32px;
color: #FFFFFF;
}
}
}
</style>