Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
L
luna
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
ops
luna
Commits
a9f04c23
Commit
a9f04c23
authored
Sep 27, 2017
by
i317280
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
228935d4
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
35 deletions
+8
-35
footer.component.ts
src/app/BasicPage/footer.component.ts
+1
-5
login.component.ts
src/app/BasicPage/login.component.ts
+1
-1
login.css
src/app/BasicPage/login.css
+0
-0
login.html
src/app/BasicPage/login.html
+0
-0
nav.component.ts
src/app/BasicPage/nav.component.ts
+1
-9
welcome.component.ts
src/app/IndexPage/welcome.component.ts
+2
-6
app-routing.module.ts
src/app/app-routing.module.ts
+2
-4
app.module.ts
src/app/app.module.ts
+1
-10
No files found.
src/app/BasicPage/footer.component.ts
View file @
a9f04c23
...
...
@@ -5,11 +5,7 @@
import
{
Component
}
from
'@angular/core'
;
import
{
Logger
}
from
'angular2-logger/core'
;
<<<<<<<
HEAD
:
src
/
app
/
footer
.
component
.
ts
import
{
AppService
,
DataStore
,
User
}
from
'./app.service'
;
=======
import
{
AppService
,
DataStore
}
from
'../app.service'
;
>>>>>>>
master
:
src
/
app
/
BasicPage
/
footer
.
component
.
ts
import
{
AppService
,
DataStore
,
User
}
from
'../app.service'
;
@
Component
({
...
...
src/app/login.component.ts
→
src/app/
BasicPage/
login.component.ts
View file @
a9f04c23
...
...
@@ -4,7 +4,7 @@
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
Logger
}
from
'angular2-logger/core'
;
import
{
AppService
,
DataStore
,
User
}
from
'./app.service'
;
import
{
AppService
,
DataStore
,
User
}
from
'.
.
/app.service'
;
import
{
NgForm
}
from
'@angular/forms'
;
declare
let
jQuery
:
any
;
...
...
src/app/login.css
→
src/app/
BasicPage/
login.css
View file @
a9f04c23
File moved
src/app/login.html
→
src/app/
BasicPage/
login.html
View file @
a9f04c23
File moved
src/app/BasicPage/nav.component.ts
View file @
a9f04c23
...
...
@@ -3,21 +3,13 @@
*/
import
{
Component
}
from
'@angular/core'
;
import
{
NgClass
}
from
'@angular/common'
;
// import {ROUTER_DIRECTIVES} from '@angular/router-deprecated';
import
{
Logger
}
from
'angular2-logger/core'
;
// import 'rxjs/Rx';
// declare var jQuery: any;
// declare var Clipboard: any;
// declare var layer: any;
<<<<<<<
HEAD
:
src
/
app
/
nav
.
component
.
ts
import
{
AppService
,
DataStore
,
User
}
from
'./app.service'
;
=======
import
{
AppService
,
DataStore
}
from
'../app.service'
;
>>>>>>>
master
:
src
/
app
/
BasicPage
/
nav
.
component
.
ts
import
{
AppService
,
DataStore
,
User
}
from
'../app.service'
;
//noinspection TypeScriptValidateTypes
...
...
src/app/IndexPage/welcome.component.ts
View file @
a9f04c23
/**
* Created by liuzheng on 2017/8/31.
*/
<<<<<<<
HEAD
:
src
/
app
/
welcome
.
component
.
ts
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
AppService
,
DataStore
,
User
}
from
'./app.service'
;
=======
import
{
Component
}
from
'@angular/core'
;
import
{
AppService
}
from
'../app.service'
;
>>>>>>>
master
:
src
/
app
/
IndexPage
/
welcome
.
component
.
ts
import
{
AppService
,
User
}
from
'../app.service'
;
@
Component
({
templateUrl
:
'./welcome.html'
,
...
...
src/app/app-routing.module.ts
View file @
a9f04c23
...
...
@@ -4,14 +4,12 @@
import
{
NgModule
}
from
'@angular/core'
;
import
{
RouterModule
,
Routes
}
from
'@angular/router'
;
import
{
environment
}
from
'../environments/environment'
;
<<<<<<<
HEAD
import
{
LoginComponent
}
from
'./login.component'
;
=======
import
{
WelcomeComponent
}
from
'./IndexPage/welcome.component'
;
import
{
PageNotFoundComponent
}
from
'./BasicPage/not-found.component'
;
import
{
LoginComponent
}
from
'./BasicPage/login.component'
;
>>>>>>>
master
const
appRoutes
:
Routes
=
[
// { path: 'crisis-center', component: CrisisListComponent },
{
path
:
'welcome'
,
component
:
WelcomeComponent
},
// <-- delete this line
...
...
src/app/app.module.ts
View file @
a9f04c23
...
...
@@ -12,23 +12,14 @@ import {AppRoutingModule} from './app-routing.module';
import
{
AppComponent
}
from
'./app.component'
;
<<<<<<<
HEAD
import
{
WelcomeComponent
}
from
'./welcome.component'
;
import
{
NavComponent
}
from
'./nav.component'
;
import
{
FooterComponent
}
from
'./footer.component'
;
import
{
LeftbarComponent
}
from
'./leftbar.component'
;
import
{
PageNotFoundComponent
}
from
'./not-found.component'
;
import
{
LoginComponent
}
from
'./login.component'
;
=======
import
{
NavComponent
}
from
'./BasicPage/nav.component'
;
import
{
PageNotFoundComponent
}
from
'./BasicPage/not-found.component'
;
import
{
FooterComponent
}
from
'./BasicPage/footer.component'
;
import
{
LoginComponent
}
from
'./BasicPage/login.component'
;
import
{
WelcomeComponent
}
from
'./IndexPage/welcome.component'
;
import
{
LeftbarComponent
}
from
'./IndexPage/leftbar.component'
;
>>>>>>>
master
@
NgModule
({
imports
:
[
...
...
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