34 lines
534 B
Vue
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> |