// my api 接口 import { wxRequest } from './request' const bindMobileURL = '/user/bind/mobile' // 获取用户手机号 const loginURL = '/user/login' // 登录 const bindBaseInfoURL = '/user/bind/base/info' // 绑定用户头像昵称 const myReportListURL = '/get/my/report/list' // 我的报告 const getReportURL = '/get/report' // 查看我的报告 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) export const myReportList = (data) => wxRequest(myReportListURL, data) export const getReport = (data) => wxRequest(getReportURL, data)