right-menu.vue 797 字节
<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>