1234567891011121314151617 |
- import { wxRequest } from './request'
- const bindMobileURL = '/user/bind/mobile'
- const loginURL = '/user/login'
- const bindBaseInfoURL = '/user/bind/base/info'
- const chargeListURL = '/get/charge/list'
- export const ittLogin = (data) => wxRequest(loginURL, data)
- export const bindMobile = (data) => wxRequest(bindMobileURL, data)
- export const bindBaseInfo = (data) => wxRequest(bindBaseInfoURL, data)
- export const chargeList = (data) => wxRequest(chargeListURL, data)
|