@@ -6,6 +6,14 @@ angular.module('app.system')
$scope.depotImages = [];
$scope.briefIntroduction = "";
+
+ $scope.loadData = function() {
+ orgService.editOrg($stateParams.orgId).then(function(data) {
+ $scope.briefIntroduction = data.briefIntroduction;
+ });
+ }
+ $scope.loadData();
var uploader = $scope.uploader = new FileUploader({
url : APP_CONFIG.basicUrl + '/fileUpload/uploadFile',