71 lines
1.2 KiB
Vue
71 lines
1.2 KiB
Vue
<template>
|
|
<view>
|
|
<view class="about-box">
|
|
<view class="about-img">
|
|
<image src="../../../static/app-logo2.png" mode=""></image>
|
|
</view>
|
|
</view>
|
|
<view style="text-align: center; font-size: 12px;">
|
|
当前软件版本 V {{version}}
|
|
</view>
|
|
<view>
|
|
<uni-list>
|
|
<uni-list-item title="列表文字"></uni-list-item>
|
|
<uni-list-item :disabled="false" title="列表禁用状态"></uni-list-item>
|
|
</uni-list>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// import {
|
|
// version
|
|
// } from '@/common/tool.js';
|
|
import {getVersion} from "../../../api";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
version: '123'
|
|
}
|
|
},
|
|
onLoad() {
|
|
// 获取服务器版本
|
|
this.getSVersion();
|
|
},
|
|
methods: {
|
|
getSVersion() {
|
|
let _this = this
|
|
uni.getSystemInfo({
|
|
success: (res) => {
|
|
_this.version = res.appVersion
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.about-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 120upx 0;
|
|
}
|
|
|
|
.about-img {
|
|
width: 120upx;
|
|
height: 120upx;
|
|
}
|
|
|
|
.about-img image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.cu-list.menu>.cu-item {
|
|
min-height: 80upx;
|
|
}
|
|
</style>
|