demo20230512/Browser_Local/js/LCA/RiskAssmtController.js

20 lines
652 B
JavaScript
Raw Permalink Normal View History

2023-05-12 10:20:28 +08:00
/*
2nd level route entry point
this controller is responsible for Routing Organization LCA , Product LCA with or without PCR selected
and the stutus of a LCA
---------------------------------
*/
angular.module('CarbonFootprint')
.config(function ($locationProvider, $routeProvider, CONSTANTS) {
$routeProvider.when('/LCA/RiskAssmt/:LCAID', {
templateUrl: CONSTANTS.PB + 'LCA-RiskAssmt',
controller: 'RiskAssmtController'
})
})
.controller('RiskAssmtController',
['$scope', '$location',
function ($scope, $location) {
console.log("LayoutController")
}]);