1234567891011121314151617181920212223242526 |
- <table class="table no-bg">
- <tr>
- <td rowspan="2">工号: {{usersdata.account}}<input type="hidden" name="id" value="{{usersdata.account}}"></td>
- <td>姓名:</td>
- <td><input class="form-control" type="text" class="w100" ng-model="usersdata.name"></td>
- <td>工号: </td>
- <td><input class="form-control" type="text" class="w180" ng-model="usersdata.account"></td>
- <td>电话:</td>
- <td><input class="form-control" type="text" class="w180" ng-model="usersdata.phone"></td>
- </tr>
- <tr>
- <td>Email:</td>
- <td>
- <input class="form-control" type="text" class="w100" ng-model="usersdata.email">
- </td>
- <!-- <td>Phone: </td> -->
- <!-- <td>
- <input class="form-control" type="text" name="ph" class="w120" ng-model="p.ph">
- </td> -->
- <td colspan="2">
- <div class="pull-right">
- <input type="button" class="btn btn-primary btn-sm margin-right-15" value="确定" ng-click="savelist(usersdata,-1)">
- <input type="button" class="btn btn-primary btn-sm" value="取消" ng-click="setEditId(-1)">
- </div></td>
- </tr>
- </table>
|