Blame view

src/components/orderPay.vue 449 Bytes
455431ac   liuqimichale   欠费缴纳--费用支付
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  <template>
    <div>
      <div class="car-wrap">
        <div class="carBG">
          <p>蒙DT849</p>
          <p>D36.0123</p>
        </div>
      </div>
  
    </div>
  </template>
  
  <script>
  export default {
    name: 'orderPay'
  }
  </script>
  
  <style scoped lang="scss">
    .car-wrap {
      padding: 7px 7px;
    }
  
    .carBG {
      width: 100%;
      height: 130px;
      background: url("../assets/images/yellowBG.png") no-repeat;
      background-size: 100% 100%;
    }
  </style>