// 新增动态字段校验
var current_tr = $("#dynamicInputList tr:last");
$('#form').bootstrapValidator('addField', current_tr.find("[name='activityGroupPriceLadder[][ladderQuantity]']"))
$('#form').bootstrapValidator('addField', current_tr.find("[name='activityGroupPriceLadder[][ladderDiscount]']"));
// 删除动态字段校验
$('#form').bootstrapValidator('removeField', current_tr.find("[name='activityGroupPriceLadder[][ladderQuantity]']"))
$('#form').bootstrapValidator('removeField', current_tr.find("[name='activityGroupPriceLadder[][ladderDiscount]']"));