Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
yn-science-front
Project
Project
Details
Activity
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
徐俊
yn-science-front
Commits
f47c0651
Commit
f47c0651
authored
Dec 17, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
10ed1431
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
budgetEdit.vue
src/views/report/project/components/budgetEdit.vue
+1
-1
projectEdit.vue
src/views/report/project/components/projectEdit.vue
+3
-1
No files found.
src/views/report/project/components/budgetEdit.vue
View file @
f47c0651
...
@@ -120,7 +120,7 @@ export default {
...
@@ -120,7 +120,7 @@ export default {
//一、资金来源合计
//一、资金来源合计
calTotalFund
()
{
calTotalFund
()
{
this
.
budget
[
0
].
totalBudget
=
this
.
budget
[
0
].
applyFunds
+
this
.
budget
[
0
].
selfFunds
this
.
budget
[
0
].
totalBudget
=
this
.
budget
[
0
].
applyFunds
+
this
.
budget
[
0
].
selfFunds
this
.
$emit
(
'save'
,
[
this
.
budget
[
0
].
totalBudget
,
this
.
budget
[
0
].
applyFunds
])
this
.
$emit
(
'save'
,
[
this
.
budget
[
0
].
totalBudget
,
this
.
budget
[
0
].
applyFunds
,
this
.
budget
[
0
].
selfFunds
])
},
},
//(一)财政资金
//(一)财政资金
calFundFrom
()
{
calFundFrom
()
{
...
...
src/views/report/project/components/projectEdit.vue
View file @
f47c0651
...
@@ -895,11 +895,13 @@ export default {
...
@@ -895,11 +895,13 @@ export default {
}
}
},
},
budgetSave
(
e
)
{
budgetSave
(
e
)
{
if
(
!!
e
&&
e
.
length
==
2
)
{
if
(
!!
e
&&
e
.
length
==
3
)
{
this
.
formData
.
totalFunding
=
e
[
0
]
this
.
formData
.
totalFunding
=
e
[
0
]
this
.
formData
.
govFunding
=
e
[
1
]
this
.
formData
.
govFunding
=
e
[
1
]
this
.
formData
.
projectKPI
.
totalBudget
=
this
.
formData
.
totalFunding
this
.
formData
.
projectKPI
.
totalBudget
=
this
.
formData
.
totalFunding
this
.
formData
.
projectKPI
.
applyFunds
=
this
.
formData
.
govFunding
this
.
formData
.
projectKPI
.
applyFunds
=
this
.
formData
.
govFunding
this
.
formData
.
projectKPI
.
selfFunds
=
e
[
2
]
}
}
},
},
}
}
...
...
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