UNPKG

ttk-app-core

Version:
15 lines (13 loc) 545 B
/** * webapi.js 封装app所需的所有web请求 * 供app测试使用,app加入网站后webpai应该由网站通过config,提供给每个app */ import {fetch} from 'edf-utils' export default { account: { query: (option) => fetch.post('v1/ba/bankAccount/queryList', option), delete: (option) => fetch.post('v1/ba/bankAccount/delete', option), update: (option) => fetch.post('/v1/ba/bankAccount/update', option), }, updateGuide: (option) => fetch.post('/v1/edf/menuguide/update', option) }