2023-02-07 17:59:54 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<Cn-page :loading='loading'>
|
|
|
|
|
|
<view slot='body'>
|
|
|
|
|
|
<view class='about'>
|
2023-02-09 16:37:53 +08:00
|
|
|
|
<view class='about-title'>盛弘DVR</view>
|
2023-02-07 17:59:54 +08:00
|
|
|
|
<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 {
|
2023-02-20 14:19:28 +08:00
|
|
|
|
padding: 34rpx;
|
2023-02-07 17:59:54 +08:00
|
|
|
|
.about-title {
|
|
|
|
|
|
font-size: 34rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: #333333;
|
|
|
|
|
|
margin-bottom: 34rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
.about-text {
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #666666;
|
|
|
|
|
|
margin-bottom: 34rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|