Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
projectplan_gzy
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
班迪
projectplan_gzy
Merge requests
!307
Feature/zlh
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/zlh
feature/zlh
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
11
Merged
班迪
requested to merge
feature/zlh
into
develop
3 years ago
Overview
0
Commits
2
Pipelines
1
Changes
11
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
5d7e21e9
2 commits,
3 years ago
11 files
+
160
−
29
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
WebSite/src/api/projectLibrary.js
+
9
−
1
Options
@@ -39,7 +39,12 @@ class ProjectLibrary extends Base {
static
queryBudgetInfoPageByPId
(
data
)
{
return
request
.
post
(
'
/budgetInfo/queryBudgetInfoPageByPId
'
,
data
);
}
//获取列表
static
queryTemplateInfo
(
templateName
)
{
return
request
.
post
(
`/budgetInfo/queryTemplateInfo?templateName=
${
templateName
}
`
);
}
// 科目扩展表设置
static
queryExtendFormPage
(
data
)
{
return
request
.
post
(
'
/baseConfig/queryExtendFormPage
'
,
data
);
@@ -276,6 +281,9 @@ class ProjectLibrary extends Base {
static
submitProjectPlanListToFinish
(
data
)
{
return
request
.
post
(
'
/projectPlan/submitProjectPlanListToFinish
'
,
data
);
}
static
initProjectPlanFlow
(
data
)
{
return
request
.
post
(
'
projectPlan/initProjectPlanFlow
'
,
data
);
}
static
enterPublicProjectPlan
(
data
)
{
return
request
.
post
(
'
/projectLibrary/enterPublicProjectPlan
'
,
data
);
}