borrowTotle.vue
1.49 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
<template>
<v-layout column justify-center align-center>
<TotleCard />
<br />
<input type="search" class="search" value="搜索姓名"/>
<br />
<v-flex>
<v-card id="BorrowMenu" flat >
<v-list class="list">
<v-list-tile>
<v-list-tile-content class="BorrowMenuTitle">借款人</v-list-tile-content>
<v-list-tile-content class="BorrowMenuTitle">借款金额</v-list-tile-content>
<v-list-tile-content class="BorrowMenuTitle">时间</v-list-tile-content>
<v-list-tile-content class="BorrowMenuTitle">状态</v-list-tile-content>
</v-list-tile>
</v-list>
</v-card>
</v-flex>
</v-layout>
</template>
<script>
import TotleCard from '@/components/TotleCard'
export default {
components: {
TotleCard
}
}
</script>
<style lang="scss">
.search{
border: 1px solid #979797;
background-color: #3A424A;
outline: none;
border-radius: 8px;
text-align: center;
width: 22.1rem;
height: 1.9rem;
color: #DDCAA9;
}
#BorrowMenu {
width: 24.8rem;
border-radius: 2px;
.list {
background-color: $menu-grey;
padding: 0;
li {
height: 1.9rem;
.list__tile {
height: 1.9rem;
}
}
.BorrowMenuTitle {
padding: 1rem;
color: $light-gold;
font-size: 15px;
font-weight: bold;
}
}
}
</style>