Information.vue 1.2 KB
<template>
	<view>
		<view class="top">
			<view class="topText">
				<text class="title">2021年第二期液化石油气库站工配信</text>
				<view class="payBox">
					<text class="yiPay">已付款</text>
				</view>
			</view>
			<view class="BtnText">
				<view><text class="pei">培训价格:0.01</text></view>
				<view>
					<view><text class="on">2021-04-01</text></view>
					<view><text class="on">15:25:24 报名</text></view>
				</view>

			</view>
		</view>
	</view>
</template>

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

			}
		},
		methods: {

		}
	}
</script>

<style>
	.topText {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.BtnText {
		display: flex;
		justify-content: space-between;
		margin-top: 12px;
	}

	.on {
		color: #323233;
		font-size: 24rpx;
	}

	.pei {
		color: #323233;
		font-size: 26rpx;
	}

	.title {
		color: #323233;
		font-size: 26rpx;
	}

	.payBox {
		background: #199460;
		border-radius: 120rpx;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.yiPay {
		color: #FFFFFF;
		font-size: 24rpx;
		padding: 2px 8px;
	}

	.top {
		background-color: #FFFFFF;
		padding: 16px;
		border-bottom: 1px solid #EBEDF0;
	}
</style>