Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wisdom-ces
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
wangqinghua
wisdom-ces
Commits
7fb52c99
Commit
7fb52c99
authored
Sep 21, 2018
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
值班
parent
fda3b195
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
75 additions
and
3 deletions
+75
-3
duty-sign-up.html
src/pages/dutyALl/duty-sign-up/duty-sign-up.html
+13
-0
duty-sign-up.module.ts
src/pages/dutyALl/duty-sign-up/duty-sign-up.module.ts
+13
-0
duty-sign-up.scss
src/pages/dutyALl/duty-sign-up/duty-sign-up.scss
+3
-0
duty-sign-up.ts
src/pages/dutyALl/duty-sign-up/duty-sign-up.ts
+21
-0
duty.html
src/pages/dutyALl/duty/duty.html
+2
-0
duty.ts
src/pages/dutyALl/duty/duty.ts
+6
-0
more-app.html
src/pages/home/more-app/more-app.html
+3
-3
more-app.ts
src/pages/home/more-app/more-app.ts
+14
-0
No files found.
src/pages/dutyALl/duty-sign-up/duty-sign-up.html
0 → 100644
View file @
7fb52c99
<ion-header>
<ion-navbar>
<ion-title>
值班签到
</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
</ion-content>
src/pages/dutyALl/duty-sign-up/duty-sign-up.module.ts
0 → 100644
View file @
7fb52c99
import
{
NgModule
}
from
'@angular/core'
;
import
{
IonicPageModule
}
from
'ionic-angular'
;
import
{
DutySignUpPage
}
from
'./duty-sign-up'
;
@
NgModule
({
declarations
:
[
DutySignUpPage
,
],
imports
:
[
IonicPageModule
.
forChild
(
DutySignUpPage
),
],
})
export
class
DutySignUpPageModule
{}
src/pages/dutyALl/duty-sign-up/duty-sign-up.scss
0 → 100644
View file @
7fb52c99
page-duty-sign-up
{
}
src/pages/dutyALl/duty-sign-up/duty-sign-up.ts
0 → 100644
View file @
7fb52c99
import
{
Component
}
from
'@angular/core'
;
import
{
IonicPage
,
NavController
,
NavParams
}
from
'ionic-angular'
;
import
{
AppService
}
from
"../../../service/appHttpService"
;
@
IonicPage
()
@
Component
({
selector
:
'page-duty-sign-up'
,
templateUrl
:
'duty-sign-up.html'
,
})
export
class
DutySignUpPage
{
constructor
(
public
navCtrl
:
NavController
,
public
navParams
:
NavParams
,
public
appService
:
AppService
)
{
}
ionViewDidLoad
()
{
console
.
log
(
'ionViewDidLoad DutySignUpPage'
);
}
}
src/pages/dutyALl/duty/duty.html
View file @
7fb52c99
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
<ion-navbar>
<ion-navbar>
<ion-title>
值班情况
</ion-title>
<ion-title>
值班情况
</ion-title>
<span
(
click
)="
sigUp
()"
float-right
class=
"margin-right-10 color-999"
>
值班签到
</span>
</ion-navbar>
</ion-navbar>
<div
class=
"duty"
>
<div
class=
"duty"
>
<div
class=
"dutyItem"
(
click
)="
change
(
1
)"
>
<div
class=
"dutyItem"
(
click
)="
change
(
1
)"
>
...
...
src/pages/dutyALl/duty/duty.ts
View file @
7fb52c99
...
@@ -4,6 +4,7 @@ import {CalendarComponentOptions} from "ion2-calendar";
...
@@ -4,6 +4,7 @@ import {CalendarComponentOptions} from "ion2-calendar";
import
{
AppService
}
from
"../../../service/appHttpService"
;
import
{
AppService
}
from
"../../../service/appHttpService"
;
import
{
DutyApplyPage
}
from
"../duty-apply/duty-apply"
;
import
{
DutyApplyPage
}
from
"../duty-apply/duty-apply"
;
import
{
DutyDetailPage
}
from
"../duty-detail/duty-detail"
;
import
{
DutyDetailPage
}
from
"../duty-detail/duty-detail"
;
import
{
DutySignUpPage
}
from
"../duty-sign-up/duty-sign-up"
;
declare
var
Swiper
;
declare
var
Swiper
;
@
IonicPage
()
@
IonicPage
()
...
@@ -119,4 +120,9 @@ export class DutyPage {
...
@@ -119,4 +120,9 @@ export class DutyPage {
})
})
}
}
//值班签到
sigUp
(){
this
.
navCtrl
.
push
(
'DutySignUpPage'
);
}
}
}
src/pages/home/more-app/more-app.html
View file @
7fb52c99
...
@@ -21,15 +21,15 @@
...
@@ -21,15 +21,15 @@
<label
class=
"label2-2"
>
离沪报备
</label>
<label
class=
"label2-2"
>
离沪报备
</label>
<img
class=
"new-logo"
*
ngIf=
"hasNewPremanager==1"
src=
"./assets/imgs/new.png"
>
<img
class=
"new-logo"
*
ngIf=
"hasNewPremanager==1"
src=
"./assets/imgs/new.png"
>
</div>
</div>
<div
class=
"card"
(
click
)="
wait
()"
>
<div
class=
"card"
(
click
)="
goDuty
()"
>
<img
src=
"./assets/imgs/home/icon-zb.png"
alt=
""
>
<img
src=
"./assets/imgs/home/icon-zb.png"
alt=
""
>
<label
class=
"label2-2"
>
值班情况
</label>
<label
class=
"label2-2"
>
值班情况
</label>
</div>
</div>
<div
class=
"card"
(
click
)="
wait
()"
>
<div
class=
"card"
(
click
)="
goActivityTrack
()"
>
<img
src=
"./assets/imgs/home/icon-hdgz.png"
alt=
""
>
<img
src=
"./assets/imgs/home/icon-hdgz.png"
alt=
""
>
<label
class=
"label2-2"
>
活动跟踪
</label>
<label
class=
"label2-2"
>
活动跟踪
</label>
</div>
</div>
<div
class=
"card"
(
click
)="
wait
()"
>
<div
class=
"card"
(
click
)="
goReportTrack
()"
>
<img
src=
"./assets/imgs/home/icon-bbgz.png"
alt=
""
>
<img
src=
"./assets/imgs/home/icon-bbgz.png"
alt=
""
>
<label
class=
"label2-2"
>
报备跟踪
</label>
<label
class=
"label2-2"
>
报备跟踪
</label>
</div>
</div>
...
...
src/pages/home/more-app/more-app.ts
View file @
7fb52c99
...
@@ -42,6 +42,20 @@ export class MoreAppPage {
...
@@ -42,6 +42,20 @@ export class MoreAppPage {
});
});
}
}
//报备跟踪
goReportTrack
(){
this
.
navCtrl
.
push
(
"ReportTrackPage"
);
}
//值班情况
goDuty
(){
this
.
navCtrl
.
push
(
"DutyPage"
);
}
goActivityTrack
(){
this
.
navCtrl
.
push
(
"ActivityTrackPage"
);
}
replayManage
(){
replayManage
(){
this
.
navCtrl
.
push
(
'ChangeApplyListPage'
);
this
.
navCtrl
.
push
(
'ChangeApplyListPage'
);
}
}
...
...
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