twoEnrollment.vue 1.0 KB
<template>
	<view class="twoEnrollment">
		<!-- 入学登记 -->
		<view class="header-wrap">
			<view class="header-tit-all area flex">
				<text class="icon icon-icon-tianxiegenjin"></text>
				你已填写,如有疑问请咨询接待老师
			</view>
		</view>
		<view class="content-all area">
			
		</view>

	</view>
</template>

<script>
	export default {
		data() {
			return {
				userName: "李曼丽",
				sex: "女",
				year: "1992/05/20",
				city: "浙江杭州", //籍贯
				nation: "汉族", //民族
				numberId: "330100199205201234", //身份证号

			}
		},
		methods: {

		}
	}
</script>

<style lang="scss" scoped>
	.twoEnrollment {
		position: relative;
	}

	.header-tit-all {
		height: 60rpx;
		line-height: 60rpx;
		color: #ffffff;
		font-size: 30rpx;
		font-family: PingFang SC;
		font-weight: 500;

		text {
			font-size: 32rpx;
			margin-right: 24rpx;
		}
	}
	.content-all{
		height: 570rpx;
		background: #FFFFFF;
		border-radius: 10rpx;
		position: absolute;
		top: 94rpx;
		left: 50%;
		transform: translate(-50%,0);
	}
</style>