showBankCard.vue
1.61 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
<template>
<v-layout id="lendTotle" column justify-center align-center>
<v-container fluid class="pa-0">
<v-layout row wrap align-center>
<v-flex xs12 sm6>
<div class="text-xs-center">
<div>
<v-btn color="error" class="text" large>
<h3>招商银行 </h3>
<h3>**** **** **** 1190</h3>
</v-btn>
</div>
</div>
</v-flex>
</v-layout>
<v-card id="BorrowList" flat>
<v-list class="list">
<v-list-tile>
<v-list-tile-content class="BorrowListTitle"> + 添加银行卡 </v-list-tile-content>
<v-list-tile-action>
<v-icon class="BorrowListArrow">keyboard_arrow_right</v-icon>
</v-list-tile-action>
</v-list-tile>
</v-list>
</v-card>
</v-container>
</v-layout>
</template>
<script>
</script>
<style lang="scss">
.text {
background-image: linear-gradient(-113deg, #DAB269 11%, #F1CE8F 43%, #ECB653 100%);
border-radius: 10px;
float: left;
width: 21.4rem;
height: 5.45rem;
margin: 1.05rem;
font-weight: 300;
p{
font-weight: 800;
}
}
#BorrowList {
width: 100vw;
margin-top: 1.1rem;
border-top: 1px solid #979797;
.list {
padding: 0;
background-color: $toolbar-grey;
li {
height: 2.1rem;
div.list__tile {
height: 2.1rem;
color: $light-gold;
padding: 0 0.8rem;
border-bottom: 1px solid #979797;
}
}
.BorrowListTitle {
font-size: 15px;
font-weight: 500;
}
.BorrowListArrow {
font-size: 1rem;
color: $light-gold;
}
}
}
</style>