versionInfo.vue 878 Bytes
<template>
	<view class="edit-account">
		<view class="account_name">
			<view class="img_bg">
				<u-image src="/static/img/my/LOGO@2x.png" width="200rpx" height="96rpx" />
			</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>