洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

45 lines
698 B

<template>
<view class="main">
<view class="logo">
<image src="@/static/images/mineIcon/minIcon (2).png" mode="widthFix"></image>
</view>
<view class="text">
版本号 {{version}}
</view>
</view>
</template>
<script >
export default {
data() {
return {
version: '1.0.0'
}
},
onLoad() {
// #ifdef APP-PLUS
this.version = plus.runtime.version
// #endif
}
}
</script>
<style lang="scss" scoped>
.main {
padding: 230rpx 0 0 0;
.logo {
display: flex;
justify-content: center;
image {
display: block;
width: 120rpx;
}
}
.text {
margin-top: 20rpx;
font-size: 32rpx;
color: #666;
text-align: center;
}
}
</style>