Blame view

src/components/VParking.vue 2.4 KB
2caf9228   liuqimichale   公共卡片头部
1
2
3
  <template>
      <div class="theme-wrap">
          <card-title> <span>停车场消息</span></card-title>
8530c025   liuqimichale   总计
4
          <div class="theme-body">
633692cc   liuqimichale   axios
5
              <account-num :totalnum="total">
d3312374   liuqimichale   收费员信息
6
7
                  <span>总计</span>
              </account-num>
245e9bc8   liuqimichale   停车场信息
8
9
              <ul class="theme-container">
                  <li class="roadside">
633692cc   liuqimichale   axios
10
                      <p>{{rodeside|filterTotal}}</p>
245e9bc8   liuqimichale   停车场信息
11
12
13
                      <p>路侧</p>
                  </li>
                  <li class="roadclose">
633692cc   liuqimichale   axios
14
                      <p>{{rodeclose|filterTotal}}</p>
245e9bc8   liuqimichale   停车场信息
15
16
17
                      <p>封闭</p>
                  </li>
              </ul>
8530c025   liuqimichale   总计
18
          </div>
2caf9228   liuqimichale   公共卡片头部
19
20
21
22
23
      </div>
  </template>
  
  <script>
  import CardTitle from './base/CardTitle'
f9b345a2   liuqimichale   全局filters
24
  import AccountNum from './base/AccountNum'
2caf9228   liuqimichale   公共卡片头部
25
26
27
  export default {
    name: 'VParking',
    components: {
f9b345a2   liuqimichale   全局filters
28
29
      CardTitle,
      AccountNum
245e9bc8   liuqimichale   停车场信息
30
    },
633692cc   liuqimichale   axios
31
    props:['total','rodeside','rodeclose'],
245e9bc8   liuqimichale   停车场信息
32
33
    data(){
      return{
350097e4   liuqimichale   调取接口
34
  
245e9bc8   liuqimichale   停车场信息
35
      }
350097e4   liuqimichale   调取接口
36
37
38
39
40
41
42
43
44
45
46
47
    },
    created(){
  
  
    },
    watch:{
      // rodeside:function(val){
      //   //console.log(val)
      // },
      // total:function (val) {
      //   //console.log(val)
      // }
2caf9228   liuqimichale   公共卡片头部
48
49
50
51
52
53
54
55
56
57
    }
  }
  </script>
  
  <style scoped lang="scss">
      .theme-wrap {
          height: 100%;
      }
      .theme-body {
          height: calc(100% - 30px);
8530c025   liuqimichale   总计
58
59
          margin-left: 20px;
      }
245e9bc8   liuqimichale   停车场信息
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
      .theme-container{
          height: 70%;
          display: flex;
          align-items: center;
          >li{
              flex: 1;
              height: 57px;
              padding-left: 70px;
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              &:nth-of-type(1){
                  p{
                      &:first-child{
                          @include fontStyle(24px);
                          background-image: $fontBlue;
                      }
                      &:last-child{
dcff1e92   liuqimichale   进出场
78
                          font-size: 14px;
245e9bc8   liuqimichale   停车场信息
79
80
81
82
83
84
85
86
87
88
                      }
                  }
              }
              &:nth-of-type(2){
                  p{
                      &:first-child{
                          @include fontStyle(24px);
                          background-image: $fontOrange;
                      }
                      &:last-child{
dcff1e92   liuqimichale   进出场
89
                          font-size: 14px;
245e9bc8   liuqimichale   停车场信息
90
91
92
93
94
95
96
97
98
99
100
101
                      }
                  }
              }
          }
  
          .roadside{
              background: url("../images/content/roadside.png") no-repeat 0 center;
          }
          .roadclose{
              background: url("../images/content/roadclose.png") no-repeat 0 center;
          }
      }
f9b345a2   liuqimichale   全局filters
102
  
2caf9228   liuqimichale   公共卡片头部
103
  </style>