|
@@ -297,12 +297,13 @@ export default {
|
|
|
var aa=[]
|
|
|
res.result.map(item=>{
|
|
|
aa.push(
|
|
|
- {value:item.project_name,
|
|
|
- label:item.project_name,
|
|
|
+ {value:item.projectName,
|
|
|
+ label:item.projectName,
|
|
|
startDate:item.start_date,
|
|
|
endDate:item.end_date,
|
|
|
projectReasons:item.project_reasons,
|
|
|
- budgetInformation:item.budget_information
|
|
|
+ budgetInformation:item.budget_information,
|
|
|
+ projectSum:item.projectSum
|
|
|
})
|
|
|
})
|
|
|
this.dynamicData.fundApproval = aa
|
|
@@ -1129,6 +1130,15 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+ //技能博物馆-合同管理-项目预算
|
|
|
+ if(key == 'project_name' &&this.processData.businessTable == 'bwg_contract_management'){
|
|
|
+ this.dynamicData.fundApproval.map(item =>{
|
|
|
+ if(item.label == value){
|
|
|
+ this.$refs.KFB.setData({budget_sum:item.projectSum})
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
//技能博物馆-请假申请-申请部门
|
|
|
if(key == 'apply_perso' &&this.processData.businessTable == 'leave_apply'){
|
|
|
this.dynamicData.personListJn.map(item =>{
|