Blame view

src/view/VHome.vue 2.06 KB
4d234fc3   liuqimichale   关闭esl
1
  <template>
1e4db980   liuqimichale   轮廓
2
3
4
    <div class="main-content">
      <v-header></v-header>
      <ul class="main-wrap">
86551874   liuqimichale   左右区域
5
        <li class="main-left">
2caf9228   liuqimichale   公共卡片头部
6
7
8
          <div class="frame-wrap">
            <v-parking></v-parking>
          </div>
d3312374   liuqimichale   收费员信息
9
10
11
          <div class="frame-wrap frame-wrap-center">
            <v-toll></v-toll>
          </div>
dcff1e92   liuqimichale   进出场
12
13
14
          <div class="frame-wrap">
            <v-inout></v-inout>
          </div>
86551874   liuqimichale   左右区域
15
        </li>
1e4db980   liuqimichale   轮廓
16
17
18
        <li class="main-center">
          <v-map></v-map>
        </li>
86551874   liuqimichale   左右区域
19
        <li class="main-right">
6ee688df   liuqimichale   收入信息
20
21
22
          <div class="frame-wrap">
            <v-income></v-income>
          </div>
ea141a52   liuqimichale   泊位
23
24
25
          <div class="frame-wrap frame-wrap-center">
            <v-berth></v-berth>
          </div>
93ff2951   liuqimichale   设备监控信息
26
27
28
          <div class="frame-wrap">
            <v-equipment></v-equipment>
          </div>
86551874   liuqimichale   左右区域
29
        </li>
1e4db980   liuqimichale   轮廓
30
31
      </ul>
    </div>
4d234fc3   liuqimichale   关闭esl
32
33
34
  </template>
  
  <script>
1e4db980   liuqimichale   轮廓
35
36
  import VHeader from '../components/VHeader'
  import VMap from '../components/VMap'
2caf9228   liuqimichale   公共卡片头部
37
  import VParking from '../components/VParking'
d3312374   liuqimichale   收费员信息
38
  import VToll from '../components/VToll'
dcff1e92   liuqimichale   进出场
39
  import VInout from '../components/VInout'
6ee688df   liuqimichale   收入信息
40
  import VIncome from '../components/VIncome'
ea141a52   liuqimichale   泊位
41
  import VBerth from '../components/VBerth'
93ff2951   liuqimichale   设备监控信息
42
  import VEquipment from '../components/VEquipment'
4d234fc3   liuqimichale   关闭esl
43
  export default {
1e4db980   liuqimichale   轮廓
44
45
46
    name: 'VHome',
    components: {
      VHeader,
2caf9228   liuqimichale   公共卡片头部
47
      VMap,
d3312374   liuqimichale   收费员信息
48
      VParking,
dcff1e92   liuqimichale   进出场
49
      VToll,
6ee688df   liuqimichale   收入信息
50
      VInout,
ea141a52   liuqimichale   泊位
51
      VIncome,
93ff2951   liuqimichale   设备监控信息
52
53
      VBerth,
      VEquipment
1e4db980   liuqimichale   轮廓
54
    }
4d234fc3   liuqimichale   关闭esl
55
56
57
  }
  </script>
  
1e4db980   liuqimichale   轮廓
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  <style scoped lang="scss">
    .main-content{
      width: 100%;
      height: 100%;
    }
    .main-wrap{
      height: calc(100% - 65px);
      padding: 10px 10px;
      li{
        float: left;
        height: 100%;
      }
    }
    .main-left,.main-right{
1e4db980   liuqimichale   轮廓
72
73
74
75
76
77
78
      width: 25%;
    }
    .main-center{
      width: calc(50% - 20px);
      margin: 0 10px;
      border:1px solid #1679de;
    }
86551874   liuqimichale   左右区域
79
80
81
82
83
    .frame-wrap-center{
      margin: 10px 0;
    }
    .frame-wrap{
      height: calc((100% - 20px)/3);
f5d4b70c   liuqimichale   进出场信息
84
85
      background: url("../images/content/frame-wrap.png");
      background-size: 100% 100%;
6ee688df   liuqimichale   收入信息
86
      overflow: hidden;
f5d4b70c   liuqimichale   进出场信息
87
88
89
90
91
      /*border-image-source: url("../images/content/frame-wrap.png");*/
      /*border-image-slice: 3 16 11 3 fill;*/
      /*border-width: 3px 18px 11px 3px;*/
      /*border-style: solid;*/
      /*background-clip: border-box;*/
86551874   liuqimichale   左右区域
92
    }
4d234fc3   liuqimichale   关闭esl
93
94
  
  </style>