[发布商品认证及商品认证展示,详情页面水晶展示位置]

This commit is contained in:
2021-11-26 11:33:51 +08:00
parent c85f1bccc0
commit 47667b9177
7 changed files with 344 additions and 272 deletions

View File

@@ -184,9 +184,12 @@ const managesAttestation = (id) => {
}
// 商品溯源
const managesTracedTo = (id) => {
const managesTracedTo = (id,page) => {
return request({
url: 'mall/goods/' + id + '/trace'
url: 'mall/goods/' + id + '/trace',
data:{
page: page
}
})
}
// 商品第一条溯源
@@ -203,6 +206,12 @@ const shopself = () => {
})
}
// 商品服务类型调整
const goodsExtendsCreate = (id) => {
return request({
url: 'manages/goods/' + id + '/extends/create'
})
}
export {
managesGoodsIndex,
@@ -230,5 +239,6 @@ export {
managesAttestation,
managesTracedTo,
checkmessage,
shopself
shopself,
goodsExtendsCreate
}