header-ufo.vue
926 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
55
56
<template>
<div class="header">
<div class="back-wrapper" @touchend="onBack">
<div class="back"></div>
</div>
<span class="title">{{title}}</span>
</div>
</template>
<script>
export default {
name: 'HeaderUfo',
props: ['title'],
methods: {
onBack() {
this.$yoho.finishPage({});
}
}
};
</script>
<style lang="scss" scoped>
.header {
width: 100%;
height: 45PX;
padding-left: 20PX;
padding-right: 20PX;
background-color: #fff;
position: relative;
text-align: center;
.back-wrapper {
display: flex;
align-items: center;
height: 100%;
width: 60PX;
position: absolute;
left: 20PX;
}
.title {
display: inline-block;
color: black;
font-size: 17PX;
line-height: 45PX;
}
.back {
width: 24PX;
height: 24PX;
background: url(~statics/image/order/back@3x.png) no-repeat;
background-size: cover;
}
}
</style>