ui improve for settle_tasks

master
yixian 5 years ago
parent acf013e712
commit b33e8d5f12

@ -15,7 +15,8 @@
</div>
<div class="box-body" ng-if="progress.processing">
<h4>{{progress.progress_id}} - {{progress.plan_remark}}|{{progress.current_step}}</h4>
<uib-progressbar value="progress.progress" animate="true" max-value="100"></uib-progressbar>
<uib-progressbar value="progress.progress" animate="true" max-value="100">{{progress.progress}}%
</uib-progressbar>
</div>
</div>
<div class="box box-info">
@ -70,14 +71,18 @@
ng-if="task.whitelist_clients.length">
<thead>
<tr>
<th>#</th>
<th>Client Moniker</th>
<th>Company Name</th>
<th>BD Name</th>
<th>Clean Days</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="cli in task.whitelist_clients">
<td ng-bind="$index+1"></td>
<td ng-bind="cli.client_moniker"></td>
<td ng-bind="cli.company_name"></td>
<td ng-bind="cli.bd_user_name"></td>
<td ng-bind="cli.clean_days"></td>
</tr>
@ -105,7 +110,9 @@
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>#</th>
<th>Client Moniker</th>
<th>Company Name</th>
<th>BD Name</th>
<th>Clean Days</th>
<th>Operation</th>
@ -113,7 +120,9 @@
</thead>
<tbody>
<tr ng-repeat="cli in editingTask.whitelist_clients">
<td ng-bind="$index+1"></td>
<td ng-bind="cli.client_moniker"></td>
<td ng-bind="cli.company_name"></td>
<td ng-bind="cli.bd_user_name"></td>
<td ng-bind="cli.clean_days"></td>
<td>

@ -27,12 +27,16 @@
</div>
<div class="box box-info">
<div class="box-header">
<input class="form-control" placeholder="Filter" ng-model="filters.client_moniker">
<div class="input-group">
<div class="input-group-addon">Clients: {{clients.length}}</div>
<input class="form-control" placeholder="Filter" ng-model="filters.client_moniker">
</div>
</div>
<div class="box-body table-responsive">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>#</th>
<th>Client Moniker</th>
<th>Merchant Name</th>
<th>BD Name</th>
@ -42,6 +46,7 @@
</thead>
<tbody>
<tr ng-repeat="client in clients|propsFilter:filters">
<td ng-bind="$index+1"></td>
<td ng-bind="client.client_moniker"></td>
<td ng-bind="client.company_name"></td>
<td ng-bind="client.bd_user_name"></td>

Loading…
Cancel
Save