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