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}); $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.params = {};
$scope.loadOrders = function () { $scope.loadOrders = function () {

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

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

Loading…
Cancel
Save