|
|
|
|
@ -32,14 +32,13 @@
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr ng-repeat="(index,item) in apply">
|
|
|
|
|
<tr ng-repeat="(index,item) in apply" ng-click="getNoticeClients(item.title,item.id,1,index)">
|
|
|
|
|
<td ng-style="{'background-color':selectIndex==index?'#f06101 ':''}">{{ item.createTime }}
|
|
|
|
|
</td>
|
|
|
|
|
<td ng-style="{'background-color':selectIndex==index?'#f06101 ':''}">{{ item.title }}</td>
|
|
|
|
|
<td ng-style="{'background-color':selectIndex==index?'#f06101 ':''}">{{ item.clientsNum }}
|
|
|
|
|
<td ng-style="{'background-color':selectIndex==index?'#f06101 ':''}">
|
|
|
|
|
<a href="" type="button">
|
|
|
|
|
<i class="fa fa-bars" aria-hidden="true"
|
|
|
|
|
ng-click="getNoticeClients(item.title,item.id,1,index)"></i>
|
|
|
|
|
{{ item.clientsNum }}
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td ng-style="{'background-color':selectIndex==index?'#f06101 ':''}">{{ item.noRead }}</td>
|
|
|
|
|
@ -56,7 +55,11 @@
|
|
|
|
|
</a>
|
|
|
|
|
<span> | </span>
|
|
|
|
|
<a href="" type="button">
|
|
|
|
|
<i class="fa fa-file-text-o" ng-click="catNotice(item.id)"> 详情</i>
|
|
|
|
|
<i class="fa fa-file-text-o" ng-click="updateNotice(item.id)"> 编辑</i>
|
|
|
|
|
</a>
|
|
|
|
|
<span> | </span>
|
|
|
|
|
<a href="" type="button">
|
|
|
|
|
<i class="fa fa-eye" ng-click="catNotice(item.id)"> 预览</i>
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
@ -93,8 +96,8 @@
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>商户名称</th>
|
|
|
|
|
<th style="text-align: center">用户状态</th>
|
|
|
|
|
<th style="text-align: center">运营操作</th>
|
|
|
|
|
<th style="text-align: center">商户操作状态</th>
|
|
|
|
|
<th style="text-align: center">运营操作状态</th>
|
|
|
|
|
<th style="text-align: center">操作</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
@ -103,20 +106,27 @@
|
|
|
|
|
<td>{{item.partner_code}}</td>
|
|
|
|
|
<td style="text-align: center">
|
|
|
|
|
<span ng-if="item.status == 0" style="color: black">未读</span>
|
|
|
|
|
<span ng-if="item.status == 1" style="color: #c09d03">已读({{ item.read_time }})</span>
|
|
|
|
|
<span ng-if="item.status == 2" style="color: #00a65a">同意({{ item.status_time }})</span>
|
|
|
|
|
<span ng-if="item.status == 3" style="color: red">拒绝({{ item.status_time }})</span>
|
|
|
|
|
<span ng-if="item.status == 1" style="color: #c09d03">已读({{item.user_name}} {{ item.read_time
|
|
|
|
|
}})</span>
|
|
|
|
|
<span ng-if="item.status == 2" style="color: #00a65a">同意({{item.user_name}} {{ item.status_time
|
|
|
|
|
}})</span>
|
|
|
|
|
<span ng-if="item.status == 3" style="color: red">拒绝({{item.user_name}} {{ item.status_time
|
|
|
|
|
}})</span>
|
|
|
|
|
</td>
|
|
|
|
|
<td style="text-align: center">
|
|
|
|
|
<a href="" type="button"><span ng-if="item.handle == 0">未处理 | <i class="fa fa-check"
|
|
|
|
|
aria-hidden="true"
|
|
|
|
|
ng-click="setHandle(item.notice_id,item.id)"></i></span></a>
|
|
|
|
|
<span ng-if="item.handle == 1" style="color: #00a65a">已处理({{ item.modify_time }})</span>
|
|
|
|
|
<a href="" type="button"><span ng-if="item.handle == 0">未处理</span></a>
|
|
|
|
|
<span ng-if="item.handle == 1"
|
|
|
|
|
style="color: #00a65a">已处理({{ item.modifier_name }} {{ item.modify_time }})</span>
|
|
|
|
|
</td>
|
|
|
|
|
<td style="text-align: center">
|
|
|
|
|
<a href="" type="button">
|
|
|
|
|
<i ng-if="item.is_valid == 0" class="fa fa-times" style="color: red"
|
|
|
|
|
<a href="" type="button" ng-if="item.is_valid == 0">
|
|
|
|
|
<i class="fa fa-times" style="color: red"
|
|
|
|
|
ng-click="stopNoticeClient(item.notice_id,item.id)">禁用</i>
|
|
|
|
|
<span ng-if="item.status == 2"> | </span>
|
|
|
|
|
<i class="fa fa-check"
|
|
|
|
|
aria-hidden="true"
|
|
|
|
|
ng-if="item.status == 2"
|
|
|
|
|
ng-click="setHandle(item.notice_id,item.id)">处理</i>
|
|
|
|
|
</a>
|
|
|
|
|
<i ng-if="item.is_valid == 1" readonly class="fa fa-times"
|
|
|
|
|
style="color: #727272">已禁用</i>
|
|
|
|
|
|