choujiangrule.vue
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<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>