165 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			165 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
import request from "@/utils/request.js";
 | 
						|
/**
 | 
						|
 * 公共接口 ,优惠券接口 , 行业此讯 , 手机号码注册
 | 
						|
 *
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
 * 获取主页数据 无需授权
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function getIndexData()
 | 
						|
{
 | 
						|
  return request.get("index",{},{ noAuth : true});
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 获取登录授权login
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function getLogo()
 | 
						|
{
 | 
						|
  return request.get('wechat/getLogo', {}, { noAuth : true});
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 * 保存form_id
 | 
						|
 * @param string formId
 | 
						|
 */
 | 
						|
export function setFormId(formId) {
 | 
						|
  return request.post("wechat/set_form_id", { formId: formId});
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 领取优惠券
 | 
						|
 * @param int couponId
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function setCouponReceive(couponId){
 | 
						|
  return request.post('coupon/receive', { couponId: couponId});
 | 
						|
}
 | 
						|
/**
 | 
						|
 * 优惠券列表
 | 
						|
 * @param object data
 | 
						|
*/
 | 
						|
export function getCoupons(data){
 | 
						|
  return request.get('coupons',data,{noAuth:true})
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 手机号+验证码登录接口
 | 
						|
 * @param object data
 | 
						|
*/
 | 
						|
export function loginMobile(data){
 | 
						|
  return request.post('login/mobile',data,{noAuth:true})
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 获取短信KEY
 | 
						|
 * @param object phone
 | 
						|
*/
 | 
						|
export function verifyCode(){
 | 
						|
  return request.get('verify_code', {},{noAuth:true})
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 验证码发送
 | 
						|
 * @param object phone
 | 
						|
*/
 | 
						|
export function registerVerify(phone){
 | 
						|
  return request.post('sendCode', { phone: phone },{noAuth:true},1)
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 手机号注册
 | 
						|
 * @param object data
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function phoneRegister(data){
 | 
						|
  return request.post('register',data,{noAuth:true});
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 手机号修改密码
 | 
						|
 * @param object data
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function phoneRegisterReset(data){
 | 
						|
  return request.post('register/reset',data,{noAuth:true})
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 手机号+密码登录
 | 
						|
 * @param object data
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function phoneLogin(data){
 | 
						|
  return request.post('login',data,{noAuth:true})
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 切换H5登录
 | 
						|
 * @param object data
 | 
						|
*/
 | 
						|
// #ifdef MP
 | 
						|
export function switchH5Login(){
 | 
						|
  return request.post('switch_h5', { 'from':'routine'});
 | 
						|
}
 | 
						|
// #endif
 | 
						|
 | 
						|
/*
 | 
						|
 * h5切换公众号登录
 | 
						|
 * */
 | 
						|
// #ifdef H5
 | 
						|
export function switchH5Login() {
 | 
						|
  return request.post("switch_h5", { 'from': "wechat" });
 | 
						|
}
 | 
						|
// #endif
 | 
						|
 | 
						|
/**
 | 
						|
 * 换绑手机号
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function bindingPhone(data){
 | 
						|
  return request.post('update/binding',data);
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 换绑手机号校验
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function bindingVerify(data){
 | 
						|
  return request.post('update/binding/verify',data);
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 退出登錄
 | 
						|
 *
 | 
						|
*/
 | 
						|
export function logout(){
 | 
						|
  return request.get('logout');
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 获取订阅消息id
 | 
						|
 */
 | 
						|
export function getTemlIds(data)
 | 
						|
{
 | 
						|
  return request.get('wechat/program/my/temp/list', data , { noAuth:true});
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 获取小程序直播列表
 | 
						|
 */
 | 
						|
export function getLiveList(page,limit) {
 | 
						|
  return request.get('wechat/live', { page, limit}, { noAuth: true });
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 获取小程序二维码
 | 
						|
 */
 | 
						|
export function getQrcode(data) {
 | 
						|
  return request.post('qrcode/get',data,{ noAuth: true });
 | 
						|
}
 |