...
|
...
|
@@ -115,6 +115,27 @@ var g = new common.grid({ |
|
|
});
|
|
|
g.init('/product/queryProductPriceList');
|
|
|
|
|
|
//获取变价记录列表并渲染
|
|
|
function getHistoryList(skn) {
|
|
|
$.ajax({
|
|
|
type: 'POST',
|
|
|
dataType: 'json',
|
|
|
url: '/product/queryProductPriceListBySkn',
|
|
|
data: {param: skn},
|
|
|
success: function (rs) {
|
|
|
var data = rs;
|
|
|
$('.historyDetail').html($(common.util.__template2($("#template2").html(), data.data)));
|
|
|
if(data.code != 200){
|
|
|
common.util.__tip(rs.message);
|
|
|
}
|
|
|
},
|
|
|
error: function (rs) {
|
|
|
$('.historyDetail').html($(common.util.__template2($("#template2").html(), {})));
|
|
|
common.util.__tip(rs.message);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
//单个变价修改
|
|
|
$(document).on('click', '.modify-btn', function() {
|
|
|
var skn = $(this).data('skn'),
|
...
|
...
|
@@ -224,22 +245,28 @@ $(document).on('click', '.history-btn', function () { |
|
|
button:[{value:"关闭", css:"btn-primary"}]
|
|
|
};
|
|
|
new common.dialog(option);
|
|
|
$.ajax({
|
|
|
type: 'POST',
|
|
|
dataType: 'json',
|
|
|
url: '/product/queryProductPriceListBySkn',
|
|
|
data: {param: skn},
|
|
|
success: function (rs) {
|
|
|
var data = rs;
|
|
|
$('.historyDetail').html($(common.util.__template2($("#template2").html(), data.data)));
|
|
|
if(data.code != 200){
|
|
|
common.util.__tip(data.message);
|
|
|
}
|
|
|
},
|
|
|
error: function (rs) {
|
|
|
$('.historyDetail').html($(common.util.__template2($("#template2").html(), {})));
|
|
|
common.util.__tip(rs.data.message);
|
|
|
}
|
|
|
getHistoryList(skn);
|
|
|
});
|
|
|
//删除变价记录
|
|
|
$(document).on('click', '.deleteHistory', function () {
|
|
|
var skn = $(this).data('skn');
|
|
|
var planId = $(this).data('planid');
|
|
|
new common.dialog({
|
|
|
title: "删除变价记录确认",
|
|
|
width: "360px",
|
|
|
content: '确认删除该变价记录么?',
|
|
|
zIndex: 52,
|
|
|
button: [
|
|
|
{value: "确认", css:"btn-primary", callback: function () {
|
|
|
common.util.__ajax({
|
|
|
url: '/product/deletePricePlan',
|
|
|
data: {param:planId}
|
|
|
}, function () {
|
|
|
getHistoryList(skn);
|
|
|
});
|
|
|
}},
|
|
|
{value: "取消", css:"btn-default"}
|
|
|
]
|
|
|
});
|
|
|
});
|
|
|
//筛选
|
...
|
...
|
|