feat:v1.4前端更新

This commit is contained in:
超凡
2025-06-24 14:43:09 +08:00
parent 0268aa5033
commit 35fec82e4a
1026 changed files with 118424 additions and 56490 deletions

View File

@@ -1,15 +1,14 @@
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
// | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import request from '@/utils/request'
import request from '@/utils/request';
/**
* @description 分销设置 -- 详情
@@ -17,8 +16,8 @@ import request from '@/utils/request'
export function configApi() {
return request({
url: '/admin/store/retail/spread/manage/get',
method: 'get'
})
method: 'get',
});
}
/**
@@ -28,8 +27,8 @@ export function configUpdateApi(data) {
return request({
url: '/admin/store/retail/spread/manage/set',
method: 'post',
data
})
data,
});
}
/**
@@ -39,20 +38,20 @@ export function promoterListApi(params) {
return request({
url: '/admin/store/retail/list',
method: 'get',
params
})
params,
});
}
/**
* @description 推广人 -- 列表
*/
export function spreadListApi( params, data) {
export function spreadListApi(params, data) {
return request({
url: '/admin/store/retail/spread/userlist',
method: 'post',
params,
data
})
data,
});
}
/**
@@ -63,8 +62,8 @@ export function spreadOrderListApi(params, data) {
url: '/admin/store/retail/spread/orderlist',
method: 'post',
params,
data
})
data,
});
}
/**
@@ -73,8 +72,8 @@ export function spreadOrderListApi(params, data) {
export function spreadClearApi(id) {
return request({
url: `/admin/store/retail/spread/clean/${id}`,
method: 'get'
})
method: 'get',
});
}
/**
@@ -84,6 +83,6 @@ export function spreadStatisticsApi(params) {
return request({
url: `/admin/store/retail/statistics`,
method: 'get',
params
})
params,
});
}