在script中
// #ifdef APP-PLUS
console.log("11");
// #endif
// #ifdef MP-WEIXIN
console.log("22");
// #endif
在template中
<!-- #ifdef APP-PLUS -->
<view>哈哈哈</view>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<view>嘻嘻嘻</view>
<!-- #endif -->
在style中
.tip {
/* #ifdef APP-PLUS */
font-size: 26rpx; /* 仅在 APP 平台使用 */
/* #endif */
/* #ifdef MP-WEIXIN */
font-size: 30rpx; /* 仅在微信小程序平台使用 */
/* #endif */
/* 默认样式 */
font-size: 28rpx; /* 默认大小,适用于其他平台 */
color: #ffffff;
margin-top: 20rpx;
}