页面修改
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
<el-form-item label="企业名称" prop="companyName">
|
||||
<el-input
|
||||
v-model.trim="formA.companyName"
|
||||
style="max-width:420px"
|
||||
style="max-width: 420px"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="成立时间" prop="regTime">
|
||||
@ -30,7 +30,7 @@
|
||||
</el-date-picker> -->
|
||||
</el-form-item>
|
||||
<el-form-item label="所属领域">
|
||||
<el-col :span="8">
|
||||
<el-col :span="7">
|
||||
<el-form-item>
|
||||
<el-select
|
||||
v-model="formA.one"
|
||||
@ -46,7 +46,7 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-col :span="7">
|
||||
<el-form-item prop="territoryId">
|
||||
<el-select v-model="formA.territoryId" placeholder="请选择">
|
||||
<el-option
|
||||
@ -118,7 +118,7 @@
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="warning" @click="submitFormA('formA')"
|
||||
>提交</el-button
|
||||
>提 交</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
@ -126,7 +126,7 @@
|
||||
<el-form v-if="status == 2">
|
||||
<p>您已通过高企认定门槛检查,请点击下一步进行创新指标评分!</p>
|
||||
<el-form-item class="margin-center">
|
||||
<el-button type="warning" @click="status = 1">返回</el-button>
|
||||
<el-button type="warning" @click="status = 1">返 回</el-button>
|
||||
<el-button type="warning" @click="status = 3">下一步</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
@ -134,9 +134,11 @@
|
||||
<el-form v-if="status == -2">
|
||||
<p>您的高企认定门槛检查未通过,请点击返回重新填写!</p>
|
||||
<p>未通过项:</p>
|
||||
<p v-for="(item, index) in badSeason" :key="index">{{ item }}</p>
|
||||
<p v-for="(item, index) in badSeason" :key="index">
|
||||
{{ index + 1 }}、{{ item }}
|
||||
</p>
|
||||
<el-form-item class="margin-center">
|
||||
<el-button type="warning" @click="status = 1">返回</el-button>
|
||||
<el-button type="warning" @click="status = 1">返 回</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
@ -197,7 +199,7 @@
|
||||
label="净资产增长率赋值(其中合肥市高新区企业,政策兑现要求上一年度净资产达40万元以上) "
|
||||
>
|
||||
<el-select
|
||||
style="max-width: 95px;"
|
||||
style="max-width: 95px"
|
||||
v-model="formB.assetGrowth"
|
||||
placeholder="请选择"
|
||||
>
|
||||
@ -223,31 +225,37 @@
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="warning" @click="submitFormB('formB')"
|
||||
>提交</el-button
|
||||
>提 交</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-form class="el_form_4" v-if="status == -3">
|
||||
<p>
|
||||
您的创新指标得分{{
|
||||
您的创新指标得分
|
||||
<i style="color: red; font-size: 22px; font-weight: 700">{{
|
||||
score
|
||||
}}分,不符合高企认定条件!此评分为平台智能估算分,仅供参考,实际评分以政府实际打分为准!
|
||||
}}</i>
|
||||
分,不符合高企认定条件!此评分为平台智能估算分,仅供参考,实际评分以政府实际打分为准!
|
||||
</p>
|
||||
<p>平台建议:</p>
|
||||
<p v-for="(item, index) in badSeason1" :key="index">{{ item }}</p>
|
||||
<el-form-item style="text-align:center;margin:70px 0">
|
||||
<p v-for="(item, index) in badSeason1" :key="index">
|
||||
{{ index + 1 }}、{{ item }}
|
||||
</p>
|
||||
<el-form-item style="text-align: center; margin: 70px 0">
|
||||
<el-button type="warning" @click="status = 1">重新评估</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-form class="el_form_4" v-if="status == 4">
|
||||
<p>
|
||||
您的创新指标得分{{
|
||||
您的创新指标得分
|
||||
<i style="color: green; font-size: 22px; font-weight: 700">{{
|
||||
score
|
||||
}}分,符合高企认定条件!此评分为平台智能估算分,仅供参考,实际评分以政府实际打分为准!
|
||||
}}</i>
|
||||
分,符合高企认定条件!此评分为平台智能估算分,仅供参考,实际评分以政府实际打分为准!
|
||||
</p>
|
||||
<el-form-item style="text-align:center;margin:70px 0">
|
||||
<el-form-item style="text-align: center; margin: 70px 0">
|
||||
<el-button type="warning" @click="status = 1">重新评估</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
@ -259,7 +267,7 @@ import {
|
||||
getTerritoryOneMenu,
|
||||
getTerritoryTwoMenu,
|
||||
firstAssess,
|
||||
secondAssess
|
||||
secondAssess,
|
||||
} from '@/api/startEvaluation';
|
||||
export default {
|
||||
data() {
|
||||
@ -269,38 +277,38 @@ export default {
|
||||
propertyOption: [
|
||||
{
|
||||
value: 0,
|
||||
label: '否'
|
||||
label: '否',
|
||||
},
|
||||
{
|
||||
value: 1,
|
||||
label: '是'
|
||||
}
|
||||
label: '是',
|
||||
},
|
||||
], // 核心领域发挥作用知识产权 0->否 1->是 和 四、其他
|
||||
assetOption: [
|
||||
{
|
||||
value: 35,
|
||||
label: '>=35%'
|
||||
label: '>=35%',
|
||||
},
|
||||
{
|
||||
value: 25,
|
||||
label: '>=25%'
|
||||
label: '>=25%',
|
||||
},
|
||||
{
|
||||
value: 15,
|
||||
label: '>=15%'
|
||||
label: '>=15%',
|
||||
},
|
||||
{
|
||||
value: 5,
|
||||
label: '>=5%'
|
||||
label: '>=5%',
|
||||
},
|
||||
{
|
||||
value: 1,
|
||||
label: '>0%'
|
||||
label: '>0%',
|
||||
},
|
||||
{
|
||||
value: 0,
|
||||
label: '<=0%'
|
||||
}
|
||||
label: '<=0%',
|
||||
},
|
||||
],
|
||||
formA: {
|
||||
companyName: '',
|
||||
@ -312,7 +320,7 @@ export default {
|
||||
lastYearResearchExpend: 0,
|
||||
totalEmployee: 0,
|
||||
scienceEmployee: 0,
|
||||
hasBad: 0
|
||||
hasBad: 0,
|
||||
}, // 高企认定门槛
|
||||
badSeason: [], // A 没有通过的数据
|
||||
score: 0, // 分数
|
||||
@ -324,7 +332,7 @@ export default {
|
||||
achievementNum: 0,
|
||||
management: ['1'],
|
||||
assetGrowth: 35,
|
||||
sellGrowth: 35
|
||||
sellGrowth: 35,
|
||||
}, // 创新指标评分
|
||||
status: 1,
|
||||
rulesA: {
|
||||
@ -334,10 +342,10 @@ export default {
|
||||
{
|
||||
required: true,
|
||||
message: '请选择日期',
|
||||
trigger: 'change'
|
||||
}
|
||||
]
|
||||
}
|
||||
trigger: 'change',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
@ -348,7 +356,7 @@ export default {
|
||||
});
|
||||
},
|
||||
submitFormA(formName) {
|
||||
this.$refs[formName].validate(valid => {
|
||||
this.$refs[formName].validate((valid) => {
|
||||
if (valid) {
|
||||
firstAssess(this.formA).then(({ data }) => {
|
||||
if (!data.badSeason.length) {
|
||||
@ -378,13 +386,13 @@ export default {
|
||||
this.status = -3;
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
},
|
||||
created() {
|
||||
getTerritoryOneMenu().then(({ data }) => {
|
||||
this.oneMenuList = data;
|
||||
});
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@ -405,7 +413,7 @@ export default {
|
||||
border-radius: 15px;
|
||||
min-height: 350px;
|
||||
.el-form {
|
||||
width: 50%;
|
||||
width: 60%;
|
||||
.margin-right-xs {
|
||||
margin-right: 15px;
|
||||
}
|
||||
@ -432,5 +440,21 @@ export default {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.el-form {
|
||||
font-size: 20px;
|
||||
}
|
||||
/deep/.el-form-item__label {
|
||||
font-size: 16px;
|
||||
color: #606266;
|
||||
font-weight: 700;
|
||||
}
|
||||
/deep/.el-checkbox__label {
|
||||
font-size: 16px;
|
||||
color: #606266;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
/deep/.el-button--medium {
|
||||
font-size: 18px;
|
||||
}
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user