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
b22fcad2
Commit
b22fcad2
authored
Jan 04, 2021
by
sunchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
e816cabe
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
5 deletions
+8
-5
src/app/my/application-process/personal-statement/personal-statement.component.scss
+2
-2
src/app/my/application-process/personal-statement/personal-statement.component.ts
+3
-1
src/app/my/application-process/signature/signature.component.html
+2
-2
src/app/my/application-process/signature/signature.component.ts
+1
-0
No files found.
src/app/my/application-process/personal-statement/personal-statement.component.scss
View file @
b22fcad2
...
...
@@ -92,7 +92,7 @@
z-index
:
1
;
}
#toastContent
{
position
:
fixed
;
position
:
absolute
;
bottom
:
0
;
width
:
100%
;
height
:
80%
;
...
...
@@ -122,7 +122,7 @@
color
:
#fff
;
font-size
:
20px
;
font-weight
:
bold
;
position
:
absolut
e
;
position
:
relativ
e
;
bottom
:
0
;
}
}
...
...
src/app/my/application-process/personal-statement/personal-statement.component.ts
View file @
b22fcad2
...
...
@@ -168,7 +168,9 @@ export class PersonalStatementComponent implements OnInit {
this
.
curTitle
=
contractItem
.
termName
;
this
.
curContractId
=
contractItem
.
id
;
}
this
.
isAllAgree
=
this
.
contractTermsList
.
every
((
item
)
=>
{
return
item
.
confirmStatus
==
1
;
});
}
//同意合同条款
...
...
src/app/my/application-process/signature/signature.component.html
View file @
b22fcad2
...
...
@@ -9,11 +9,11 @@
<div
class=
"signatureContent"
>
<signature-pad
*
ngIf=
"!isSignatureShow"
#
signaturePad
[
options
]="
signaturePadOptions
"
(
onBeginEvent
)="
drawStart
()"
(
onEndEvent
)="
drawComplete
()"
>
</signature-pad>
<img
[
src
]="
this
.
imgStr
"
alt=
"签名"
*
ngIf=
"isSignatureShow"
>
<img
[
src
]="
imgStr
"
alt=
"签名"
*
ngIf=
"isSignatureShow"
>
</div>
<div
class=
"signature_action"
>
<img
src=
"assets/images/clear.png"
alt=
"清除"
(
click
)="
clearSignature
();"
/>
<img
src=
"assets/images/revoke.png"
alt=
"上一步"
(
click
)="
revokeSignature
()"
/>
<img
src=
"assets/images/revoke.png"
*
ngIf=
"!isSignatureShow"
alt=
"上一步"
(
click
)="
revokeSignature
()"
/>
</div>
<footer
class=
"fixed"
(
click
)="
next
()"
>
我自愿签订经纪人合同书
...
...
src/app/my/application-process/signature/signature.component.ts
View file @
b22fcad2
...
...
@@ -79,6 +79,7 @@ export class SignatureComponent implements OnInit {
this
.
myService
.
queryWholeInfo
({
hiringBasicInfoId
:
hiringBasicInfoId
}).
subscribe
((
res
)
=>
{
if
(
res
[
'success'
]){
this
.
imgStr
=
res
[
'data'
][
'hiringBasicInfo'
][
'personalSignOssPath'
];
console
.
log
(
this
.
imgStr
)
this
.
isSignatureShow
=
true
;
}
else
{
this
.
isSignatureShow
=
false
;
...
...
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