my-invoice.vue 611 字节
<template>
	<view class="content">
		<view class="imgBox">
			<image src="../../static/fapiaonoData.png" mode=""></image>
		</view>
		<view class="text">
			本模块尚未开通,请联系匠心培训 机构工作人员!
		</view>
	</view>
</template>

<script>
</script>

<style>
	.content {
		min-height: 100vh;
		padding-top: 162rpx;
		box-sizing: border-box;
	}

	.imgBox {
		width: 368rpx;
		height: 368rpx;
		margin: 0 auto;
	}

	.imgBox image {
		width: 368rpx;
		height: 368rpx;
	}

	.text {
		width: 520rpx;
		margin: 0 auto;
		color: #969799;
		font-size: 34rpx;
		text-align: center;
	}
</style>