
 uniapp自定义浮动图标
	<button class="fab" @click="goPage">
			<image src="../../../static/yiyuan.png" mode="" style="width: 60rpx;height:60rpx;"></image>
		</button>
 
	.fab {
		z-index: 100;
		position: fixed;
		bottom: 100px;
		right: 20px;
		width: 60px;
		height: 60px;
		background-color: rgba(255, 249, 195, 0.5);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		border-width: 0px;
		border: 0;
		box-shadow: 0;
	}
 

<template>
	<div class="list">
		<view class="" v-for="(item, articleListIndex) in articleList" :key="articleListI
                


















