Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
ydLife
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sweet Zhang
ydLife
Commits
46c91c80
Commit
46c91c80
authored
Jan 08, 2021
by
sunchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审批意见页面
parent
878d2947
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
52 additions
and
5 deletions
+52
-5
src/app/my/application-process/bank-card/bank-card.component.html
+1
-1
src/app/my/application-process/signature/signature.component.ts
+1
-1
src/app/my/approval-comments/approval-comments.component.html
+4
-0
src/app/my/approval-comments/approval-comments.component.scss
+0
-0
src/app/my/approval-comments/approval-comments.component.spec.ts
+25
-0
src/app/my/approval-comments/approval-comments.component.ts
+15
-0
src/app/my/my-center-home/my-center-home.component.ts
+1
-1
src/app/my/my-routing.module.ts
+3
-1
src/app/my/my.module.ts
+2
-1
No files found.
src/app/my/application-process/bank-card/bank-card.component.html
View file @
46c91c80
...
...
@@ -14,7 +14,7 @@
(
blur
)="
bs
(
2
)"
onkeyup=
"this.value=this.value.replace(/\D/g,'')"
/>
</div>
<div
class=
"contentItem"
style=
"border:none;"
>
<div
class=
"contentItem"
style=
"border:none;"
*
ngIf=
"!approvalIdentity"
>
<input
class=
"form-control"
name=
""
id=
""
style=
"text-align: left;padding: 6px 0;"
placeholder=
"再次输入银行卡号以确认"
[(
ngModel
)]="
sureBankAccountId
"
(
blur
)="
bs
(
3
)"
onkeyup=
"this.value=this.value.replace(/\D/g,'')"
/>
</div>
...
...
src/app/my/application-process/signature/signature.component.ts
View file @
46c91c80
...
...
@@ -128,7 +128,7 @@ export class SignatureComponent implements OnInit {
}
viewNext
(){
this
.
router
.
navigate
([
'/
contract
'
],{
queryParams
:
{
hiringBasicInfoId
:
this
.
hiringBasicInfoId
,
approvalIdentity
:
this
.
approvalIdentity
}
});
this
.
router
.
navigate
([
'/
approval_comments
'
],{
queryParams
:
{
hiringBasicInfoId
:
this
.
hiringBasicInfoId
,
approvalIdentity
:
this
.
approvalIdentity
}
});
}
goBack
(){
...
...
src/app/my/approval-comments/approval-comments.component.html
0 → 100644
View file @
46c91c80
<div>
审批意见
</div>
\ No newline at end of file
src/app/my/approval-comments/approval-comments.component.scss
0 → 100644
View file @
46c91c80
src/app/my/approval-comments/approval-comments.component.spec.ts
0 → 100644
View file @
46c91c80
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
ApprovalCommentsComponent
}
from
'./approval-comments.component'
;
describe
(
'ApprovalCommentsComponent'
,
()
=>
{
let
component
:
ApprovalCommentsComponent
;
let
fixture
:
ComponentFixture
<
ApprovalCommentsComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
ApprovalCommentsComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
ApprovalCommentsComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
src/app/my/approval-comments/approval-comments.component.ts
0 → 100644
View file @
46c91c80
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'ydlife-approval-comments'
,
templateUrl
:
'./approval-comments.component.html'
,
styleUrls
:
[
'./approval-comments.component.scss'
]
})
export
class
ApprovalCommentsComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
src/app/my/my-center-home/my-center-home.component.ts
View file @
46c91c80
...
...
@@ -97,7 +97,7 @@ export class MyCenterHomeComponent implements OnInit, AfterViewInit {
// { no: 16, subtitle: '团队增员', icon: 'recruiting', path: '', routerLink: '' },
{
no
:
16
,
subtitle
:
'团队增员'
,
icon
:
'recruiting'
,
path
:
''
,
routerLink
:
'recruiting'
},
{
no
:
18
,
subtitle
:
'招募海报'
,
icon
:
'poster_r'
,
path
:
''
,
routerLink
:
''
},
{
no
:
22
,
subtitle
:
'审批'
,
icon
:
'recruiting'
,
path
:
''
,
routerLink
:
'approval
-
list'
}
{
no
:
22
,
subtitle
:
'审批'
,
icon
:
'recruiting'
,
path
:
''
,
routerLink
:
'approval
_
list'
}
],
// isShow: this.isShow
isShow
:
true
...
...
src/app/my/my-routing.module.ts
View file @
46c91c80
...
...
@@ -42,6 +42,7 @@ import { EmployeeSubmitComponent } from './application-process/employee-submit/e
import
{
BankCardComponent
}
from
'./application-process/bank-card/bank-card.component'
;
import
{
MemberDetailComponent
}
from
'./member-detail/member-detail.component'
;
import
{
ApprovalListComponent
}
from
'./approval-list/approval-list.component'
;
import
{
ApprovalCommentsComponent
}
from
'./approval-comments/approval-comments.component'
;
const
myRoutes
:
Routes
=
[
{
path
:
''
,
component
:
MyCenterHomeComponent
,
canActivate
:
[
AuthGuard
],
data
:
[{
title
:
'银盾保险经纪 - 工作台'
}]
},
...
...
@@ -90,7 +91,8 @@ const myRoutes: Routes = [
{
path
:
'signature'
,
component
:
SignatureComponent
,
data
:
[{
title
:
'银盾经纪人报聘'
}]},
{
path
:
'employee_submit'
,
component
:
EmployeeSubmitComponent
,
data
:
[{
title
:
'已提交'
}]},
{
path
:
'member_detail/:practitionerId'
,
component
:
MemberDetailComponent
,
canActivate
:
[
AuthGuard
]},
{
path
:
'approval-list'
,
component
:
ApprovalListComponent
,
canActivate
:
[
AuthGuard
]}
{
path
:
'approval_list'
,
component
:
ApprovalListComponent
,
canActivate
:
[
AuthGuard
]},
{
path
:
'approval_comments'
,
component
:
ApprovalCommentsComponent
,
canActivate
:[
AuthGuard
]}
];
@
NgModule
({
...
...
src/app/my/my.module.ts
View file @
46c91c80
...
...
@@ -52,9 +52,10 @@ import { BankCardComponent } from './application-process/bank-card/bank-card.com
import
{
SignaturePadModule
}
from
'angular2-signaturepad'
;
import
{
MemberDetailComponent
}
from
'./member-detail/member-detail.component'
;
import
{
ApprovalListComponent
}
from
'./approval-list/approval-list.component'
;
import
{
ApprovalCommentsComponent
}
from
'./approval-comments/approval-comments.component'
;
@
NgModule
({
declarations
:
[
MyCenterHomeComponent
,
MkMaterialComponent
,
MkMaterialDetailComponent
,
FileUploadComponent
,
ImportantAnnouncementComponent
,
SalesDetailComponent
,
AnnouncementDetailComponent
,
MyBusinessComponent
,
MyBusinessDetailComponent
,
PickerComponent
,
MyToastComponent
,
SalesRankComponent
,
TeamRankComponent
,
RecruitingComponent
,
RecruitingDetailComponent
,
ThanksComponent
,
MySettingComponent
,
MySettingDetailComponent
,
MyNewsComponent
,
MyTargetComponent
,
TeamPanelComponent
,
SwitchNumberPipe
,
TeamSalesScoreComponent
,
ScoreDetailsComponent
,
BusinessCardComponent
,
OrderDetailComponent
,
SalaryComponent
,
TodoListComponent
,
AddTaskComponent
,
MedicalServiceComponent
,
InvitationComponent
,
RegisterComponent
,
EmployeeInfoComponent
,
EmployeeBasicInfoComponent
,
WorkExperienceComponent
,
PersonalPhotosComponent
,
EmployeeIdCardComponent
,
EmployeeEducationComponent
,
PersonalStatementComponent
,
SignatureComponent
,
EmployeeSubmitComponent
,
BankCardComponent
,
MemberDetailComponent
,
ApprovalListComponent
],
declarations
:
[
MyCenterHomeComponent
,
MkMaterialComponent
,
MkMaterialDetailComponent
,
FileUploadComponent
,
ImportantAnnouncementComponent
,
SalesDetailComponent
,
AnnouncementDetailComponent
,
MyBusinessComponent
,
MyBusinessDetailComponent
,
PickerComponent
,
MyToastComponent
,
SalesRankComponent
,
TeamRankComponent
,
RecruitingComponent
,
RecruitingDetailComponent
,
ThanksComponent
,
MySettingComponent
,
MySettingDetailComponent
,
MyNewsComponent
,
MyTargetComponent
,
TeamPanelComponent
,
SwitchNumberPipe
,
TeamSalesScoreComponent
,
ScoreDetailsComponent
,
BusinessCardComponent
,
OrderDetailComponent
,
SalaryComponent
,
TodoListComponent
,
AddTaskComponent
,
MedicalServiceComponent
,
InvitationComponent
,
RegisterComponent
,
EmployeeInfoComponent
,
EmployeeBasicInfoComponent
,
WorkExperienceComponent
,
PersonalPhotosComponent
,
EmployeeIdCardComponent
,
EmployeeEducationComponent
,
PersonalStatementComponent
,
SignatureComponent
,
EmployeeSubmitComponent
,
BankCardComponent
,
MemberDetailComponent
,
ApprovalListComponent
,
ApprovalCommentsComponent
],
imports
:
[
CommonModule
,
LifeCommonModule
,
...
...
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