Digital Office Automation System
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

text-popup.html 713B

1234567891011121314151617
  1. <div class="modal" ng-controller="KisBpmTextPropertyPopupCtrl">
  2. <div class="modal-dialog">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <button type="button" class="close" data-dismiss="modal" aria-hidden="true" ng-click="close()">&times;</button>
  6. <h3>{{'PROPERTY.PROPERTY.EDIT.TITLE' | translate:property}}</h3>
  7. </div>
  8. <div class="modal-body">
  9. <p><textarea auto-focus class="form-control" ng-model="property.value" style="width:70%; height:100%; max-width: 100%; max-height: 100%; min-height: 200px"/></p>
  10. </div>
  11. <div class="modal-footer">
  12. <button ng-click="save()" class="btn btn-primary" translate >ACTION.SAVE</button>
  13. </div>
  14. </div>
  15. </div>
  16. </div>