Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
smart
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
smart
Commits
70cbd277
Commit
70cbd277
authored
Sep 19, 2019
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modal update
parent
e0b0ca3c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
60 additions
and
0 deletions
+60
-0
app.main.module.ts
src/main/webapp/app/app.main.module.ts
+6
-0
company-modal.component.html
...ain/webapp/app/company-modal/company-modal.component.html
+3
-0
company-modal.component.ts
src/main/webapp/app/company-modal/company-modal.component.ts
+15
-0
project-modal.component.html
...ain/webapp/app/project-modal/project-modal.component.html
+3
-0
project-modal.component.ts
src/main/webapp/app/project-modal/project-modal.component.ts
+15
-0
team-modal.component.html
src/main/webapp/app/team-modal/team-modal.component.html
+3
-0
team-modal.component.ts
src/main/webapp/app/team-modal/team-modal.component.ts
+15
-0
No files found.
src/main/webapp/app/app.main.module.ts
View file @
70cbd277
...
@@ -129,6 +129,9 @@ import {CreateCompanyComponent} from './project-manager/modal/create-company/cre
...
@@ -129,6 +129,9 @@ import {CreateCompanyComponent} from './project-manager/modal/create-company/cre
import
{
TrackInfoComponent
}
from
'./project-manager/modal/track-info/track-info.component'
;
import
{
TrackInfoComponent
}
from
'./project-manager/modal/track-info/track-info.component'
;
import
{
CreateProjectComponent
}
from
'./project-manager/modal/create-project/create-project.component'
;
import
{
CreateProjectComponent
}
from
'./project-manager/modal/create-project/create-project.component'
;
import
{
CreateTeamComponent
}
from
'./project-manager/modal/create-team/create-team.component'
;
import
{
CreateTeamComponent
}
from
'./project-manager/modal/create-team/create-team.component'
;
import
{
ProjectModalComponent
}
from
'./project-modal/project-modal.component'
;
import
{
TeamModalComponent
}
from
'./team-modal/team-modal.component'
;
import
{
CompanyModalComponent
}
from
'./company-modal/company-modal.component'
;
@
NgModule
({
@
NgModule
({
imports
:
[
imports
:
[
...
@@ -259,6 +262,9 @@ import {CreateTeamComponent} from './project-manager/modal/create-team/create-te
...
@@ -259,6 +262,9 @@ import {CreateTeamComponent} from './project-manager/modal/create-team/create-te
TrackInfoComponent
,
TrackInfoComponent
,
CreateProjectComponent
,
CreateProjectComponent
,
CreateTeamComponent
,
CreateTeamComponent
,
ProjectModalComponent
,
TeamModalComponent
,
CompanyModalComponent
,
],
],
providers
:
[
providers
:
[
OverAllService
,
OverAllService
,
...
...
src/main/webapp/app/company-modal/company-modal.component.html
0 → 100644
View file @
70cbd277
<p>
company-modal works!
</p>
src/main/webapp/app/company-modal/company-modal.component.ts
0 → 100644
View file @
70cbd277
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'smart-company-modal'
,
templateUrl
:
'./company-modal.component.html'
,
styles
:
[]
})
export
class
CompanyModalComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
src/main/webapp/app/project-modal/project-modal.component.html
0 → 100644
View file @
70cbd277
<p>
project-modal works!
</p>
src/main/webapp/app/project-modal/project-modal.component.ts
0 → 100644
View file @
70cbd277
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'smart-project-modal'
,
templateUrl
:
'./project-modal.component.html'
,
styles
:
[]
})
export
class
ProjectModalComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
src/main/webapp/app/team-modal/team-modal.component.html
0 → 100644
View file @
70cbd277
<p>
team-modal works!
</p>
src/main/webapp/app/team-modal/team-modal.component.ts
0 → 100644
View file @
70cbd277
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'smart-team-modal'
,
templateUrl
:
'./team-modal.component.html'
,
styles
:
[]
})
export
class
TeamModalComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
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