aaa
doum
2026-06-04 08e9a67dd679f311e79a27b04cd0c53a30b4bccf
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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')
}
 
// 获取主播端页面配置
export function getByLoginAnchor() {
    return get('business/webParam/getByLoginAnchor')
}
 
// H5 主播端初始化全量数据
export function loadH5InitData() {
    return get('business/h5/initData')
}
 
// 生成订单编号
export function generateOrderNo() {
    return get('business/order/generateOrderNo')
}
 
// 提交预选订单
export function submitOrder(data) {
    return post('business/order/submit', data)
}