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 }