exchage-box.vue
1.31 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
81
82
83
<template>
<div class="exchange-box">
<div class="input-wrapper">
<input type="text" name="couponCodeInput" placeholder="请输入优惠券码" v-model="code">
</div>
<button :class="btnCls" @click="onClick">兑换</button>
</div>
</template>
<script>
export default {
name: 'ExchangeBox',
data() {
return {
code: ''
};
},
methods: {
onClick() {
if (this.code) {
this.$emit('click');
}
}
},
computed: {
btnCls() {
return ['exchange-coupon-btn', {
active: this.code !== ''
}];
}
},
watch: {
code() {
this.$emit('input', this.code);
},
value(val) {
this.code = val;
}
}
};
</script>
<style lang="scss" scoped>
.exchange-box {
height: 90px;
padding: 16px 20px;
background-color: #fff;
top: 0;
left: 0;
z-index: 2;
.input-wrapper {
display: inline-block;
position: relative;
}
input {
width: 570px;
height: 60px;
margin-right: 12px;
padding: 0 20px;
background-color: #f0f0f0;
border-radius: 4px;
border: none;
}
.exchange-coupon-btn {
width: 120px;
height: 60px;
border-radius: 4px;
font-size: 28px;
color: #fff;
background-color: #b0b0b0;
border: none;
}
.active {
background-color: #444;
}
}
</style>