明树Git Lab
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
J
jt_front
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
Administrator
jt_front
Commits
722521b8
Commit
722521b8
authored
May 14, 2026
by
zhanghan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a023cb2e
Pipeline
#111354
passed with stage
in 19 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
routerBack.vue
src/components/common/routerBack.vue
+5
-2
addProject.vue
src/views/projectManage/addProject.vue
+6
-1
No files found.
src/components/common/routerBack.vue
View file @
722521b8
...
...
@@ -155,11 +155,14 @@ const route = useRoute();
const
router
=
useRouter
();
const
effectiveFlowType
=
computed
(()
=>
{
const
hasInvestmentManagement
=
props
.
processData
.
some
((
record
)
=>
record
.
creator
?.
departs
?.
some
((
dept
)
=>
dept
.
parentIds
?.
includes
(
"41"
)),
record
.
creator
?.
departs
?.
some
(
(
dept
)
=>
// 只要满足以下任意一个条件,就判定为投管
dept
.
parentIds
?.
includes
(
"41"
)
||
dept
.
id
==
"41"
,
),
);
return
hasInvestmentManagement
?
"simple"
:
"complex"
;
});
const
processDialogVisible
=
ref
(
false
);
const
handleBack
=
()
=>
{
...
...
src/views/projectManage/addProject.vue
View file @
722521b8
...
...
@@ -93,7 +93,12 @@
>
初审
</el-button
>
<el-button
v-if=
"isPreview && formData.projectLzType == '4'"
v-if=
"
isPreview &&
formData?.daibanUsers?.includes(userInfo?.id) &&
hasApproveRole &&
formData.projectLzType == '4'
"
type=
"primary"
@
click=
"auditDialogVisible = true"
>
审核
</el-button
...
...
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