wangning 7 years ago
parent 97220886c5
commit 78688d7330

@ -44,7 +44,8 @@ define(['angular', 'static/commons/commons', 'uiBootstrap', 'uiRouter', 'ngBootS
$state.go('analysis_monitoring.risk_detail',{param:param});
}
}]);
app.controller('RiskDetailCtrl', ['$scope', '$http', '$stateParams','Upload', 'commonDialog', function ($scope, $http,$stateParams, Upload, commonDialog) {
app.controller('RiskDetailCtrl', ['$scope', '$http', '$stateParams','$uibModal', function ($scope, $http,$stateParams,$uibModal) {
$scope.client_moniker = $stateParams.param.client_moniker;
$scope.params = {};
$scope.loadOrders = function () {

@ -18,7 +18,7 @@
<th>Expiry Time</th>
<th>Risk Types</th>
<th>Risk Counts</th>
<th>Operation</th>r
<th>Operation</th>
</tr>
</thead>
<tbody>

@ -1,6 +1,6 @@
<div ui-view>
<section class="content-header">
<h1>Risk Record</h1>
<h1>Risk Manager</h1>
<ol class="breadcrumb">
<li><i class="fa fa-gift"></i> Risk</li>
<li class="fa fa-gift">Risk Manager</li>
@ -9,7 +9,7 @@
</section>
<section class="content">
<div class="box box-default">
<div class="box-header">Records Reference</div>
<div class="box-header">Records Orders(Partner Code:{{client_moniker}})</div>
<div class="box-body table-responsive">
<table class="table table-hover">
<thead>
@ -27,8 +27,8 @@
<td>{{order.channel}}</td>
<td>{{order.risk_types}}</td>
<td>
<a class="text-primary" role="button" title="Detail" ui-sref=".detail({record_id:record.record_id})">
<i class="fa fa-search" ></i>
<a class="text-primary" role="button" title="Detail" ng-click="edit">
<i class="fas fa-edit"></i>
</a>
</td>
</tr>

Loading…
Cancel
Save