摘要: /* http.js */ import 'whatwg-fetch' // HTTP 工具类 export default class Http { static async request(method, url, data) { const param = { method: method, headers: { 'Content-Type': 'application/json' } }; 阅读全文
posted @ 2019-08-26 15:09 _心之所向便是光 阅读(837) 评论(0) 推荐(0) 编辑