...
|
...
|
@@ -83,6 +83,27 @@ 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();
|
...
|
...
|
@@ -102,6 +123,27 @@ 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_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();
|
|
|
// });
|
|
|
},
|
|
|
edit: function () {
|
|
|
Controller.api.bindevent();
|
...
|
...
|
@@ -121,10 +163,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
$('.group').hide();
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
api: {
|
|
|
bindevent: function () {
|
|
|
Form.api.bindevent($("form[role=form]"));
|
|
|
|
|
|
$('#c-is_vip_price').change(function () {
|
|
|
var val = $('#c-is_vip_price').val();
|
|
|
if(val == 1){
|
...
|
...
|
@@ -134,31 +173,10 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
}
|
|
|
});
|
|
|
|
|
|
$("#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").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_one_id").on('change',function(){
|
|
|
//
|
|
|
// });
|
|
|
$("#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();
|
|
|
console.log(123);
|
|
|
});
|
|
|
},
|
|
|
api: {
|
|
|
bindevent: function () {
|
|
|
Form.api.bindevent($("form[role=form]"));
|
|
|
}
|
|
|
}
|
|
|
};
|
...
|
...
|
|