header.vue
1.93 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
83
84
85
86
87
88
89
90
91
<template>
<div class="blk-header-wrap" :class="class">
<div class="blk-header">
<div class="blk-header-left">
<slot name="left">
<i class="icon icon-left" @click="goBack"></i>
</slot>
</div>
<div class="blk-header-right">
<slot name="right"></slot>
</div>
<div class="blk-header-main">
<span class="blk-header-title">{{title}}</span>
</div>
</div>
<div class="blk-header-gap"></div>
</div>
</template>
<script>
const yoho = require('yoho');
module.exports = {
props: ['title', 'class'],
methods: {
goBack() {
yoho.goBack({}, function() {}, function() {});
}
}
};
</script>
<style>
.blk-header {
box-sizing: content-box;
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 210;
padding: 20px 30px;
height: 70px;
max-width: 750px;
margin-left: auto;
margin-right: auto;
line-height: 70px;
font-size: 48px;
background-color: #fff;
color: #000;
.icon,
.blk-header-title {
vertical-align: middle;
}
}
.blk-header-main {
display: block;
text-align: center;
margin-left: auto;
margin-right: auto;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.blk-header-left {
float: left;
}
.blk-header-right {
float: right;
.icon {
margin-left: 30px;
}
}
.blk-header-gap {
height: 100px;
background-color: transparent;
}
.app.ios {
.blk-header {
padding-top: 60px;
}
.blk-header-gap {
height: calc(70 + 60 + 10)px;
}
}
</style>