bottom-tips.vue
902 Bytes
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
<template>
<div class="bottom-tips" v-if="visb">
<div class="line"></div>
<div class="tips-wrap">
<div class="tips">{{innerText ? innerText :'我是有底线的'}}</div>
</div>
</div>
</template>
<script>
export default {
props: ['visb', 'innerText'],
data() {
return {
key: 'value'
}
},
created() {
console.log('visb:', this.visb)
}
}
</script>
<style lang="less" scoped>
/// 底线
.bottom-tips {
position: relative;
padding: 40px 0;
width: 100%;
text-align: center;
color: #666666;
.line {
border-bottom: dashed 1px #cccccc;
width: 80%;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: 0 auto;
}
.tips-wrap {
font-size: 28px;
display: flex;
justify-content: center;
.tips {
position: relative;
padding: 0 20px;
background-color: #ffffff;
}
}
}
</style>