1234567891011121314151617 |
- angular.module("push").directive("inputForm",function(){
- return {
- templateUrl:"modules/component/template/inputForm.html",
- controller:"inputFormCtrl",
- restrict: 'AECM',
- scope:{
- fatherdata:'=',
- tempdata:'=',
- isedit:'<',
- app:'<',
- showmessage:'&',
- carryout:'=',
- }
- }
- })
- /** Created by pushkeji on 2018/8/2.
- */
|