更新通证权益相关页面

This commit is contained in:
zhangmanman
2021-09-23 17:38:46 +08:00
parent 0d77682f00
commit db42cc974c
21 changed files with 17666 additions and 57851 deletions

View File

@@ -170,6 +170,36 @@ const managesGoodsExtends = id => {
return request({
url: 'manages/goods/' + id + '/extends',
})
}
// 通证权益 搜索页面
const searchUrl = (apiUrl,data) => {
return request({
url : apiUrl,
data: data
})
}
// 商品分类
const goodsCategory = () => {
return request({
url : 'mall/categories'
})
}
// 企业行业分类
const companyCategory = () => {
return request({
url : 'companies/industry'
})
}
// 商品分类搜索-默认关键字
const randgoodsUrl = (apiUrl, data) => {
return request({
url: apiUrl,
data: data
})
}
export {
@@ -193,5 +223,9 @@ export {
managesTracedTo,
managesCoupons,
managesGoodsPut,
managesGoodsExtends
managesGoodsExtends,
searchUrl,
goodsCategory,
companyCategory,
randgoodsUrl
}