Authored by weiqingting

年前最后一弹

... ... @@ -162,10 +162,11 @@ exports.init = function() {
}
$(document).on("click",".delbtn",function(){
var _id=$(this).data("sortid");
var _sortid=$(this).data("sortid"),
_sizeid=$(this).data("sizeid");
__ajax({
url:'/erpproduct/sortsize/ajax/delete',
data:{sortId:_id}
data:{sortId:_sortid,sizeId:_sizeid}
},function(){
g.reload();
$("#addAttr").modal('hide');
... ...
... ... @@ -23,7 +23,7 @@ exports.res = [{
{name:"sortId",type:"number"}
]
},
{//添加尺码接口
{//添加尺码接口【验证通过】
route: '/erpproduct/sortsize/ajax/add',
method: 'POST',
url: '/product/addSortSize',
... ... @@ -34,7 +34,7 @@ exports.res = [{
{name:"orderBy",type:"number"}
]
},
{//自动提示
{//尺码模糊查询【待验证】
route:'/erpproduct/sortsize/ajax/automatic',
method:'POST',
url: '/product/querySizeByNameForSelect',
... ... @@ -43,7 +43,7 @@ exports.res = [{
{name:"idName",type:"String"}
]
},
{//删除单个品类尺码接口
{//删除单个品类尺码接口【待验证】
route: '/erpproduct/sortsize/ajax/delete',
method: 'POST',
url: '/product/deleteSortSize',
... ... @@ -67,7 +67,7 @@ exports.res = [{
},
src:'/sortsize/attri'
},{
//获取品类关联尺码属性列表
//获取品类关联尺码属性列表【验证通过】
route: '/erpproduct/sortattribute/ajax/index',
method: 'POST',
url: '/product/querySizeAttributeList',
... ... @@ -76,13 +76,13 @@ exports.res = [{
{name:"page",type:"number"},
{name:"size",type:"number"}
]
},{//删除品类关联尺码属性接口
},{//删除品类关联尺码属性接口【待验证,接口没有】
route: '/erpproduct/sortattribute/ajax/delete',
method: 'POST',
url: '/sortAttribute/delete',
isJsonRaw:true
},
{//添加品类关联尺码属性接口
{//添加品类关联尺码属性接口【待验证】
route: '/erpproduct/sortattribute/ajax/add',
method: 'POST',
url: '/product/addSizeAttribute',
... ... @@ -90,7 +90,7 @@ exports.res = [{
params:[
{name:"attributeName",type:"number"}
]
},{//添加品类关联尺码属性接口
},{//添加品类关联尺码属性接口【待验证】
route: '/erpproduct/sortattribute/ajax/automatic',
method: 'POST',
url: '/product/querySizeAttributesByName',
... ...