与牧同行-小程序用户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
422 B

6 days ago
  1. //在这里面定义所有接口,一个文件管理所有接口,易于维护
  2. import { http } from './http'; // 引入刚刚封装好的http模块,import属于ES6的语法,微信开发者工具必须打开ES6转ES5选项
  3. function login(params) { // 请求登录接口
  4. http('/login', 'post', params) // 接口请求的路由地址以及请求方法在此处传递
  5. }
  6. export default { // 暴露接口
  7. login
  8. }