This commit is contained in:
parent
1b14577ffb
commit
4316a0bf36
@ -47,13 +47,13 @@ export const FetchProviderArticlePrice = (providerArticle)=>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const FetchProviderArticleAts = (providerArticle)=>{
|
export const FetchProviderArticleAts = (providerArticle)=>{
|
||||||
return provider.post(`/${providerArticle.providerId}/ats/fetch/${providerArticle.skuID}`)
|
return provider.post(`/${providerArticle.providerId}/ats/fetch/${encodeURIComponent(providerArticle.skuID)}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GetProviderArticleAts = (providerId, pid)=>{
|
export const GetProviderArticleAts = (providerId, pid)=>{
|
||||||
return provider.get(`/${providerId}/ats/${pid}`)
|
return provider.get(`/${providerId}/ats/${encodeURIComponent(pid)}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const FetchProviderArticleDetail = (providerId, pid)=>{
|
export const FetchProviderArticleDetail = (providerId, pid)=>{
|
||||||
return provider.post(`/${providerId}/detail/fetch/${pid}`)
|
return provider.post(`/${providerId}/detail/fetch/${encodeURIComponent(pid)}`)
|
||||||
}
|
}
|
@ -60,7 +60,7 @@ const handleOk = ()=>{
|
|||||||
message.error(res.msg)
|
message.error(res.msg)
|
||||||
}
|
}
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
message.error("添加失败")
|
message.error("查询失败")
|
||||||
console.log(err)
|
console.log(err)
|
||||||
}).finally(()=>{
|
}).finally(()=>{
|
||||||
confirmLoading.value = false
|
confirmLoading.value = false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user