Blame view

src/view/VHome.vue 1.95 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>
86551874   liuqimichale   左右区域
26
27
          <div class="frame-wrap"></div>
        </li>
1e4db980   liuqimichale   轮廓
28
29
      </ul>
    </div>
4d234fc3   liuqimichale   关闭esl
30
31
32
  </template>
  
  <script>
1e4db980   liuqimichale   轮廓
33
34
  import VHeader from '../components/VHeader'
  import VMap from '../components/VMap'
2caf9228   liuqimichale   公共卡片头部
35
  import VParking from '../components/VParking'
d3312374   liuqimichale   收费员信息
36
  import VToll from '../components/VToll'
dcff1e92   liuqimichale   进出场
37
  import VInout from '../components/VInout'
6ee688df   liuqimichale   收入信息
38
  import VIncome from '../components/VIncome'
ea141a52   liuqimichale   泊位
39
  import VBerth from '../components/VBerth'
4d234fc3   liuqimichale   关闭esl
40
  export default {
1e4db980   liuqimichale   轮廓
41
42
43
    name: 'VHome',
    components: {
      VHeader,
2caf9228   liuqimichale   公共卡片头部
44
      VMap,
d3312374   liuqimichale   收费员信息
45
      VParking,
dcff1e92   liuqimichale   进出场
46
      VToll,
6ee688df   liuqimichale   收入信息
47
      VInout,
ea141a52   liuqimichale   泊位
48
49
      VIncome,
      VBerth
1e4db980   liuqimichale   轮廓
50
    }
4d234fc3   liuqimichale   关闭esl
51
52
53
  }
  </script>
  
1e4db980   liuqimichale   轮廓
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  <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   轮廓
68
69
70
71
72
73
74
      width: 25%;
    }
    .main-center{
      width: calc(50% - 20px);
      margin: 0 10px;
      border:1px solid #1679de;
    }
86551874   liuqimichale   左右区域
75
76
77
78
79
    .frame-wrap-center{
      margin: 10px 0;
    }
    .frame-wrap{
      height: calc((100% - 20px)/3);
f5d4b70c   liuqimichale   进出场信息
80
81
      background: url("../images/content/frame-wrap.png");
      background-size: 100% 100%;
6ee688df   liuqimichale   收入信息
82
      overflow: hidden;
f5d4b70c   liuqimichale   进出场信息
83
84
85
86
87
      /*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   左右区域
88
    }
4d234fc3   liuqimichale   关闭esl
89
90
  
  </style>