列表优化

This commit is contained in:
仲么了
2023-11-06 11:01:29 +08:00
parent bb95331392
commit 7e90d2b6e1
12 changed files with 296 additions and 123 deletions

View File

@@ -1,29 +1,28 @@
<template>
<Cn-page :loading='loading'>
<view slot='body'>
<view class='about'>
<Cn-page :loading="loading">
<view slot="body">
<view class="about">
<image src="/static/logo.png" class="logo"></image>
<view class="name">灿能物联</view>
<view class="version">Version 1.0.1</view>
<view class="version">Version 1.0.2</view>
</view>
</view>
</Cn-page>
</template>
<script>
export default {
data () {
data() {
return {
loading: false
loading: false,
}
},
methods: {
}
methods: {},
}
</script>
<style lang='scss'>
<style lang="scss">
.about {
box-sizing: border-box;
padding: 34rpx;
padding: 34rpx;
display: flex;
flex-direction: column;
align-items: center;
@@ -48,4 +47,4 @@ export default {
color: #333;
}
}
</style>
</style>