前端:商品编辑,部分逻辑,解决 sku 编辑的 bug 。

This commit is contained in:
YunaiV
2019-05-02 23:48:20 +08:00
parent 942d2c0634
commit 582837fee0
7 changed files with 113 additions and 45 deletions

View File

@@ -71,3 +71,10 @@ export async function productAttrTree(params) {
method: 'GET',
});
}
export async function productAttrValueAdd(params) {
return request(`/product-api/admins//attr_value/add?${stringify(params)}`, {
method: 'POST',
body: {},
});
}