component.js 368 B

1234567891011121314151617
  1. angular.module("push").directive("inputForm",function(){
  2. return {
  3. templateUrl:"modules/component/template/inputForm.html",
  4. controller:"inputFormCtrl",
  5. restrict: 'AECM',
  6. scope:{
  7. fatherdata:'=',
  8. tempdata:'=',
  9. isedit:'<',
  10. app:'<',
  11. showmessage:'&',
  12. carryout:'=',
  13. }
  14. }
  15. })
  16. /** Created by pushkeji on 2018/8/2.
  17. */