1 Star 0 Fork 0

libaoying123/angular-shop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
admin.html 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
fm060 提交于 2016-04-22 14:44 . 文件上传
<!DOCTYPE html>
<html ng-app="sportsStoreAdmin">
<head>
<title>Administration</title>
<script src="js/angular.js"></script>
<script src="ngmodules/angular-route.js"></script>
<script src="ngmodules/angular-resource.js"></script>
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/bootstrap-theme.css" rel="stylesheet" />
<script>
angular.module("sportsStoreAdmin", ["ngRoute", "ngResource"])
.config(function ($routeProvider) {
$routeProvider.when("/login", {
templateUrl: "views/adminLogin.html"
});
$routeProvider.when("/main", {
templateUrl: "views/adminMain.html"
});
$routeProvider.otherwise({
redirectTo: "/main"
});
});
</script>
<script src="js/adminControllers.js"></script>
<script src="js/adminProductController.js"></script>
</head>
<body>
<ng-view />
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/1212laoli/angular-shop.git
git@gitee.com:1212laoli/angular-shop.git
1212laoli
angular-shop
angular-shop
master

搜索帮助