1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <div class="modal-header">
- <h3 class="modal-title">关系属性</h3>
- </div>
- <div class="modal-body">
- <!-- <p><label>配置编号:</label><input type="text" id="nodeAssetNo" /></p>
- <p><label>配置名称:</label><input type="text" id="nodeName"/></p>
- <p><label>配置来源:</label>
- <select style="width: 173px;" id="nodeType"> </select>
- </p>
- <p><label>配置状态:</label>
- <select style="width: 173px;" id="nodeStatus"> </select>
- </p>
- <p><label>配置类型:</label>
- <input id="nodeLabel" type="text" hidden="true"/>
- <div style="margin: 13px 0px;height:23px;display:inline-block">
- <input id="citySel" type="text" value="" style="height:12px;width:145px;vertical-align:top;float:left;"readonly/>
- </div>
- <table id="nodeTab" style="margin: -13px 0px;">
-
- </table>
- <h2 class="top_title"><input id="addBtn" type="button" value="添 加 属 性" /></h2> -->
- <div id="linkDetail">
- <p><label>关系名称:</label>
- <ui-select allow-clear ng-model="modelData.linkName" theme="bootstrap" ng-required="true">
- <ui-select-match placeholder="请选择关系名称">
- {{$select.selected['label']}}
- </ui-select-match>
- <ui-select-choices repeat="item in linktypeOptions | filter: $select.search">
- <span ng-bind-html="item.label | highlight: $select.search"></span>
- </ui-select-choices>
- </ui-select>
- </p>
- <!-- <p><label style="width:52px; text-align:right;">耗 费:</label><input type="text" ng-model="modelData.linkCost"/></p>
- -->
- <table id="linkTab">
-
- </table>
- <!-- <h2 class="top_title"><input id="addBtn1" type="button" value="添 加 属 性" /></h2> -->
- </div>
- </div>
- <div class="modal-footer">
- <button class="btn btn-primary" ng-click="ok()" translate="modal.button.OK">OK</button>
- <button class="btn btn-primary btn-o" ng-click="cancel()" translate="modal.button.CANCEL">Cancel</button>
- </div>
|