import https from '@/plugins/luch-request_0.0.7/request' /** * * 查看套餐详情 w */ export const getMealDet = data => { return https.get('/set-meal/get-detail', data) } /** * * 购买套餐 w */ export const renewWxPay = data => { return https.get('/renew/wx-pay', data) } /** * * 当前审核申请状态 w */ export const applyStatus = data => { return https.get('/apply/apply-status', data) } /** * * 申请 */ export const applyRegister = data => { return https.post('/apply/register', data) } // 获取验证码 w export const sendSmsW = param => https.get('/inform-user/send-sms', param) // 地区和腾讯KEY b w export const regionTree = param => https.get('/region/tree', param) /** * * 登录客户的帐号信息(到期时间) w */ export const accountDet = data => { return https.get('/merchant/login-account', data) } /** * * 开始授权 w */ export const getAuthUrl = data => { return https.get('/wx-open/get-auth-url', data) } /** * * 开始授权 w */ export const getIntroduce = data => { return https.get('/merchant/introduce-shop', data) } export const recentShop = data => { return https.get('/admin/recent-shop', data) }