(function() { 'use strict'; /* * author:广州银云信息科技有限公司 * 上传文件指令js */ angular.module('eolinker.directive') .directive('uploadFileDirective', [function() { return { restrict: 'AE', template:'', scope: { fileType:'@', inputId:'@', uploadFileDirective: '&' //绑定设置回调函数 } }; }]); })();