|
@@ -275,7 +275,6 @@ export default {
|
|
|
projectEndDate: "",
|
|
|
industryArray: [],
|
|
|
industry: "",
|
|
|
- entName: "",
|
|
|
address: "",
|
|
|
linkName: "",
|
|
|
linkPhone: "",
|
|
@@ -284,7 +283,10 @@ export default {
|
|
|
innovateFlag: false,
|
|
|
totoalPersons: "",
|
|
|
techFlag: false,
|
|
|
- techInvest: undefined
|
|
|
+ techInvest: undefined,
|
|
|
+ entName: "",
|
|
|
+ address: "",
|
|
|
+ linkMobile: ""
|
|
|
},
|
|
|
rules: {
|
|
|
projectYear: [
|
|
@@ -370,9 +372,9 @@ export default {
|
|
|
}
|
|
|
//获取年度信息
|
|
|
if(this.type == 'year') {
|
|
|
- // this.getEntData()
|
|
|
- let years= new Date().getFullYear();
|
|
|
- this.handleYear(years)
|
|
|
+ this.getEntData()
|
|
|
+ // let years= new Date().getFullYear();
|
|
|
+ // this.handleYear(years)
|
|
|
}
|
|
|
if(this.type == 'update') {
|
|
|
this.yearVisible = true
|
|
@@ -426,11 +428,17 @@ export default {
|
|
|
}
|
|
|
let techScope = []
|
|
|
this.$set(this.form, 'techScopeArray', techScope)
|
|
|
- this.form.entName = res.data.entName
|
|
|
- this.form.linkName = res.data.linkName
|
|
|
- this.form.linkPhone = res.data.linkPhone
|
|
|
- this.form.linkMobile = res.data.linkMobile
|
|
|
- this.form.address = res.data.address
|
|
|
+ this.$set(this.form, 'entName', res.data.entName)
|
|
|
+ this.$set(this.form, 'linkName', res.data.linkName)
|
|
|
+ this.$set(this.form, 'linkPhone', res.data.linkPhone)
|
|
|
+ this.$set(this.form, 'linkMobile', res.data.linkMobile)
|
|
|
+ this.$set(this.form, 'address', res.data.address)
|
|
|
+ // this.form.entName = res.data.entName
|
|
|
+ // this.form.linkName = res.data.linkName
|
|
|
+ // this.form.linkPhone = res.data.linkPhone
|
|
|
+ // this.form.linkMobile = res.data.linkMobile
|
|
|
+ // this.form.address = res.data.address
|
|
|
+ // this.form = res.data
|
|
|
}
|
|
|
})
|
|
|
},
|