function callAppBridge(func, argObj) {
const app = window.webkit || window.app;
const args = typeof argObj === 'object' ? JSON.stringify(argObj) : argObj;
if (argObj) {
app[`${func}`](args);
} else {
app[`${func}`]();
}
export default {
// 反回Home
goHome: callAppBridge.bind(null, 'goHome'),
// 复制文本
copy: callAppBridge.bind(null, 'copy'),
// 分享朋友/朋友圈
share: callAppBridge.bind(null, 'share'),
// 办卡页面调起app端微信分享
shareModule: callAppBridge.bind(null, 'shareModule'),
// 保存相册到本地
saveImg: callAppBridge.bind(null, 'saveImg'),
// app跳转外链
openWebsite: callAppBridge.bind(null, 'openWebsite'),
// 机具调拨
posTransfer: callAppBridge.bind(null, 'posTransfer'),
// 保存图片分享
getPoster: callAppBridge.bind(null, 'getPoster'),
};