页面结构改变

This commit is contained in:
仲么了
2023-02-10 09:16:17 +08:00
parent 627c0a2853
commit 8cf78ec3f5
27 changed files with 171 additions and 159 deletions

View File

@@ -0,0 +1,44 @@
<template>
<Cn-page :loading='loading'>
<view slot='body'>
<view class='about'>
<view class='about-title'>盛弘APF</view>
<view class='about-text'>杋器码0000000</view>
<view class='about-text'>软件版本1.0.0</view>
<view class='about-text'>使用期限永久使用</view>
<view class='about-text'>软件版本380-250/250-4-0-1</view>
</view>
</view>
</Cn-page>
</template>
<script>
export default {
data () {
return {
loading: false,
}
},
methods: {
}
}
</script>
<style lang='scss'>
.about {
padding: 34rpx;
.about-title {
font-size: 34rpx;
font-weight: bold;
color: #333333;
margin-bottom: 34rpx;
}
.about-text {
font-size: 28rpx;
color: #666666;
margin-bottom: 34rpx;
}
}
</style>