Blame view

src/components/VToll.vue 2.23 KB
d3312374   liuqimichale   收费员信息
1
2
3
4
  <template>
      <div class="theme-wrap">
          <card-title> <span>收费员消息</span></card-title>
          <div class="theme-body">
633692cc   liuqimichale   axios
5
              <account-num :totalnum="total">
d3312374   liuqimichale   收费员信息
6
7
8
9
                  <span>应签到</span>
              </account-num>
              <ul class="theme-container">
                  <li class="roadside">
633692cc   liuqimichale   axios
10
                      <p>{{tollsign|filterTotal}}</p>
d3312374   liuqimichale   收费员信息
11
12
13
                      <p>已签到</p>
                  </li>
                  <li class="roadclose">
633692cc   liuqimichale   axios
14
                      <p>{{tollnosign|filterTotal}}</p>
d3312374   liuqimichale   收费员信息
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
                      <p>未签到</p>
                  </li>
              </ul>
          </div>
      </div>
  </template>
  
  <script>
  import CardTitle from './base/CardTitle'
  import AccountNum from './base/AccountNum'
  export default {
    name: 'VToll',
    components: {
      CardTitle,
      AccountNum
    },
633692cc   liuqimichale   axios
31
    props:['total','tollsign','tollnosign'],
d3312374   liuqimichale   收费员信息
32
33
    data(){
      return{
633692cc   liuqimichale   axios
34
  
d3312374   liuqimichale   收费员信息
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
      }
    }
  }
  </script>
  
  <style scoped lang="scss">
      .theme-wrap {
          height: 100%;
      }
      .theme-body {
          height: calc(100% - 30px);
          margin-left: 20px;
      }
      .theme-container{
          height: 70%;
          display: flex;
          align-items: center;
          >li{
              flex: 1;
              height: 49px;
              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   进出场
66
                          font-size: 14px;
d3312374   liuqimichale   收费员信息
67
68
69
70
71
72
73
74
75
76
                      }
                  }
              }
              &:nth-of-type(2){
                  p{
                      &:first-child{
                          @include fontStyle(24px);
                          background-image: $fontOrange;
                      }
                      &:last-child{
dcff1e92   liuqimichale   进出场
77
                          font-size: 14px;
d3312374   liuqimichale   收费员信息
78
79
80
81
82
83
84
85
86
87
88
89
90
91
                      }
                  }
              }
          }
  
          .roadside{
              background: url("../images/content/sign.png") no-repeat 0 center;
          }
          .roadclose{
              background: url("../images/content/nosign.png") no-repeat 0 center;
          }
      }
  
  </style>