choujiangrule.vue 1.7 KB
<template>
	<view class="content">
		<view class="xieyitext">
			<view class='textline'>
				 1.  用户进入抽奖专区进行抽奖;
			</view>
			
			<view class='textline'>
				 2.  用户下单成功后即可获得1次大转盘抽奖机会;
			</view>
			 <view class='textline'>
				  3.  每人每天不限抽奖次数;
			 </view>
			
			 <view class='textline'>
				   4.  奖品会在审核通过后25个工作日内,由中面集团统一完成发放;
			 </view>
			<view class='textline'>
				 5.  奖品均为实物类奖品,中奖用户需填写收件人姓名、手机号以及收货地址;如不填写,实为中奖用户放弃中奖资格;
			</view>
			
			<view class='textline'>
				6.  有任何疑问或障碍可直接拨打 400-0230-777;
			</view>
			  <view>
				  <view class='textline' >
				  	 7. 中面集团在法律允许范围内,拥有对本次活动的最终解释权。
				  </view>
				  <view class='textline' v-if="openclose==2">
				  	 8. 所有奖品与苹果公司无关,苹果不是赞助商
				  </view>
				  
			  </view>
			
		</view>

	</view>
</template>

<script>
	import app from "../../App.vue";
	export default {
		data() {
			return {
				openclose:''
			}
		},
		onLoad(options) {
			this.getkaiguan()
		},
		methods: {
			// 获取开关
			getkaiguan() {
				let that = this;
				var url = 'page/get_switch';
				var params = {
					
				}
				app.post(url, params).then((res) => {
					console.log(res.data.data.switch);
					
					that.openclose=res.data.data.switch;
					console.log('43783488949348',that.openclose)
			
				}).catch((err) => {
					
			
				})
			},
		}

	}
</script>

<style>
	@import url('../../base/login');
	.textline{
		margin-bottom: 20rpx;
	}
</style>