sf
jiangping
2025-04-30 dcdb0231034810232f2542f3865666ebf72daf11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { get, post } from '@/utils/request.js'
 
// 品类列表
export function categoryList(data) {
    return post('business/category/saasList', data)
}
 
// 商品列表
export function goodsList(data) {
    return post('business/goods/list', data)
}
 
// 商品列表分页
export function goodsPage(data) {
    return post('business/goods/goodsPage', data)
}
 
// 商品列表不分页
export function listForH5(data) {
    return post('business/goods/listForH5', data)
}
 
// 品牌列表查询
export function brandList(data) {
    return post('business/brand/list', data)
}
 
// 获取H5首页图
export function h5Image(data) {
    return post('business/goods/h5Image', data)
}
 
// 登录
export function loginH5(data){
    return post('system/loginH5', data)
}
 
// 获取当前登录企业配置信息
export function getByLogin() {
    return get('business/webParam/getByLogin')
}
 
// 取当前登录的用户信息
export function getUserInfo() {
    return get('system/getUserInfo')
}
 
// 退出登录
export function logout(data){
    return post('system/logout', data)
}
 
// 获取当前登录企业配置信息1.0.2
export function getByLoginNew() {
    return get('business/webParam/getByLoginNew')
}