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
| <template>
| <div class="device-page">
| <div class="device-left">
| <el-input placeholder="输入设备名称" suffix-icon="el-icon-search" v-model="search" size="small"
| style="margin-bottom: 5px;" clearable></el-input>
| </div>
| <div class="device-right"></div>
| </div>
| </template>
|
| <script>
| export default {
| data(){
| return {
| search:''
| }
| }
| }
| </script>
|
| <style scoped>
| .device-page{
| display: flex;
| padding-top: 10px;
| padding-bottom: 10px;
| box-sizing: border-box;
| }
| .device-left{
| width: 200px;
| height: 100%;
| background: #fff;
| margin-right: 10px;
| border-radius: 16px;
| }
| .device-right{
| background: #fff;
| flex: 1;
| border-radius: 16px;
| }
| </style>
|
|