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
f7d43c34
Commit
f7d43c34
authored
Jan 20, 2022
by
Sweet Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户告知书q签署跟踪
parent
d6cc8c08
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
src/app/my/application-process/signature/signature.component.ts
+2
-0
src/app/my/e-notice-sign/e-notice-sign.component.ts
+4
-1
No files found.
src/app/my/application-process/signature/signature.component.ts
View file @
f7d43c34
...
@@ -78,6 +78,8 @@ export class SignatureComponent implements OnInit {
...
@@ -78,6 +78,8 @@ export class SignatureComponent implements OnInit {
return
;
return
;
}
}
if
(
this
.
type
==
'eNotice'
){
if
(
this
.
type
==
'eNotice'
){
this
.
myService
.
customerBehaviorTrackSave
(
`客户告知书 - 客户点击了【确认提交】,告知书ID为
${
sessionStorage
.
getItem
(
'eNoticeId'
)}
`
).
subscribe
(
res
=>
{
})
this
.
myService
.
signInformedSheet
({
'id'
:
sessionStorage
.
getItem
(
'eNoticeId'
),
imgStr
:
this
.
imgStr
}).
subscribe
(
res
=>
{
this
.
myService
.
signInformedSheet
({
'id'
:
sessionStorage
.
getItem
(
'eNoticeId'
),
imgStr
:
this
.
imgStr
}).
subscribe
(
res
=>
{
if
(
res
[
'success'
]){
if
(
res
[
'success'
]){
// 确认提交
// 确认提交
...
...
src/app/my/e-notice-sign/e-notice-sign.component.ts
View file @
f7d43c34
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
Router
}
from
'@angular/router'
;
import
{
Router
}
from
'@angular/router'
;
import
{
MyService
}
from
'../my.service'
;
@
Component
({
@
Component
({
selector
:
'ydlife-e-notice-sign'
,
selector
:
'ydlife-e-notice-sign'
,
...
@@ -8,13 +9,15 @@ import { Router } from '@angular/router';
...
@@ -8,13 +9,15 @@ import { Router } from '@angular/router';
})
})
export
class
ENoticeSignComponent
implements
OnInit
{
export
class
ENoticeSignComponent
implements
OnInit
{
constructor
(
private
router
:
Router
)
{
}
constructor
(
private
router
:
Router
,
private
myService
:
MyService
)
{
}
ngOnInit
()
{
ngOnInit
()
{
}
}
agree
(){
agree
(){
this
.
myService
.
customerBehaviorTrackSave
(
`客户告知书 - 客户点击了【同意并签署】`
).
subscribe
(
res
=>
{
this
.
router
.
navigate
([
'/eNoticeSignature'
],{
queryParams
:
{
type
:
'eNotice'
}
})
this
.
router
.
navigate
([
'/eNoticeSignature'
],{
queryParams
:
{
type
:
'eNotice'
}
})
})
}
}
}
}
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