versionInfo.vue 922 Bytes
<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>