12345678910111213141516171819202122232425262728293031 |
- app.controller('StdMaterialInfoCtrl', [ '$rootScope', '$scope','$stateParams', function($rootScope, $scope,$stateParams) {
- if ($stateParams == undefined || $stateParams.material_id == undefined) {
- $.alert('参数错误,无法获取图片详细信息', function() {
- $rootScope.goWechat();
- });
- return;
- }
-
- $scope.getMaterial = function(){
- $rootScope.ajaxRequest({
- url : '../enrol/std/material/find.htm',
- data: {
- material_id:$stateParams.material_id
- }
- }, function(response) {
- $scope.material = response.entity;
- });
- }
-
-
- $scope.uploadMaterial = function(){
- $rootScope.uploadStdMaterial($scope.material.material_type,function(){
- $scope.getMaterial();
- });
- }
-
-
- $scope.getMaterial();
-
- } ])
|