buyCardDetail.vue
1.97 KB
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
<template>
<section class="">
<div class="vipCardBg">
<ul class="cardTypeList">
<li>年卡</li>
<li>月卡</li>
<li>半年卡</li>
</ul>
<div class="van-ellipsis" style="padding: 20px 0 10px 20px">万达停车场plName</div>
<div class="van-ellipsis" style="padding: 0 0 0 20px">万达停车场plAddress</div>
</div>
<van-cell-group inset style="margin-bottom: 10px;" @click="LinkBuyCard">
<van-cell >
<template #title>
<span style="font-size: 20px;font-weight: 600;">年卡</span>
</template>
</van-cell>
<van-cell title="万达月卡cardName" center value="立即购买" label="单价:¥1800.00" is-link>
</van-cell>
</van-cell-group>
<van-cell-group inset style="margin-bottom: 10px;">
<van-cell >
<template #title>
<span style="font-size: 20px;font-weight: 600;">年卡</span>
</template>
</van-cell>
<van-cell title="万达月卡cardName" center value="立即购买" label="单价:¥1800.00" is-link>
</van-cell>
</van-cell-group>
</section>
</template>
<script>
export default {
name: "buyCardDetail",
methods:{
LinkBuyCard(){
this.$router.push({
name: "buyVipCard"
}
);
}
}
};
</script>
<style scoped lang="less">
.vipCardBg {
margin-top: 14px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
/* width: 100%; */
height: 150px;
background-image: url('../../assets/images/cards/vipcardbg.png');
background-repeat: no-repeat;
/* background-position: center center; */
background-size: 100% 100%;
-moz-background-size: 100% 100%;
font-size: 16px;
color: #fff;
}
.cardTypeList {
padding: 20px 0 10px 20px;
overflow: hidden;
> li {
float: left;
margin-right: 10px;
padding: 2px 20px;
border-radius: 10px;
background: rgba(255, 255, 255, .3);
}
}
</style>