Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
本
本级财政预算项目管理系统
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JAVA
本级财政预算项目管理系统
Merge requests
!69
Feature/lhh
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/lhh
feature/lhh
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
5
Merged
刘镐珲
requested to merge
feature/lhh
into
develop
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
5
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
e34bdc5d
2 commits,
2 years ago
5 files
+
786
−
428
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Some changes are not shown
For a faster browsing experience, some files are collapsed by default.
Expand all files
Files
5
Search (e.g. *.vue) (Ctrl+P)
WebSite/src/api/review-management-operation.js
+
45
−
2
Options
@@ -119,9 +119,52 @@ class operation {
'
/entrustmentExpert/saveExpertSign?expertId=
'
+
expertId
+
'
&file=
'
+
file
);
}
//批量反馈预审意见:传预审主键
//批量反馈预审意见:传预审主键
static
modifyByFeedbackIds
(
data
)
{
return
request
.
post
(
'
/preliminary/modifyByFeedbackIds
'
,
data
);
return
request
.
post
(
'
/preliminary/modifyByFeedbackIds
'
,
data
);
}
//保存委托函专家
static
saveEntrustmentExpertInfo
(
data
)
{
return
request
.
post
(
'
/entrustmentExpert/saveEntrustmentExpertInfo
'
,
data
);
}
//分页委托函专家列表
static
getExpertInfoPageById
(
data
)
{
return
request
.
post
(
'
/entrustmentExpert/getExpertInfoPageById
'
,
data
);
}
//删除委托函专家
static
removeExpert
(
data
)
{
return
request
.
post
(
'
/entrustmentExpert/removeExpert
'
,
data
);
}
//是否参加评审
static
saveExpertIsJoin
(
data
)
{
return
request
.
post
(
'
/entrustmentExpert/saveExpertIsJoin
'
,
data
);
}
//保存专家人数
static
saveEntrustmentExpertCount
(
data
)
{
return
request
.
post
(
'
/entrustmentExpert/saveEntrustmentExpertCount
'
,
data
);
}
//获取评审方案下的专家
static
getNoPlanReviewExpert
(
data
)
{
return
request
.
post
(
'
/planReview/getNoPlanReviewExpert
'
,
data
);
}
//获取评审方案下的项目
static
getProjectsPlanReview
(
data
)
{
return
request
.
post
(
'
/planReview/getProjectsPlanReview
'
,
data
);
}
//获取评审方案列表
static
getPlanReviewList
(
data
)
{
return
request
.
post
(
'
/planReview/getPlanReviewList
'
,
data
);
}
//保存评审方案
static
savePlanReview
(
data
)
{
return
request
.
post
(
'
/planReview/savePlanReview
'
,
data
);
}
//获取评审方案专家底稿
static
getEntrustmentExpertManuscriptList
(
data
)
{
return
request
.
post
(
'
/expertManuscript/getEntrustmentExpertManuscriptList
'
,
data
);
}
}