...
|
...
|
@@ -244,12 +244,14 @@ function attributeOp(prefix, url, item) { |
|
|
} else {
|
|
|
// 显示属性列表
|
|
|
if (propVlaueArr) {
|
|
|
var count=0;
|
|
|
propVlaueArr.forEach(function (pv) {
|
|
|
if (!pv.name) {
|
|
|
a.$tip('属性值不能为空');
|
|
|
return false;
|
|
|
count++;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
if(!count){
|
|
|
a.submit(url+"?_datetime_="+Date.now(), function (option) {
|
|
|
option.data.categoryId = item.categoryId;
|
|
|
option.data.attributeId = item.attributeId;
|
...
|
...
|
@@ -283,7 +285,11 @@ function attributeOp(prefix, url, item) { |
|
|
a.$tip(res.message);
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
}else {
|
|
|
a.$tip('属性值不能为空');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
a.$tip('属性值不能为空');
|
|
|
return false;
|
...
|
...
|
|