diff --git a/src/api/product/attributeGroup.js b/src/api/product/attributeGroup.js
index 22544a2..ac22d49 100644
--- a/src/api/product/attributeGroup.js
+++ b/src/api/product/attributeGroup.js
@@ -35,6 +35,13 @@ export function updateAttributeGroup(data) {
})
}
+export function updAttributeGroup(data) {
+ return request({
+ url: '/product/attributeGroup/upd',
+ method: 'post',
+ data: data
+ })
+}
// 删除属性组
export function delAttributeGroup(id) {
return request({
diff --git a/src/views/product/attributeGroup/index.vue b/src/views/product/attributeGroup/index.vue
index 4a3b7df..0785b5c 100644
--- a/src/views/product/attributeGroup/index.vue
+++ b/src/views/product/attributeGroup/index.vue
@@ -141,7 +141,7 @@