Authored by lijian

2.5基础网销优化

... ... @@ -313,7 +313,7 @@ var g = new common.grid({
return html.join('');
}
}, {
}, {
display: '搜索/标签',
hidden: true,
render: function (item) {
... ... @@ -387,6 +387,9 @@ var g = new common.grid({
return html.join('');
}
}, {
display: 'SKC个数',
name: 'skcNum'
},{
display: '操作',
render: function (item) {
var HtmArr = [];
... ... @@ -643,7 +646,8 @@ var shelveTable = new common.grid({
render: function (item) {
return 'SKC:' + item.productSkc + '<br>' +
'颜色:' + item.goodsName;
'颜色:' + item.goodsName+ '<br>' +
'厂家颜色:' + item.factoryGoodsName;
}
}, {
display: 'SKC上架操作(状态)',
... ... @@ -808,7 +812,7 @@ $(document).on("click", ".brandSort-btn", function () {
productSkn: item.productSkn,
modelId: i + 1,
projectId: 1,
intValue: num
intValue: $.trim(num)
};
}
common.util.__ajax({
... ... @@ -832,7 +836,7 @@ $(document).on("click", ".shopsSort-btn", function () {
productSkn: item.productSkn,
modelId: 1,
projectId: 5,
intValue: num
intValue: $.trim(num)
});
common.util.__ajax({
... ...