html
<view class="rule-img horizontal center" style="margin-right: 20rpx;">
<image class="img" :src="imgSrc" @click="onTapClick('xx')" style="z-index: 1;" />
<button v-if="b > 5" class="share-btn transparent" open-type="share"
style="z-index: 2; position: absolute;"></button>
</view>
.share-btn {
width: 170rpx;
height: 56rpx;
border: none !important;
plain: true;
background: transparent;
box-shadow: none;
&::after {
border: none;
}
}
很多第三方api需要button open-type承载入口,但是button有时候达不到UI的要求,只能将button设置为全透明的覆盖在上层,button自带的边框隐藏只需要添加上面的css样式即可