Authored by 郭成尧

tip

/* global wx */
import $ from 'yoho-jquery';
import tip from 'plugin/tip';
class LinkHandle {
constructor() {
... ... @@ -65,9 +66,7 @@ class LinkHandle {
} else if (paramsObj.action === 'go.shop') { // 店铺
path = `/pages/goodsList/brandStore?shopId=${paramsObj.params.shop_id}`;
} else {
wx.miniProgram.postMessage({
message: '暂不支持,请使用Yoho!buy有货app选购'
});
tip.show('暂不支持,请使用Yoho!buy有货APP选购');
}
return path;
... ...
... ... @@ -373,3 +373,22 @@ li {
transform-origin: right center;
}
}
.yoho-tip {
position: fixed;
display: none;
text-align: center;
width: 50%;
padding: 15PX;
top: 50%;
left: 50%;
margin-left: -25%;
margin-top: -45PX;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
font-size: 24px;
border: none;
z-index: 100;
box-sizing: border-box;
border-radius: 10PX;
}
... ...