exchage-box.vue
1.17 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
<template>
<div class="exchange-box">
<input type="text" name="couponCodeInput" placeholder="请输入优惠券码" :value="code" @input="onCodeInput">
<button :class="btnCls" @click="onClick">兑换</button>
</div>
</template>
<script>
export default {
name: 'ExchangeBox',
data() {
return {
code: ''
};
},
methods: {
onClick() {
this.$emit('click');
},
onCodeInput(e) {
this.code += e.data;
this.$emit('input', this.code);
}
},
computed: {
btnCls() {
return ['exchange-coupon-btn', {
active: this.code !== ''
}];
}
}
};
</script>
<style lang="scss" scoped>
.exchange-box {
height: 90px;
padding: 16px 20px;
background-color: #fff;
position: fixed;
top: 0;
left: 0;
z-index: 2;
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>