| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | <template>	<view class="box">		<u-icon name="checkmark-circle-fill" color="#07c160" size="200"></u-icon>		<text class="text">申报信息提交成功!</text>		<view class="count-down-box">			<view @click="goDisifect" style="color: #007AFF;">消杀申报</view>		</view>		<view class="count-down-box">			<view @click="goback">返回</view>		</view>	</view></template><script>	export default {		data() {			return {				timestamp: 3,			}		},		onBackPress() {			this.goback();			return true;		},		methods: {			goDisifect(){				this.$common.to('/pages/disinfect/addDisinfect');			},			goback() {				this.$common.to('/pages/declare/add');			}		}	}</script><style lang="scss">	page {		background-color: #fff;	}	.box {		display: flex;		flex: 1;		align-items: center;		justify-content: center;		flex-direction: column;		padding: 100rpx 0;		.text {			color: #191919;			font-size: 36rpx;			font-weight: bold;			margin-top: 40rpx;		}		.count-down-box {			display: flex;			align-items: center;			justify-content: center;			margin-top: 30rpx;		}	}</style>
 |