Files
goldmountain/WebRoot/html/reportList.html
2015-11-24 22:57:40 +08:00

31 lines
836 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd";>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<html ng-app="ReportListApp">
<head>
<link rel="stylesheet"
href="http://apps.bdimg.com/libs/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="http://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
</head>
<body ng-controller="ReportListController">
<br>
<h4>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;°²È«¼ì²éÐÅÏ¢Áбí</h3>
<hr>
<ul>
<div ng-repeat="report in reportList">
<a
href="http://localhost/report/query?report_id={{report.report_id}}"><ui>{{report.report_name}}</ui></a>
</div>
</ul>
<hr>
<script src="/js/app/ReportListApp.js"></script>
<script src="/js/controller/ReportListController.js"></script>
</body>
</html>