Commit dcff1e92eadbaaf08afe3ecaa9c43e94da1c4d7a
1 parent
d3312374
进出场
Showing
4 changed files
with
48 additions
and
6 deletions
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,7 +63,7 @@ export default { | ||
63 | background-image: $fontBlue; | 63 | background-image: $fontBlue; |
64 | } | 64 | } |
65 | &:last-child{ | 65 | &:last-child{ |
66 | - font-size: 16px; | 66 | + font-size: 14px; |
67 | } | 67 | } |
68 | } | 68 | } |
69 | } | 69 | } |
@@ -74,7 +74,7 @@ export default { | @@ -74,7 +74,7 @@ export default { | ||
74 | background-image: $fontOrange; | 74 | background-image: $fontOrange; |
75 | } | 75 | } |
76 | &:last-child{ | 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,7 +63,7 @@ export default { | ||
63 | background-image: $fontBlue; | 63 | background-image: $fontBlue; |
64 | } | 64 | } |
65 | &:last-child{ | 65 | &:last-child{ |
66 | - font-size: 16px; | 66 | + font-size: 14px; |
67 | } | 67 | } |
68 | } | 68 | } |
69 | } | 69 | } |
@@ -74,7 +74,7 @@ export default { | @@ -74,7 +74,7 @@ export default { | ||
74 | background-image: $fontOrange; | 74 | background-image: $fontOrange; |
75 | } | 75 | } |
76 | &:last-child{ | 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,7 +9,9 @@ | ||
9 | <div class="frame-wrap frame-wrap-center"> | 9 | <div class="frame-wrap frame-wrap-center"> |
10 | <v-toll></v-toll> | 10 | <v-toll></v-toll> |
11 | </div> | 11 | </div> |
12 | - <div class="frame-wrap"></div> | 12 | + <div class="frame-wrap"> |
13 | + <v-inout></v-inout> | ||
14 | + </div> | ||
13 | </li> | 15 | </li> |
14 | <li class="main-center"> | 16 | <li class="main-center"> |
15 | <v-map></v-map> | 17 | <v-map></v-map> |
@@ -28,13 +30,15 @@ import VHeader from '../components/VHeader' | @@ -28,13 +30,15 @@ import VHeader from '../components/VHeader' | ||
28 | import VMap from '../components/VMap' | 30 | import VMap from '../components/VMap' |
29 | import VParking from '../components/VParking' | 31 | import VParking from '../components/VParking' |
30 | import VToll from '../components/VToll' | 32 | import VToll from '../components/VToll' |
33 | +import VInout from '../components/VInout' | ||
31 | export default { | 34 | export default { |
32 | name: 'VHome', | 35 | name: 'VHome', |
33 | components: { | 36 | components: { |
34 | VHeader, | 37 | VHeader, |
35 | VMap, | 38 | VMap, |
36 | VParking, | 39 | VParking, |
37 | - VToll | 40 | + VToll, |
41 | + VInout | ||
38 | } | 42 | } |
39 | } | 43 | } |
40 | </script> | 44 | </script> |