|
@@ -326,9 +326,9 @@ export default {
|
|
|
techLicense: [
|
|
|
{ required: true, trigger: "change", message: "请上传高新企业证书" }
|
|
|
],
|
|
|
- licenseTime: [
|
|
|
- { required: true, trigger: "change", message: "请选择证书有效期限" }
|
|
|
- ]
|
|
|
+ // licenseTime: [
|
|
|
+ // { required: true, trigger: "change", message: "请选择证书有效期限" }
|
|
|
+ // ]
|
|
|
},
|
|
|
loading: false,
|
|
|
captchaOnOff: true
|
|
@@ -414,6 +414,10 @@ export default {
|
|
|
getYearData(projectYear) {
|
|
|
getYearDataApi(projectYear).then(res => {
|
|
|
this.form = res.data
|
|
|
+ if(this.form.techScope) {
|
|
|
+ let techScope = this.form.techScope.split(',') || []
|
|
|
+ this.$set(this.form, 'techScopeArray', techScope)
|
|
|
+ }
|
|
|
if(this.form.industry) {
|
|
|
let industryArray = this.form.industry.split(',') || [];
|
|
|
this.$set(this.form, 'industryArray', industryArray);
|