123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- {template 'common/header'}
-
- </style>
- <ul class="nav nav-tabs">
- <li class="{$active2}"><a href="{php echo $this->createWebUrl('huiyuanList');}">已授权列表</a></li>
- <li class="{$active3}"><a href="{php echo $this->createWebUrl('feiyuanList');}">等待授权</a></li>
- </ul>
-
- {if $active2 == 'active'}
- <div class="clearfix" ng-controller="memberProperty" id="memberProperty">
- {if $isfounder==true}
- <div class="panel panel-default">
- <div class="panel-heading">
- 管理员 你好!{$_W['username']} 用户id:{$_W['uid']} 数量:{$shiyongnum}
-
- </div>
- <div class="panel-body">
- <table class="table table-hover">
- <thead>
- <tr>
- <th>id</th>
- <th>网址</th>
- <th>ucid</th>
- <th>状态</th>
- <th>坐席</th>
-
- </tr>
- </thead>
- <tbody id="list">
-
- {loop $navmsg $indexid $nav}
- <tr>
- <form action="{php echo $this->createWebUrl('edithuiyuan');}" method="post" class="form-horizontal">
- <th>{$nav['id']} </th>
- <input type="hidden" name="id" value="{$nav['id']}" />
- <th> {$nav['website']} </th>
-
-
- <th>{$nav['uid']}</th>
-
- <th> {$nav['hyleixing']}
- <input type="hidden" name="hyleixing" value="多客服" > </th>
- <th>
- <input type="text" name="maxnum" value="{$nav['maxnum']}" > </th>
-
- <th>
- <input name="submit" type="submit" value="修改" onclick="return confirm('确认吗?');return false;" class="btn btn-inverse we7-margin-left ">
- </th>
- </form>
- </tr>
-
-
-
-
- {/loop}
- </tbody>
- </table>
-
- </div>
- </div>
- {else} 无权限 {/if}
- </form>
-
- </div>
- {else}
- {/if}
-
- {if $active3 == 'active'}
- <div class="clearfix" ng-controller="memberProperty" id="memberProperty">
- {if $isfounder==true} 是管理员
- <div class="panel panel-default">
- <div class="panel-heading">
- 你好!{$_W['username']} 用户id:{$_W['uid']} 已经使用:{$shiyongnum} 等待授权数量:{$feiyongnum}
-
- </div>
- <div class="panel-body">
- <table class="table table-hover">
- <thead>
- <tr>
- <th>id</th>
- <th>网址</th>
- <th>ucid</th>
- <th>状态</th>
- <th>坐席</th>
-
- </tr>
- </thead>
- <tbody id="list">
-
- {loop $navmsg $indexid $nav}
- <tr>
- <form action="{php echo $this->createWebUrl('edithuiyuan');}" method="post" class="form-horizontal">
- <th>{$nav['id']} </th>
- <input type="hidden" name="id" value="{$nav['id']}" />
- <th> {$nav['website']} </th>
-
-
- <th>{$nav['uid']}</th>
-
- <th> {$nav['hyleixing']}
- {if $shouquan['maxnum']>$shiyongnum}
- <input type="hidden" name="hyleixing" value="多客服" > </th>
- <th>
- <input type="text" name="maxnum" value="{$nav['maxnum']}" > </th>
-
- <th>
- <input name="submit" type="submit" value="授权" onclick="return confirm('确认吗?');return false;" class="btn btn-primary we7-margin-left ">
- {/if}
- </th>
- </form>
- </tr>
-
-
-
-
- {/loop}
- </tbody>
- </table>
-
- </div>
- </div>
- {else} 无权限 {/if}
- </form>
-
- </div>
- {else}
- {/if}
- {template 'common/footer'}
|