agree.vue
1.15 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
<template>
<div class="agree">
<span @click="onClick"><Check v-model="val"></Check> 我已阅读并同意</span> <span class="link"
@click="onLinkClick">{{desc}}</span>
</div>
</template>
<script>
import Check from './check';
export default {
name: 'OrderCheck',
props: {
value: {
type: Boolean,
default: true
},
desc: {
type: String,
default: ''
},
url: {
type: String,
default: ''
}
},
components: {
Check
},
data() {
return {
val: this.value
};
},
watch: {
value(newVal) {
this.val = newVal;
}
},
methods: {
onClick() {
this.val = !this.val;
this.$emit('input', this.val);
},
onLinkClick() {
if (this.url) {
this.$xianyu.goXianyuNewPage({url: this.url});
}
}
}
};
</script>
<style lang="scss" scoped>
.agree {
font-size: 24px;
color: #999;
height: 76px;
background-color: white;
padding: 0 40px;
line-height: 76px;
}
.link {
color: #65ab85;
text-decoration: underline;
text-decoration-color: #65ab85;
}
</style>