right-menu.vue
797 字节
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
<template>
<navigator class="right-menu-wrapper" open-type="switchTab" url="/pages/xunjian/list" hover-class="none">
<image :src="static_media.img01" class="right-menu-wrapper-img"></image>
</navigator>
</template>
<script>
export default {
name: "no-recode",
props: {
show: {
}
},
data() {
return {
}
},
computed:{
static_media() {
return {
img01: this.$lib.$config.localMedia + '/static/img/home1.png',
// img01: '/static/img/home1.png'
}
}
}
}
</script>
<style>
.right-menu-wrapper{
position: fixed;
right: 20px;
bottom: 92px;
z-index: 111145;
}
.right-menu-wrapper-img{
width: 22px;
height: 22px;
border: 1px solid #e1e1e1;
border-radius: 50%;
padding: 7px;
background-color: rgba(255,255,255,.9);
}
</style>