//读取二级分类
$scope.$watch('entity.goods.category1Id', function(newValue, oldValue) {
//根据选择的值,查询二级分类itemCatService.findByParentId(newValue).success(
function(response){
$scope.itemCat2List=response;
}
);
});
//读取三级分类
$scope.$watch('entity.goods.category2Id', function(newValue, oldValue) {
//根据选择的值,查询二级分类itemCatService.findByParentId(newValue).success(
function(response){
$scope.itemCat3List=response;
}
);
});
< | select | class="form-controlselect-sm"ng-model="entity.goods.category3Id" |
ng-options="item.idasitem.nameforiteminitemCat3List"></select> |
//三级分类选择后 读取模板 ID
$scope.$watch('entity.goods.category3Id', function(newValue, oldValue) { itemCatService.findOne(newValue).success(
function(response){
$scope.entity.goods.typeTemplateId=response.typeId; //更新模板 ID
}
);
});
模板 ID:{{entity.goods.typeTemplateId}}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |