Commit dcff1e92eadbaaf08afe3ecaa9c43e94da1c4d7a

Authored by liuqimichale
1 parent d3312374

进出场

src/components/VInout.vue 0 → 100644
  1 +<template>
  2 + <div class="theme-wrap">
  3 + <card-title> <span>进出场消息</span></card-title>
  4 + <div class="theme-body">
  5 +
  6 + </div>
  7 + </div>
  8 +</template>
  9 +
  10 +<script>
  11 +import CardTitle from './base/CardTitle'
  12 +import AccountNum from './base/AccountNum'
  13 +export default {
  14 + name: 'VInout',
  15 + components: {
  16 + CardTitle,
  17 + AccountNum
  18 + },
  19 + data(){
  20 + return{
  21 + sideNum: 23454,
  22 + closeNum: 23454
  23 + }
  24 + }
  25 +}
  26 +</script>
  27 +
  28 +<style scoped lang="scss">
  29 + .theme-wrap {
  30 + height: 100%;
  31 + }
  32 + .theme-body {
  33 + height: calc(100% - 30px);
  34 + margin-left: 20px;
  35 + }
  36 +
  37 +
  38 +</style>
... ...
src/components/VParking.vue
... ... @@ -63,7 +63,7 @@ export default {
63 63 background-image: $fontBlue;
64 64 }
65 65 &:last-child{
66   - font-size: 16px;
  66 + font-size: 14px;
67 67 }
68 68 }
69 69 }
... ... @@ -74,7 +74,7 @@ export default {
74 74 background-image: $fontOrange;
75 75 }
76 76 &:last-child{
77   - font-size: 16px;
  77 + font-size: 14px;
78 78 }
79 79 }
80 80 }
... ...
src/components/VToll.vue
... ... @@ -63,7 +63,7 @@ export default {
63 63 background-image: $fontBlue;
64 64 }
65 65 &:last-child{
66   - font-size: 16px;
  66 + font-size: 14px;
67 67 }
68 68 }
69 69 }
... ... @@ -74,7 +74,7 @@ export default {
74 74 background-image: $fontOrange;
75 75 }
76 76 &:last-child{
77   - font-size: 16px;
  77 + font-size: 14px;
78 78 }
79 79 }
80 80 }
... ...
src/view/VHome.vue
... ... @@ -9,7 +9,9 @@
9 9 <div class="frame-wrap frame-wrap-center">
10 10 <v-toll></v-toll>
11 11 </div>
12   - <div class="frame-wrap"></div>
  12 + <div class="frame-wrap">
  13 + <v-inout></v-inout>
  14 + </div>
13 15 </li>
14 16 <li class="main-center">
15 17 <v-map></v-map>
... ... @@ -28,13 +30,15 @@ import VHeader from &#39;../components/VHeader&#39;
28 30 import VMap from '../components/VMap'
29 31 import VParking from '../components/VParking'
30 32 import VToll from '../components/VToll'
  33 +import VInout from '../components/VInout'
31 34 export default {
32 35 name: 'VHome',
33 36 components: {
34 37 VHeader,
35 38 VMap,
36 39 VParking,
37   - VToll
  40 + VToll,
  41 + VInout
38 42 }
39 43 }
40 44 </script>
... ...