Blame view

src/components/VParking.vue 577 Bytes
2caf9228   liuqimichale   公共卡片头部
1
2
3
  <template>
      <div class="theme-wrap">
          <card-title> <span>停车场消息</span></card-title>
8530c025   liuqimichale   总计
4
          <div class="theme-body">
f9b345a2   liuqimichale   全局filters
5
              <account-num></account-num>
8530c025   liuqimichale   总计
6
          </div>
2caf9228   liuqimichale   公共卡片头部
7
8
9
10
11
      </div>
  </template>
  
  <script>
  import CardTitle from './base/CardTitle'
f9b345a2   liuqimichale   全局filters
12
  import AccountNum from './base/AccountNum'
2caf9228   liuqimichale   公共卡片头部
13
14
15
  export default {
    name: 'VParking',
    components: {
f9b345a2   liuqimichale   全局filters
16
17
      CardTitle,
      AccountNum
2caf9228   liuqimichale   公共卡片头部
18
19
20
21
22
23
24
25
26
27
    }
  }
  </script>
  
  <style scoped lang="scss">
      .theme-wrap {
          height: 100%;
      }
      .theme-body {
          height: calc(100% - 30px);
8530c025   liuqimichale   总计
28
29
          margin-left: 20px;
      }
f9b345a2   liuqimichale   全局filters
30
  
2caf9228   liuqimichale   公共卡片头部
31
  </style>