index.vm 3.55 KB
$page.setTitle("志愿护行")


<div class="xn-breadcrumb auto  xn-width clearfix ">
    <ul class="breadcrumb">
        <li><a class="icon icon-home_page"></a> </li>
        <li class="active">用户权限</li>
    </ul>
</div>

<div class="xn-breadcrumb xn-width auto clearfix ware-content " ng-controller="UserRoleController">
    $control.setTemplate("admin:settingnav")

    <div class="main-side">
        <div>
            <div class="nav-pills clearfix rightTitle">
                <li class="pl_10 pr_30 click-cursor nav_li-active"><a>用户权限</a></li>
            </div>
            </br>
            <div>
                <div class="xn-col-md-4">
                    <input type="text" class="form-control" placeholder="搜用户手机" maxlength="20" ng-model="vm.account"/>
                </div>
                <div class="xn-col-md-2">
                    <button class="btn btn-success btn-sm xn-text-right" ng-click="doSearch()">搜索</button>
                </div>
                <div class="xn-col-md-12">
                </div>
                <div class="xn-col-md-6">
                    <div class="xn-search">
                        <div class="mb-10  clearfix">
                            <a class="btns btns-primary f-right mr-10" href="$adminLink.setTarget("userRole/import")">
                                批量导入用户权限</a>
                        </div>
                    </div>
                </div>
            </div>
            </br>
            </br>
        </div>
        <form class="form-horizontal xn-form">
            <div class="xn-table-wrap">
                <table class="table table-bordered">
                    <thead>
                    <tr>
                        <th style="text-align: center" width="30%">用户ID</th>
                        <th style="text-align: center" width="20%">用户手机</th>
                        <th style="text-align: center" width="20%">用户名</th>
                        <th style="text-align: center" width="20%">权限</th>
                        <th style="text-align: center" width="10%">操作</th>
                    </tr>
                    </thead>
                    <tbody id="tbody">
                    <tr ng-repeat="user in userRoleList" style="text-align: center">
                        <td>{{user.id}}</td>
                        <td>{{user.account}}</td>
                        <td>{{user.name}}</td>
                        <td>{{user.roleName}}</td>
                        <td>
                            <a ng-href="$adminLink.setTarget('/userRole/assign.vm')?id={{user.id}}">编辑</a>
                        </td>
                    </tr>
                    <tr ng-if="!vm.totalCount || vm.totalCount==0">
                        <td colspan="10" class="xn-center">无法找到相应的记录</td></tr>
                    </tbody>
                </table>
                <div class="xn-text-center">
                    <div class="f-left mt-20 mb-10 ng-binding">共{{vm.totalCount}}条</div>
                    <pagination  ng-show="vm.totalCount>vm.pageSize"  ng-change="getList()"  max-size="maxPageSize" total-items="vm.totalCount"
                                 ng-model="vm.pageNumber" items-per-page="vm.pageSize"  class="pagination-sm"  boundary-links="true"
                                 previous-text="&lsaquo;" next-text="&rsaquo;" first-text="&laquo;" last-text="&raquo;">
                    </pagination>
                </div>
            </div>
        </form>
    </div>
</div>

<script src="$adminContent.getURI('dist/scripts/page/userRole.js')" ></script>