|
@@ -144,6 +144,8 @@ export default {
|
|
|
{fundName:'知识产权事务费',budget:'',havePaid:0,thisApply:'',remark:'论文版面费、专利及其他知识产权事务等费用。'},
|
|
|
],
|
|
|
intro:'', //事由
|
|
|
+ tit:'',
|
|
|
+ ty:''
|
|
|
}
|
|
|
},
|
|
|
methods:{
|
|
@@ -194,11 +196,15 @@ export default {
|
|
|
this.fundList[5].budget=data.entery
|
|
|
this.fundList[6].budget=data.activities
|
|
|
this.fundList[7].budget=data.Transaction
|
|
|
+ this.tit=res.data[0][0].title
|
|
|
+ this.ty=res.data[0][0].type
|
|
|
|
|
|
- let arr= res['data'][0].filter(e=>{
|
|
|
+
|
|
|
+
|
|
|
+ let arr= res['data'][1].filter(e=>{
|
|
|
return e.actualuse!=null
|
|
|
})
|
|
|
- console.log(arr);
|
|
|
+ // console.log(arr);
|
|
|
|
|
|
// let isUse = arr;
|
|
|
if (arr) {
|
|
@@ -223,14 +229,22 @@ export default {
|
|
|
},
|
|
|
download(){
|
|
|
if(!this.projectName) return this.$message.error('请选择项目名称')
|
|
|
+ let data= this.fundList.filter(e=>{
|
|
|
+ return e.thisApply==''
|
|
|
+ })
|
|
|
+ if (data.length==8) return this.$message.error('请填写本次申请金额')
|
|
|
this.downLoadExcelDig=true
|
|
|
},
|
|
|
downLoadExcel(){ //生成表单
|
|
|
- getExcel(this.fundList,this.intro)
|
|
|
+ getExcel(this.fundList,this.intro,this.tit,this.ty)
|
|
|
this.downLoadExcelDig=false
|
|
|
},
|
|
|
submitData(){
|
|
|
if(!this.projectName) return this.$message.error('请选择项目名称')
|
|
|
+ let data= this.fundList.filter(e=>{
|
|
|
+ return e.thisApply==''
|
|
|
+ })
|
|
|
+ if (data.length==8) return this.$message.error('请填写本次申请金额')
|
|
|
let arr=[this.fundList[0].thisApply,this.fundList[1].thisApply,this.fundList[2].thisApply,this.fundList[3].thisApply,this.fundList[4].thisApply,this.fundList[5].thisApply,this.fundList[6].thisApply,this.fundList[7].thisApply]
|
|
|
let arr2=[this.fundList[0].havePaid,this.fundList[1].havePaid,this.fundList[2].havePaid,this.fundList[3].havePaid,this.fundList[4].havePaid,this.fundList[5].havePaid,this.fundList[6].havePaid,this.fundList[7].havePaid]
|
|
|
|