$scope.entity={specificationOptionList:[]};
//添加表格行
$scope.addTableRow=function(){
$scope.entity.specificationOptionList.push({}); //集合添加
}
//删除表格行
$scope.deleTableRow=function(index){
$scope.entity.specificationOptionList.splice(index, 1); //集合删除
}
//添加表格行
$scope.addTableRow=function(){
$scope.entity.specificationOptionList.push({}); //集合添加
}
//删除表格行
$scope.deleTableRow=function(index){
$scope.entity.specificationOptionList.splice(index, 1); //集合删除
}