Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
projectplan
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
Operate
Environments
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
Merge requests
!233
申报书保存name跟code不同
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
申报书保存name跟code不同
feature/wangchao
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
wangchao
requested to merge
feature/wangchao
into
develop
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
391ffdf7
1 commit,
3 years ago
1 file
+
5
−
2
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
WebSite/src/views/yo-common/ProjectFundApply/index.vue
+
5
−
2
Options
@@ -350,7 +350,7 @@
v-for=
"item in fundsList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.
cod
e"
:value=
"item.
nam
e"
></el-option>
</el-select>
</
template
>
@@ -868,7 +868,10 @@ export default {
budgetData
.
budgetTableSelected
=
selected
;
};
const
fundSubjectChhange
=
(
value
,
row
)
=>
{
const
fund
=
budgetData
.
fundsList
.
find
(
item
=>
item
.
code
==
value
);
console
.
log
(
'
value
'
,
value
);
console
.
log
(
'
ddd
'
,
budgetData
.
fundsList
);
const
fund
=
budgetData
.
fundsList
.
find
(
item
=>
item
.
name
==
value
);
console
.
log
(
'
fund
'
,
fund
);
row
.
subjectCode
=
fund
.
code
;
row
.
otherJson
.
fundDescribe
=
fund
.
fundDescribe
;
row
.
number
=
0
;