UNPKG

ttk-app-core

Version:
16 lines (12 loc) 421 B
/** * webapi.js 封装app所需的所有web请求 * 供app测试使用,app加入网站后webpai应该由网站通过config,提供给每个app */ import { fetch } from 'edf-utils' export default { mail: { share: (url, option) => fetch.post(url, option), mailShare: (url, option) => fetch.post(url, option), print: (url, option) => fetch.formPost(url, option) } }