Blame view

src/views/cards/cardPoint.vue 2.14 KB
bb951693   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
31
32
33
34
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  <template>
    <div class="leftRightPadding">
      <div class="card-point-bg">
        <div class="carbg"></div>
        <p class="buy-card-btn" @click="$router.push({name:'buyCard'})">+<span>购买会员卡</span></p>
        <div class="slogan">
          <p>
            年卡、季卡、月卡,任你选,停车场让您挑,
          </p>
          <p>优惠停车,惊喜不断!</p>
        </div>
      </div>
  
      <p class="sweet">温馨提示:</p>
      <div class="sweet-con">
        <p>
          1、年卡有效期为一年,从开卡之日算起往后一年时间内在所选停车场均可免费停车,到期后自动失效。
        </p>
        <p>
          2、季卡有效期为三个月,从开卡之日算起往后三个月内所选停车场免费停车,到期后自动失效。
        </p>
        <p>
          3、月卡有效期为一个月,从开卡之日算起,往后一个月为止在所选停车场长内均可免费停车,到期后自动失效。
        </p>
        <p>
          4、所有卡均  <span>不支持预留车位</span> ,只适用于所选停车场进出场结算。
        </p>
      </div>
  
    </div>
  </template>
  
  <script>
  export default {
    name: 'cardPoint'
  }
  </script>
  
  <style scoped lang="scss">
    .card-point-bg {
      height: 212px;
      margin: 10px 0;
      position: relative;
      background: url("../../assets/images/cards/cardPointBg.png") no-repeat;
      background-size: 100% 100%;
    }
    .carbg{
      width: 134px;
      height: 141px;
      position: absolute;
      left: 21px;
      top:30px;
      background: url("../../assets/images/cards/carBg.png") no-repeat;
      background-size: 100% 100%;
    }
    .buy-card-btn{
      position: absolute;
      left: 90px;
      top:71px;
      font-size: 24px;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
      span{
        margin-left: 30px;
      }
    }
    .slogan{
      position: absolute;
      left: 45px;
      top: 150px;
      text-align: center;
      color: #fff;
    }
    .sweet{
      padding-left: 20px;
      background: url("../../assets/images/sweet.png") no-repeat 0 center;
    }
    .sweet-con{
      color: #666;
      p{
        margin-bottom: 10px;
        line-height: 25px;
      }
      span{
        color: #D29E0D;
      }
    }
  </style>