|
|
@@ -472,6 +472,7 @@
|
|
|
<ul class="fl">
|
|
|
<li ng-class="{'active': tab=='base'}"><a ng-click="checkTab('base')">基本信息</a></li>
|
|
|
<li ng-class="{'active': tab=='safe'}"><a ng-click="checkTab('safe')">安全设置</a></li>
|
|
|
+ <li ng-class="{'active': tab=='bind'}"><a ng-click="checkTab('bind')" ng-if="isAdmin">申请绑定</a></li>
|
|
|
<!--<li ng-class="{'active': tab=='logistic'}"><a href="#" ng-click="checkTab('logistic')">收货地址</a></li>-->
|
|
|
</ul>
|
|
|
</div>
|
|
|
@@ -795,6 +796,45 @@
|
|
|
</li>-->
|
|
|
</ul>
|
|
|
</div>
|
|
|
+ <!--申请绑定-->
|
|
|
+ <div class="clearfix bind-en" ng-if="tab=='bind'">
|
|
|
+ <div class="rt_menu">
|
|
|
+ <span class="pull-right"><input type="text" ng-model="searchParams.keyword" class="form-control" placeholder="用户名/UU账号/手机号"/><button class="btn" ng-click="searchApply()">搜索</button> </span></span>
|
|
|
+ </div>
|
|
|
+ <table class="bind-enter-tab" ng-table="applyToEnterpriseTableParams">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>用户名</th>
|
|
|
+ <th>UU账号</th>
|
|
|
+ <th>手机号</th>
|
|
|
+ <th>邮箱</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <tr class="default-row" ng-repeat="item in content">
|
|
|
+ <td class="user-name" ng-bind="item.user.vipName || '-'"></td>
|
|
|
+ <td ng-bind="item.user.userUU || '-'"></td>
|
|
|
+ <td ng-bind="item.user.mobile || '-'"></td>
|
|
|
+ <td ng-bind="item.user.email || '-'"></td>
|
|
|
+ <td>
|
|
|
+ <a class="operate-btn" ng-click="auditApply(1, item.id, item.user.userUU)">同意</a>
|
|
|
+ <a class="operate-btn" ng-click="auditApply(0, item.id, item.user.userUU)">| 拒绝</a>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr class="num" ng-if="content && content.length > 0">
|
|
|
+ <td colspan="5">
|
|
|
+ <span class="last-login pull-right">显示<span ng-bind="page.size * (page.number - 1) + 1"></span>-<span ng-bind="page.size * (page.number - 1) + page.numberOfElements"></span>条,共<span ng-bind="page.totalElements"></span>条</span>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr ng-if="!content || !content.length">
|
|
|
+ <td colspan="5" class="grey white">
|
|
|
+ <img src="static/img/all/empty-cart.png">暂无申请信息
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
<!--权限管理-->
|
|
|
<div class="count01 clearfix" ng-if="tab=='auth'">
|
|
|
<div class="power_title">员工账号及权限管理</div>
|