个人中心切图
This commit is contained in:
52
pages/mine/about.vue
Normal file
52
pages/mine/about.vue
Normal file
@@ -0,0 +1,52 @@
|
||||
<template>
|
||||
<Cn-page :loading='loading'>
|
||||
<view slot='body'>
|
||||
<view class='about'>
|
||||
<view class="logo"></view>
|
||||
<view class="name">灿能云</view>
|
||||
<view class="version">Version 1.0.0</view>
|
||||
</view>
|
||||
</view>
|
||||
</Cn-page>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
loading: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang='scss'>
|
||||
.about {
|
||||
box-sizing: border-box;
|
||||
height: 100vh;
|
||||
padding: 34rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.logo {
|
||||
height: 120rpx;
|
||||
width: 120rpx;
|
||||
background: $uni-theme-blue;
|
||||
}
|
||||
|
||||
.name {
|
||||
margin-top: 80rpx;
|
||||
font-size: 40rpx;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.version {
|
||||
margin-top: 20rpx;
|
||||
font-size: 38rpx;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user