versionInfo.vue
922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<template>
<view class="edit-account" :style="vuex_theme">
<view class="account_name">
<view class="img_bg">
<u-image :src="vuex_baseImgUrl && `${vuex_baseImgUrl}logo.png`" width="200rpx" height="110rpx" />
</view>
<view class="describe">版本号v1.3.3</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad(option) {
},
onShow() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.edit-account /deep/ .u-input__input {
font-size: 34rpx;
}
.edit-account {
padding: 0 28rpx;
.account_name {
.img_bg {
width: 200rpx;
padding: 100rpx 0 0 0;
margin: 0 auto;
}
.describe {
text-align: center;
font-size: 24rpx;
line-height: 48rpx;
color: #202131;
padding: 40rpx 0 0 0;
}
}
}
</style>