握手流程布局

虚拟清单细节处理
This commit is contained in:
qq787203167
2022-04-22 11:56:27 +08:00
parent ed9ec17a36
commit 2401015313
5 changed files with 422 additions and 31 deletions
@@ -1,21 +1,144 @@
<template>
<div>
<headerProcess
:title="'工程接口人确认符合性要求'"
/>
</div>
<div>
<headerProcess
:title="'工程接口人确认符合性要求'"
is-termination-process
is-submit
@terminationProcess="terminationProcess"
@submit="submit"
/>
<div class="content">
<projectInformation
:projectInformationList="projectInformationList"
:url="url"
:projectInformationId="'1517332232949133313'"
/>
<standardContent
:standardContentList="standardContentList"
:url="url"
/>
</div>
</div>
</template>
<script>
import headerProcess from '../../components/headerProcess'
import projectInformation from '../../components/projectInformation'
import standardContent from '../../components/standardContent'
export default {
name: 'handshakeProcess',
components:{
headerProcess
components: {
headerProcess,
projectInformation,
standardContent
},
data() {
return {
projectInformationList: [
{
title: this.$t('entryName'),
value: 'projectName'
},
{
title: this.$t('targetMarket'),
value: 'targetMarket_dictText'
},
{
title: this.$t('projectStatus'),
value: 'projectStatus_dictText'
},
{
title: this.$t('StudioEngineer'),
value: 'studioEngineerName'
},
{
title: this.$t('certifiedEngineer'),
value: 'certificationEngineerName'
},
{},
{
title: this.$t('DigitalPlatform'),
value: 'digitalPlatform_dictText'
},
{
title: this.$t('ModelPlatform'),
value: 'vehiclePlatform_dictText'
},
{},
{
title: this.$t('IPDInformation'),
value: 'ipdInfo'
},
{
title: this.$t('certificationProgram'),
value: 'attestationPlan'
},
{
title: this.$t('dehicleDevelopmentPlan'),
value: 'vehicleDevelopmentPlan'
}
],
standardContentList: [
{
title: this.$t('standard'),
value: 'serialNumber'
},
{
title: this.$t('title'),
value: 'title'
},
{
title: this.$t('subtitle'),
value: 'subtitle'
},
{
title: this.$t('areaOfResponsibility'),
value: 'dutyTerritory_dictText'
},
{
title: this.$t('implementationCategory'),
value: 'implementType_dictText'
},
{
title: this.$t('correspondingStandard'),
value: 'correspondingStandard'
},
{
title: this.$t('engineeringInterfacePerson'),
value: 'engineeringInterfacePersonName'
},
{
title: this.$t('regulatoryEngineer'),
value: 'regulationOwnerName'
},
{
title: this.$t('certifiedEngineer'),
value: 'homologationEngineerName'
},
{
title: this.$t('remarks'),
value: 'remark'
}
],
url: {
urlFrom: 'project/projectLibraryBase/queryById'
}
}
},
methods: {
terminationProcess() {
},
submit() {
}
}
}
</script>
<style scoped>
.content {
padding-top: 60px;
}
</style>