RegistrationDetails.vue 1.3 KB
<template>
	<view class="content">
		<view style="padding-top: 16px;">
			<view class="bo">
				<view class="title"><text class="left">培训名称:</text><text class="right">培训培训培训</text></view>
				<view class="money"><text class="left">培训金额(元):</text><text class="right">0.01元</text></view>
				<view class="time"><text class="left">报名时间:</text><text class="right">2024-04-04 17:22:29</text></view>
				<view class="zhiBox">
					<text class="zhifu">支付</text>
				</view>
			</view>
		</view>

	</view>
</template>

<script>
	export default {
		data() {
			return {

			}
		},
		methods: {

		}
	}
</script>

<style>
	.time {
		margin-bottom: 52px;
	}

	.money {
		margin-bottom: 49px;
	}

	.title {
		margin-bottom: 72px;
	}

	.bo {
		background-color: #FFFFFF;
		margin: 16px 16px 0 16px;
		padding: 16px;
	}

	.content {
		background-color: #F2F3F5;
		height: 100vh;
	}

	.right {
		color: #323233;
		font-size: 30rpx;
		font-weight: bold;
		margin-left: 15px;
	}

	.left {
		color: #646566;
		font-size: 32rpx;
	}

	.zhiBox {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100rpx;
		background: #67d96a;
		border-radius: 16rpx;
		margin: 0 72px;
	}

	.zhifu {
		color: #FFFFFF;
		font-size: 36rpx;
	}
</style>