Files
app-govern/pages/mine/about.vue

51 lines
998 B
Vue
Raw Normal View History

2023-01-13 16:32:56 +08:00
<template>
2023-11-06 11:01:29 +08:00
<Cn-page :loading="loading">
<view slot="body">
<view class="about">
2023-02-09 16:37:53 +08:00
<image src="/static/logo.png" class="logo"></image>
2023-08-17 09:24:59 +08:00
<view class="name">灿能物联</view>
2023-11-07 09:09:54 +08:00
<view class="version">Version 1.0.3</view>
2023-01-13 16:32:56 +08:00
</view>
</view>
</Cn-page>
</template>
<script>
export default {
2023-11-06 11:01:29 +08:00
data() {
2023-01-13 16:32:56 +08:00
return {
2023-11-06 11:01:29 +08:00
loading: false,
2023-01-13 16:32:56 +08:00
}
},
2023-11-06 11:01:29 +08:00
methods: {},
2023-01-13 16:32:56 +08:00
}
</script>
2023-11-06 11:01:29 +08:00
<style lang="scss">
2023-01-13 16:32:56 +08:00
.about {
box-sizing: border-box;
2023-11-06 11:01:29 +08:00
padding: 34rpx;
2023-01-13 16:32:56 +08:00
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2023-08-17 09:24:59 +08:00
overflow: hidden;
2023-01-13 16:32:56 +08:00
.logo {
2023-08-17 09:24:59 +08:00
margin-top: 200rpx;
2023-01-13 16:32:56 +08:00
height: 120rpx;
width: 120rpx;
}
.name {
margin-top: 80rpx;
font-size: 40rpx;
font-weight: 700;
color: #333;
}
.version {
margin-top: 20rpx;
font-size: 38rpx;
color: #333;
}
}
2023-11-06 11:01:29 +08:00
</style>