driver-detail.vue
2.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!-- 司机详情 -->
<template>
<div class="dashboard-container driver-detail">
<div class="app-container">
<el-container
class="out"
>
<div class="aside-box">
<el-aside>
<div
v-for="(item, index) in menu"
:key="index"
class="aside-item"
:class="{ active: isActive == item.value ? true : false }"
@click="
isActive = item.value
currentComp = item.comp
"
>
{{ item.name }}
</div>
</el-aside>
</div>
<el-container class="in">
<test1 :is="currentComp" />
</el-container>
</el-container>
</div>
</div>
</template>
<script>
import driverInfo from './components/driver-info'
import driverLicense from './components/driver-license'
import driverVehicle from './components/driver-vehicle'
export default {
// 注册组件
components: {
driverInfo,
driverLicense,
driverVehicle
},
data() {
return {
// formData: {},
// 当前选中的组件
currentComp: 'driverInfo',
// 当前选中的li标签
isActive: '1',
id: '',
menu: [
{
name: '基本信息',
value: '1',
comp: 'driverInfo'
},
{
name: '驾驶证信息',
value: '2',
comp: 'driverLicense'
}
// {
// name: '车辆信息',
// value: '3',
// comp: 'driverVehicle'
// }
]
}
},
created() {},
methods: {
goBack() {}
}
}
</script>
<style lang="scss" scoped>
.active {
color: #ff643d;
}
</style>
<style lang="scss" scoped>
.driver-detail {
/deep/ .el-container{
flex-direction: column;
margin-left: 0px;
}
.in{
height: calc(100vh - 205px);
}
.aside-box {
background: #ffffff;
border-radius: 4px;
padding: 24px 37px 24px 37px;
box-sizing: border-box;
/deep/ .el-aside {
padding-bottom: 14px;
width: 100%!important;
display: flex;
background-color: #ffffff;
border-bottom:1px solid #E5E7EC ;
text-align: left;
font-size: 14px;
.aside-item {
cursor: pointer;
&:first-child {
margin-right: 53px;
padding-left: 25px;
}
}
.aside-item.active{
font-size: 16px;
font-weight: bold;
color: #20232A;
&:after{
content: '';
display: block;
background-color:#E15536 ;
height: 3px;
width: 49px;
margin: 0 auto;
position: relative;
top: 14px;
}
}
}
}
}
</style>