| 1234567891011121314151617181920 |
- export function openExternalUrl(url) {
- // #ifdef APP-PLUS
- plus.runtime.openURL(url, (error) => {
- if (error) {
- uni.showToast({ title: '打开失败', icon: 'none' });
- }
- });
- // #endif
- // #ifdef H5
- window.open(url, '_blank');
- // #endif
- // #ifdef MP-WEIXIN
- // 小程序只能使用 web-view 组件,这里可以跳转到一个内嵌 web-view 的页面
- uni.navigateTo({
- url: `/pages/webview/webview?url=${encodeURIComponent(url)}`
- });
- // #endif
- }
|