top-bar.vue
1.18 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
<template>
<div :style="{display: topBarDisplay}">
<header-box :title="title" ref="header"></header-box>
</div>
</template>
<style>
.blk-header {
transition: 0.3s all;
}
.ghost .blk-header {
color: #fff;
}
</style>
<script>
import yoho from 'yoho';
import $ from 'jquery';
import HeaderBox from 'component/header.vue';
import tip from 'common/tip';
export default {
name: 'top-bar',
data() {
return {
isiOS: yoho.isiOS
};
},
props: {
shareData: {
type: Object,
},
showTopBar: false
},
computed: {
title() {
return this.shareData.brandName;
},
topBarDisplay() {
return this.showTopBar ? 'block' : 'none';
}
},
components: {
HeaderBox
},
methods: {
goBack() {
yoho.goBack();
},
showFilter() {
this.$parent.$refs.filter.isVisible = !this.$parent.$refs.filter.isVisible;
}
}
};
</script>