orderPay.vue 449 Bytes
<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>