Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
K
komatsu-lease-app
Project
Project
Details
Activity
Releases
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
komatsu
komatsu-lease-app
Commits
ac818457
Commit
ac818457
authored
Sep 19, 2023
by
14699
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'接口添加参数'
parent
1222607b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
index.vue
src/modules/contractSign/views/index.vue
+1
-1
pdfPreList.vue
src/modules/contractSign/views/pdfPreList.vue
+2
-1
No files found.
src/modules/contractSign/views/index.vue
View file @
ac818457
...
@@ -153,7 +153,7 @@ const router = useRouter();
...
@@ -153,7 +153,7 @@ const router = useRouter();
const
pdfPre
=
(
item
)
=>
{
const
pdfPre
=
(
item
)
=>
{
if
(
item
.
esignFlowId
)
{
if
(
item
.
esignFlowId
)
{
router
.
push
({
path
:
'/contractsign/views/pdfprelist'
,
query
:
{
esignFlowId
:
item
.
esignFlowId
}
})
router
.
push
({
path
:
'/contractsign/views/pdfprelist'
,
query
:
{
esignFlowId
:
item
.
esignFlowId
,
projectId
:
item
.
projectId
}
})
}
else
{
}
else
{
Toast
(
'未获取到签署合同,请联系管理员!'
);
Toast
(
'未获取到签署合同,请联系管理员!'
);
}
}
...
...
src/modules/contractSign/views/pdfPreList.vue
View file @
ac818457
...
@@ -33,11 +33,12 @@ let refreshing = $ref(true);
...
@@ -33,11 +33,12 @@ let refreshing = $ref(true);
const
finished
=
$ref
(
true
);
const
finished
=
$ref
(
true
);
const
esignFlowId
=
route
.
query
.
esignFlowId
;
const
esignFlowId
=
route
.
query
.
esignFlowId
;
const
projectId
=
route
.
query
.
projectId
;
let
preList
=
$ref
([]);
let
preList
=
$ref
([]);
const
getDailyLiquidatedDetail
=
async
()
=>
{
const
getDailyLiquidatedDetail
=
async
()
=>
{
const
res
=
await
api
.
preListQuery
({
"esignFlowId"
:
esignFlowId
})
const
res
=
await
api
.
preListQuery
({
"esignFlowId"
:
esignFlowId
,
"projectId"
:
projectId
})
refreshing
=
false
;
refreshing
=
false
;
if
(
res
.
success
)
{
if
(
res
.
success
)
{
preList
=
res
.
rows
preList
=
res
.
rows
...
...
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