|
@@ -297,10 +297,10 @@ export default {
|
|
{ required: true, trigger: "blur", message: "请输入年度研发投入(万元)" },
|
|
{ required: true, trigger: "blur", message: "请输入年度研发投入(万元)" },
|
|
{ validator: validAmount, trigger: 'blur'}
|
|
{ validator: validAmount, trigger: 'blur'}
|
|
],
|
|
],
|
|
- techRate: [
|
|
|
|
- { required: true, trigger: "blur", message: "请输入占销售收入比例(%)" },
|
|
|
|
- { validator: validPercentage, trigger: 'blur'}
|
|
|
|
- ],
|
|
|
|
|
|
+ // techRate: [
|
|
|
|
+ // { required: true, trigger: "blur", message: "请输入占销售收入比例(%)" },
|
|
|
|
+ // { validator: validPercentage, trigger: 'blur'}
|
|
|
|
+ // ],
|
|
industry: [
|
|
industry: [
|
|
{ required: true, trigger: "blur", message: "请选择企业所属行业" }
|
|
{ required: true, trigger: "blur", message: "请选择企业所属行业" }
|
|
],
|
|
],
|
|
@@ -405,6 +405,9 @@ export default {
|
|
getYearDataApi(projectYear, this.entId).then(res => {
|
|
getYearDataApi(projectYear, this.entId).then(res => {
|
|
this.form = res.data
|
|
this.form = res.data
|
|
this.form.fileName = '高新证书'
|
|
this.form.fileName = '高新证书'
|
|
|
|
+ if(this.form.techStartDate && this.form.techEndDate) {
|
|
|
|
+ this.form.licenseTime = this.form.techStartDate + ' 至 ' + this.form.techEndDate
|
|
|
|
+ }
|
|
if(this.form.techScope) {
|
|
if(this.form.techScope) {
|
|
let techScope = this.form.techScope.split(',') || []
|
|
let techScope = this.form.techScope.split(',') || []
|
|
this.$set(this.form, 'techScopeArray', techScope)
|
|
this.$set(this.form, 'techScopeArray', techScope)
|
|
@@ -420,6 +423,9 @@ export default {
|
|
if(res.data) {
|
|
if(res.data) {
|
|
this.form = res.data
|
|
this.form = res.data
|
|
this.form.fileName = '高新证书'
|
|
this.form.fileName = '高新证书'
|
|
|
|
+ if(this.form.techStartDate && this.form.techEndDate) {
|
|
|
|
+ this.form.licenseTime = this.form.techStartDate + ' 至 ' + this.form.techEndDate
|
|
|
|
+ }
|
|
if(this.form.techScope) {
|
|
if(this.form.techScope) {
|
|
let techScope = this.form.techScope.split(',') || []
|
|
let techScope = this.form.techScope.split(',') || []
|
|
this.$set(this.form, 'techScopeArray', techScope)
|
|
this.$set(this.form, 'techScopeArray', techScope)
|
|
@@ -474,19 +480,38 @@ export default {
|
|
this.form.techStartDate = ""
|
|
this.form.techStartDate = ""
|
|
this.form.techEndDate = ""
|
|
this.form.techEndDate = ""
|
|
}
|
|
}
|
|
- if(this.type == 'year') {
|
|
|
|
- yearApi(this.form).then(res => {
|
|
|
|
- this.loading = false
|
|
|
|
- this.$store.dispatch("tagsView/delView", this.$route);
|
|
|
|
- this.$router.go(-1);
|
|
|
|
- })
|
|
|
|
- } else {
|
|
|
|
- yearUpdateApi(this.form).then(res => {
|
|
|
|
- this.loading = false
|
|
|
|
- this.$store.dispatch("tagsView/delView", this.$route);
|
|
|
|
- this.$router.go(-1);
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
|
|
+ let _self = this;
|
|
|
|
+ this.$confirm('是否确认保存?', "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function() {
|
|
|
|
+ if(_self.type == 'year') {
|
|
|
|
+ yearApi(_self.form).then(res => {
|
|
|
|
+ _self.$alert('企业加计年度企业基本信息保存成功', '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ callback: action => {
|
|
|
|
+ _self.loading = false
|
|
|
|
+ _self.$store.dispatch("tagsView/delView", _self.$route);
|
|
|
|
+ _self.$router.go(-1);
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ yearUpdateApi(_self.form).then(res => {
|
|
|
|
+ _self.$alert('企业加计年度企业基本信息保存成功', '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ callback: action => {
|
|
|
|
+ _self.loading = false
|
|
|
|
+ _self.$store.dispatch("tagsView/delView", _self.$route);
|
|
|
|
+ _self.$router.go(-1);
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ _self.loading = false
|
|
|
|
+ });
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|