1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <div class="modal-header">
- <div class="modal-title fontcolor-two fontsizes-14">{{title}}<button type="button" class="close pull-right" ng-click="cancel()">×</button></div>
- </div>
- <div class="modal-body margin-top-15 margin-left-15 margin-bottom-15 margin-right-15 addrequster">
- <form role="form" class="row">
- <div class="margin-left-30 margin-right-30 margin-top-20">
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">人员编号:</div>
- <!-- <div class="col-md-7"> -->
- <div class="pull-right openaddinput">
- <input class="form-control" ng-model="requester.account" placeholder="人员编号" />
- </div>
- <!-- <select-input class="pull-right openaddinput" onChangeadd="onChangeadd()" requesdata="requesdata" showkey="account,name"></select-input> -->
- <!-- </div> -->
- </div>
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">*姓名:</div>
- <div class="pull-right openaddinput">
- <input class="form-control" id="name" name="name" ng-model="requester.name" placeholder="姓名" />
- </div>
- </div>
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">性别:</div>
- <div class="pull-right openaddinput">
- <div class="clip-radio radio-primary" style="margin-bottom: 0px;margin-top: 4px; */">
- <input type="radio" id="female" ng-model="requester.gender.name" name="gender" value="男" checked="checked">
- <label for="female">男</label>
- <input type="radio" id="male" ng-model="requester.gender.name" name="gender" value="女" checked="checked">
- <label for="male">女</label>
- </div>
- </div>
- </div>
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">邮箱:</div>
- <div class="pull-right openaddinput">
- <input class="form-control" id="email" name="email" ng-model="requester.email" placeholder="邮箱" />
- </div>
- </div>
- <!-- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">*人员类型:</div>
- <div class="pull-right openaddinput">
- <ui-select ng-model="requester.requesterTypeDTO" theme="bootstrap" ng-change="onChange(requester.requesterTypeDTO, options, this, $event ,model)">
- <ui-select-match placeholder="选择人员类型">
- {{$select.selected.name}}
- </ui-select-match>
- <ui-select-choices repeat="index in networktypes | filter: $select.search">
- <div ng-bind-html="index.name | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div> -->
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14" for="phone">联系电话*:</div>
- <div class="pull-right openaddinput">
- <input class="form-control" id="phone" name="phone" ng-model="requester.phone" placeholder="电话" />
- </div>
- </div>
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">其它电话:</div>
- <div class="pull-right openaddinput">
- <input class="form-control" id="telephone" name="telephone" ng-model="requester.telephone" placeholder="座机" />
- </div>
- </div>
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">区域:</div>
- <div class="pull-right openaddinput">
- <ui-select ng-model="requester.areaDTO" theme="bootstrap" ng-change="onChange(requester.areaDTO)">
- <ui-select-match placeholder="区域">
- {{$select.selected.area}}
- </ui-select-match>
- <ui-select-choices repeat="item in areas | filter: $select.search">
- <div ng-bind-html="item.area | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div>
- <div class="margin-bottom-15 anline">
- <div class="pull-left openaddlable control-label fontcolor-two fontsizes-14">地点:</div>
- <div class="pull-right openaddinput">
- <ui-select ng-model="requester.placeDTO" theme="bootstrap">
- <ui-select-match placeholder="地点">
- {{$select.selected.place}}
- </ui-select-match>
- <ui-select-choices repeat="item in places | filter: $select.search">
- <div ng-bind-html="item.place | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div>
- </div>
- </form>
- </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>
|