123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- import request from "@/utils/request.js";
- //获取首页数据 无需授权
- export function getIndexData()
- {
- return request.get("index/getIndex",{},{ noAuth : true});
- }
- //公告列表
- export function getNotice()
- {
- return request.post("index/newsList",{},{ noAuth : true});
- }
- //公告详情
- export function newsDetail(data)
- {
- return request.post("index/news",data,{ noAuth : true});
- }
- //仓库列表
- export function getWarehouse()
- {
- return request.get("pub/warehouse",{},{ noAuth : true});
- }
- //产品列表
- export function productList(data)
- {
- return request.post("index/proList",data,{ noAuth : true});
- }
- //产品详情
- export function productDetail(data)
- {
- return request.post("index/proItem",data,{ noAuth : true});
- }
- //推荐产品
- export function recommend()
- {
- return request.post("index/proRand",{},{ noAuth : true});
- }
- //获取验证码
- export function registerVerify(data)
- {
- return request.post("login/yzm",data,{ noAuth : true});
- }
- //注册一
- export function ApiReg1(data)
- {
- return request.post("login/reg1",data,{ noAuth : true});
- }
- //注册二
- export function ApiReg2(data)
- {
- return request.post("login/reg2",data,{ noAuth : true});
- }
- //登录
- export function loginApi(data)
- {
- return request.post("login/l",data,{ noAuth : true});
- }
- /**
- * 获取登录授权login
- *
- */
- export function getLogo()
- {
- return request.get('wechat/get_logo', {}, { 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 int types 0全部 1未使用 2已使用
- */
- export function getUserCoupons(types){
- return request.get('coupons/user/'+types)
- }
- /**
- * 文章分类列表
- *
- */
- export function getArticleCategoryList(){
- return request.get('article/category/list',{},{noAuth:true})
- }
- /**
- * 文章列表
- * @param int cid
- *
- */
- export function getArticleList(cid,data){
- return request.get('article/list/' + cid, data,{noAuth:true})
- }
- /**
- * 文章 热门列表
- *
- */
- export function getArticleHotList(){
- return request.get('article/hot/list',{},{noAuth:true});
- }
- /**
- * 文章 轮播列表
- *
- */
- export function getArticleBannerList(){
- return request.get('article/banner/list',{},{noAuth:true})
- }
- /**
- * 文章详情
- * @param int id
- *
- */
- export function getArticleDetails(id){
- return request.get('article/details/'+id,{},{noAuth:true});
- }
- /**
- * 手机号+验证码登录接口
- * @param object data
- */
- export function loginMobile(data){
- return request.post('login/mobile',data,{noAuth:true})
- }
- /**
- * 手机号注册
- * @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('binding',data);
- }
- /**
- * 退出登錄
- *
- */
- export function logout(){
- return request.get('logout');
- }
- /**
- * 获取订阅消息id
- */
- export function getTemlIds()
- {
- return request.get('wechat/teml_ids', {}, { noAuth:true});
- }
- /**
- * 首页拼团数据
- */
- export function pink()
- {
- return request.get('pink', {}, { noAuth:true});
- }
- /**
- * 获取城市信息
- */
- export function getCity() {
- return request.get('city_list', { }, { noAuth: true });
- }
- /**
- * 获取小程序直播列表
- */
- export function getLiveList(page,limit) {
- return request.get('wechat/live', { page, limit}, { noAuth: true });
- }
|