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
<template>
<div>
<el-tabs v-model="activeName">
<el-tab-pane name="customer">
<span slot="label" class="nofont" :class="{font:activeName=='customer'}">{{ $t('customer.customer') }}</span>
<customer />
</el-tab-pane>
<el-tab-pane name="group">
<span slot="label" class="nofont" :class="{font:activeName=='group'}">{{ $t('customer.group') }}</span>
<group />
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
import Customer from './components/customer.vue'
import Group from './components/group.vue'
export default {
components: {
Customer,
Group
},
data() {
return {
activeName: 'customer'
}
},
watch: {
},
created() {
}
}
</script>
<style scoped>
.nofont{
font-size: 19px;
}
.font{
color: #659FD5;
font-size: 22px;
}
.reload{
width: 208px;
height: 38px;
border: 2px solid #659FD5;
border-radius: 24px;
font-size: 14px;
font-weight: bold;
color: #5BA8DC;
text-align: center;
line-height: 35px;
cursor:pointer
}
.submit{
width: 208px;
height: 38px;
border: 2px solid #659FD5;
border-radius: 24px;
background: #5BA8DC;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
text-align: center;
line-height: 35px;
margin-left: 20px;
cursor:pointer
}
::v-deep el-radio__label{
font-size: 18px;
}
</style>