uniapp微信小程序点击跳转意见反馈

uniapp yekong 62℃

uniapp实现意见反馈

代码

<button open-type='feedback' class="aboutBodyItem button-style">
</button>
<button open-type='feedback' class="aboutBodyItem button-style">
	<image class="icon" src="/static/my/icon8.png">
	</image>
	<text>意见反馈</text>
</button>

移除button自带样式

	.button-style {
		background: none;
		/* 清除背景 */
		border: none;
		/* 清除所有边框 */
		padding: 0;
		/* 清除内边距 */
		margin: 0;
		/* 清除外边距 */
		color: inherit;
		/* 继承文字颜色 */
		text-align: left;
		/* 文字对齐方式 */
		box-shadow: none;
		/* 移除阴影 */
		line-height: normal;
		/* 设置正常行高 */
		font-size: 16px;
		/* 可调整字体大小 */
		outline: none;
		/* 移除焦点轮廓线 */
	}

	.button-style::after {
		border: none; //黑色边框去掉了
	}

在微信小程序后台-管理-用户反馈可以查看到。

在微信小程序后台-管理-用户反馈可以查看到

喜欢 (0)