@tslsmart/magic-applet
Version:
特斯联移动端统一接口,抹平h5和wgt的差异
21 lines (14 loc) • 301 B
text/typescript
// #ifdef APP-PLUS
import { action as appAction } from '../app/action'
// #endif
// #ifdef H5
import { action as h5Action } from '../h5/action'
// #endif
let temAction
// #ifdef APP-PLUS
temAction = appAction
// #endif
// #ifdef H5
temAction = h5Action
// #endif
export const action = temAction