Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
96a3fe1f
Commit
96a3fe1f
authored
Mar 05, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
57e22ee8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
98 additions
and
18 deletions
+98
-18
index.html
src/main/resources/static/index.html
+90
-16
app.js
src/main/resources/static/js/app.js
+1
-0
historyBack.html
...main/resources/static/views/historyCards/historyBack.html
+1
-0
login.js
src/main/resources/static/views/login/login.js
+6
-2
No files found.
src/main/resources/static/index.html
View file @
96a3fe1f
...
...
@@ -106,25 +106,99 @@
</li>
</ul>
<div
class=
"pull-right"
style=
"font-size:1.8em;line-height: 50px;color: #fff;font-family:'黑体';padding:0 20px;"
>
北京制证辅助平台
</div>
<!--导航右边-->
<div
class=
"navbar-custom-menu"
>
<ul
class=
"nav navbar-nav"
>
<li
class=
"dropdown user user-menu"
>
</li>
<li
class=
"dropdown user user-menu"
>
<div
class=
"dropdown-toggle"
style=
"text-align: right;
font-size:1.8em;
line-height: 50px;
color: #fff;
font-family:'黑体';
padding-right: 20px;"
>
北京制证辅助平台
</div>
</li>
<!-- Messages: style can be found in dropdown.less-->
<li
class=
"dropdown messages-menu"
>
<a
href=
"#"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
>
<i
class=
"fa fa-envelope-o"
></i>
<span
class=
"label label-success"
>
4
</span>
</a>
<ul
class=
"dropdown-menu"
>
<li
class=
"header"
>
You have 4 messages
</li>
<li>
<!-- inner menu: contains the actual data -->
<ul
class=
"menu"
>
<li>
<!-- start message -->
<a
href=
"#"
>
<p>
Why not buy a new awesome theme?
</p>
</a>
</li>
<li>
<!-- start message -->
<a
href=
"#"
>
<p>
Why not buy a new awesome theme?
</p>
</a>
</li>
<li>
<!-- start message -->
<a
href=
"#"
>
<p>
Why not buy a new awesome theme?
</p>
</a>
</li>
<li>
<!-- start message -->
<a
href=
"#"
>
<p>
Why not buy a new awesome theme?
</p>
</a>
</li>
</ul>
</li>
<li
class=
"footer"
><a
href=
"#"
>
See All Messages
</a></li>
</ul>
</li>
<!-- Notifications: style can be found in dropdown.less -->
<li
class=
"dropdown notifications-menu"
>
<a
href=
"#"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
>
<i
class=
"fa fa-bell-o"
></i>
<span
class=
"label label-warning"
>
10
</span>
</a>
<ul
class=
"dropdown-menu"
>
<li
class=
"header"
>
You have 10 notifications
</li>
<li>
<!-- inner menu: contains the actual data -->
<ul
class=
"menu"
>
<li>
<a
href=
"#"
>
<i
class=
"fa fa-users text-aqua"
></i>
5 new members joined today
</a>
</li>
<li>
<a
href=
"#"
>
<i
class=
"fa fa-warning text-yellow"
></i>
Very long description here that may not fit into the
page and may cause design problems
</a>
</li>
<li>
<a
href=
"#"
>
<i
class=
"fa fa-users text-red"
></i>
5 new members joined
</a>
</li>
<li>
<a
href=
"#"
>
<i
class=
"fa fa-shopping-cart text-green"
></i>
25 sales made
</a>
</li>
<li>
<a
href=
"#"
>
<i
class=
"fa fa-user text-red"
></i>
You changed your username
</a>
</li>
</ul>
</li>
<li
class=
"footer"
><a
href=
"#"
>
View all
</a></li>
</ul>
</li>
<li
class=
"dropdown user"
>
<a
href=
"#"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
>
<span
class=
"hidden-xs"
>
{{loginData.name}}
</span>
</a>
<ul
class=
"dropdown-menu"
>
<li
style=
"padding: 5px;"
>
<a
ng-click=
"logout()"
class=
"btn btn-default btn-flat"
>
退出当前用户
</a>
</li>
</ul>
</li>
</ul>
</div>
...
...
@@ -140,7 +214,7 @@
导航
</li>
<li
ng-repeat=
"menu in menuList
"
ng-class=
"{true: 'active', false: ''}[tab =='{{menu.url}}']"
ng-click=
"getFocus('{{menu.url}}'
)"
>
<li
ng-repeat=
"menu in menuList
| orderBy:'id'"
ng-class=
"{true: 'active', false: ''}[tab =='{{menu.url}}']"
ng-click=
"getFocus(menu.url
)"
>
<a
href=
"#!{{menu.url}}"
>
<i
class=
"fa fa-file-code-o"
></i>
<span
ng-bind=
"menu.name"
></span>
...
...
src/main/resources/static/js/app.js
View file @
96a3fe1f
...
...
@@ -38,6 +38,7 @@ angular.module('AvatarCheck', [
$rootScope
.
loginData
=
localStorageService
.
get
(
'loginData'
)
$scope
.
id
=
'id'
;
if
(
$rootScope
.
loginData
==
null
){
$rootScope
.
loginData
=
{
userid
:
'用户未登录'
,
login
:
false
};
...
...
src/main/resources/static/views/historyCards/historyBack.html
View file @
96a3fe1f
...
...
@@ -6,6 +6,7 @@
</style>
<div
class=
"col-md-12"
style=
"margin-top:20px;"
>
<div
class=
"box box-primary"
>
<strong
class=
"box-header with-border"
>
回迁证添加
</strong>
<form
style=
"padding-left: 15px;"
>
<span
style=
"font-size:20px;"
>
回迁证数量:
</span>
<input
style=
"margin-top:20px;height: 30px;"
type=
"text"
ng-model=
"historyCount"
>
...
...
src/main/resources/static/views/login/login.js
View file @
96a3fe1f
...
...
@@ -55,8 +55,12 @@ angular.module('AvatarCheck.login', ['ngRoute', 'AvatarCheck.http'])
$rootScope
.
tab
=
'/receitp'
;
break
;
case
7
:
$location
.
path
(
"/excelAndSearch"
);
$rootScope
.
tab
=
'/excelAndSearch'
;
$location
.
path
(
"/uploadExcelAndSearch"
);
$rootScope
.
tab
=
'/uploadExcelAndSearch'
;
break
;
case
8
:
$location
.
path
(
"/createTaskList"
);
$rootScope
.
tab
=
'/createTaskList'
;
break
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment