作者 耿培杰

修改后台添加商品

... ... @@ -83,27 +83,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
// 为表格绑定事件
Table.api.bindevent(table);
$("#c-category_two_id").data("params", function (obj) {
var id = $("#c-category_one_id").val()?$("#c-category_one_id").val():-1;
return {wherein: {pid: id}};
});
$("#c-category_one_id").on('change',function(){
$("#c-category_two_id").val('');
$("#c-category_two_id_text").val('');
$("#c-category_three_id").val('');
$("#c-category_three_id_text").val('');
$(".category_two .selected_tag").remove();
$(".category_three .selected_tag").remove();
});
$("#c-category_three_id").data("params", function (obj) {
var id = $("#c-category_two_id").val()?$("#c-category_two_id").val():-1;
return {wherein: {pid: id}};
});
$("#c-category_two_id").on('change',function(){
$("#c-category_three_id").val('');
$("#c-category_three_id_text").val('');
$(".category_three .selected_tag").remove();
});
},
add: function () {
Controller.api.bindevent();
... ... @@ -172,11 +152,33 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
$('.vip_price').hide();
}
});
$("#c-category_two_id").data("params", function (obj) {
var id = $("#c-category_one_id").val()?$("#c-category_one_id").val():-1;
return {wherein: {pid: id}};
});
$("#c-category_three_id").data("params", function (obj) {
var id = $("#c-category_two_id").val()?$("#c-category_two_id").val():-1;
return {wherein: {pid: id}};
});
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
$("#c-category_one_id").on('change',function(){
$("#c-category_two_id").val('');
$("#c-category_two_id_text").val('');
$("#c-category_three_id").val('');
$("#c-category_three_id_text").val('');
$(".category_two .selected_tag").remove();
$(".category_three .selected_tag").remove();
console.log(123);
});
$("#c-category_two_id").on('change',function(){
$("#c-category_three_id").val('');
$("#c-category_three_id_text").val('');
$(".category_three .selected_tag").remove();
});
}
}
};
... ...