bankcard-status.vue
1.26 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
<template>
<div class="wrapper">
<div class="title-wrapper">
<TitleComp txt="我的收款银行"></TitleComp>
</div>
<template v-if="!card">
<div class="item">
<span>您还未绑定银行卡,将无法收款</span>
<span class="link" @click="goCardAdd">添加银行卡</span>
</div>
</template>
<template v-else>
<div class="item">
<span>您已绑定银行卡</span>
<span class="link" @click="goCardList">查看银行卡</span>
</div>
</template>
</div>
</template>
<script>
import TitleComp from './title';
export default {
name: 'BankCardStatus',
components: {
TitleComp
},
props: {
card: {
type: Boolean,
default: false
}
},
methods: {
goCardList() {
this.$router.push({
name: 'bankcard'
});
},
goCardAdd() {
this.$router.push({
name: 'bankcard.add'
});
}
}
};
</script>
<style lang="scss" scoped>
.item {
text-align: left;
font-size: 24px;
margin-bottom: 20px;
color: white;
}
.title-wrapper {
text-align: left;
margin-bottom: 60px;
}
.btn {
display: inline-block;
width: 150px;
height: 50px;
line-height: 50px;
border: 1px solid black;
}
.link {
color: #64ad88;
}
</style>