2025-06-27 10:04:22 +08:00

10 lines
321 B
JavaScript

app.controller('BIHomeCtrl', ['$scope', '$sce','$state', function ($scope, $sce,$state) {
$scope.mytitle="BI首页"
//BiFrame
//window.frames['BiFrame'].location.href = BIHome;
$scope.homeurl = $sce.trustAsResourceUrl(BIHome);
$scope.toHome = function () {
$state.go("app.main");
}
}])