Files
dvcp_v2_wechat_app/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue
2022-04-20 15:49:33 +08:00

34 lines
534 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 {
height: 344px;
width: 100%;
background: #4181FF;
text-align: center;
}
}
</style>