asideContent.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div class="modal-header">
  2. <h3 class="modal-title">关系属性</h3>
  3. </div>
  4. <div class="modal-body">
  5. <!-- <p><label>配置编号:</label><input type="text" id="nodeAssetNo" /></p>
  6. <p><label>配置名称:</label><input type="text" id="nodeName"/></p>
  7. <p><label>配置来源:</label>
  8. <select style="width: 173px;" id="nodeType"> </select>
  9. </p>
  10. <p><label>配置状态:</label>
  11. <select style="width: 173px;" id="nodeStatus"> </select>
  12. </p>
  13. <p><label>配置类型:</label>
  14. <input id="nodeLabel" type="text" hidden="true"/>
  15. <div style="margin: 13px 0px;height:23px;display:inline-block">
  16. <input id="citySel" type="text" value="" style="height:12px;width:145px;vertical-align:top;float:left;"readonly/>
  17. </div>
  18. <table id="nodeTab" style="margin: -13px 0px;">
  19. </table>
  20. <h2 class="top_title"><input id="addBtn" type="button" value="添 加 属 性" /></h2> -->
  21. <div id="linkDetail">
  22. <p><label>关系名称:</label>
  23. <ui-select allow-clear ng-model="modelData.linkName" theme="bootstrap" ng-required="true">
  24. <ui-select-match placeholder="请选择关系名称">
  25. {{$select.selected['label']}}
  26. </ui-select-match>
  27. <ui-select-choices repeat="item in linktypeOptions | filter: $select.search">
  28. <span ng-bind-html="item.label | highlight: $select.search"></span>
  29. </ui-select-choices>
  30. </ui-select>
  31. </p>
  32. <!-- <p><label style="width:52px; text-align:right;">耗 费:</label><input type="text" ng-model="modelData.linkCost"/></p>
  33. -->
  34. <table id="linkTab">
  35. </table>
  36. <!-- <h2 class="top_title"><input id="addBtn1" type="button" value="添 加 属 性" /></h2> -->
  37. </div>
  38. </div>
  39. <div class="modal-footer">
  40. <button class="btn btn-primary" ng-click="ok()" translate="modal.button.OK">OK</button>
  41. <button class="btn btn-primary btn-o" ng-click="cancel()" translate="modal.button.CANCEL">Cancel</button>
  42. </div>