noEditWrap.vue 854 字节
<template>
	<view class="noEditWrap">
		<view class="noEdit">
			<view class="noEditDesc">
				已生成的讣告24小时内无法修改,如要修改请联系华思工作人员
			</view>
			<view class="noEditBtn" @click="closeNoEdit">
				我知道了
			</view>
		</view>
	</view>
</template>

<script>
	export default{
		methods:{
			closeNoEdit(){
				this.$emit('closeNoEdit')
			}
		}
	}
</script>

<style>
	.noEditWrap{position: fixed;top: 0;bottom: 0;left: 0;right: 0;background: rgba(0,0,0,.5);display: flex;justify-content: center;align-items: center;}
	.noEditWrap .noEdit{width: 622rpx;height: 290rpx;background: #fff;border-radius: 32rpx;}
	.noEdit .noEditDesc{height: 154rpx;padding: 56rpx 48rpx 0;font-size: 32rpx;line-height: 44rpx;text-align: center;}
	.noEdit .noEditBtn{text-align: center;color: #EE0A24;font-size: 32rpx;}
</style>