Files
dvcp_v2_wechat_app/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue

45 lines
735 B
Vue
Raw Normal View History

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