添加图片和修改画像的多选

This commit is contained in:
熊丽君
2021-08-20 14:26:33 +08:00
parent b5d5016423
commit eb782ddaf4
21 changed files with 163 additions and 112 deletions

View File

@ -233,9 +233,9 @@
<el-form class="el_form_4" v-if="status == -3">
<p>
您的创新指标得分
<i style="color: red; font-size: 22px; font-weight: 700">{{
<span style="color: red; font-size: 22px; font-weight: 700">{{
score
}}</i>
}}</span>
分,不符合高企认定条件!此评分为平台智能估算分,仅供参考,实际评分以政府实际打分为准!
</p>
<p>平台建议:</p>
@ -250,9 +250,9 @@
<el-form class="el_form_4" v-if="status == 4">
<p>
您的创新指标得分
<i style="color: green; font-size: 22px; font-weight: 700">{{
<span style="color: green; font-size: 22px; font-weight: 700">{{
score
}}</i>
}}</span>
符合高企认定条件此评分为平台智能估算分仅供参考实际评分以政府实际打分为准
</p>
<el-form-item style="text-align: center; margin: 70px 0">
@ -267,7 +267,7 @@ import {
getTerritoryOneMenu,
getTerritoryTwoMenu,
firstAssess,
secondAssess,
secondAssess
} from '@/api/startEvaluation';
export default {
data() {
@ -277,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: '',
@ -320,7 +320,7 @@ export default {
lastYearResearchExpend: 0,
totalEmployee: 0,
scienceEmployee: 0,
hasBad: 0,
hasBad: 0
}, // 高企认定门槛
badSeason: [], // A 没有通过的数据
score: 0, // 分数
@ -332,7 +332,7 @@ export default {
achievementNum: 0,
management: ['1'],
assetGrowth: 35,
sellGrowth: 35,
sellGrowth: 35
}, // 创新指标评分
status: 1,
rulesA: {
@ -342,10 +342,10 @@ export default {
{
required: true,
message: '请选择日期',
trigger: 'change',
},
],
},
trigger: 'change'
}
]
}
};
},
methods: {
@ -356,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) {
@ -386,13 +386,13 @@ export default {
this.status = -3;
}
});
},
}
},
created() {
getTerritoryOneMenu().then(({ data }) => {
this.oneMenuList = data;
});
},
}
};
</script>
<style lang="scss" scoped>