UNPKG

ttk-app-core

Version:
17 lines (14 loc) 663 B
/** * webapi.js 封装app所需的所有web请求 * 供app测试使用,app加入网站后webpai应该由网站通过config,提供给每个app */ import { fetch } from 'edf-utils' export default { apocRptStatement: { query: (option) => fetch.post('/v1/gl/certificatecollect/query', option), export: (option) => fetch.formPost('/v1/gl/certificatecollect/export', option), print: (option) => fetch.printPost('/v1/gl/certificatecollect/print', option), getDisplayDate: () => fetch.post('/v1/gl/report/queryDate', {}), getDocVoucherDate:()=>fetch.post('/v1/gl/doc/findMaxDocVoucherDate', {}) } }