握手流程布局

This commit is contained in:
qq787203167
2022-04-22 15:25:17 +08:00
parent f045b83232
commit 9379c958a7
8 changed files with 557 additions and 17 deletions
@@ -7,16 +7,21 @@
@terminationProcess="terminationProcess"
@submit="submit"
/>
<div class="content">
<projectInformation
:projectInformationList="projectInformationList"
:url="url"
:projectInformationId="'1517332232949133313'"
/>
<standardContent
:standardContentList="standardContentList"
:url="url"
/>
<div class="detail-box">
<div class="detail-content" style="height: 100%">
<projectInformation
:projectInformationList="projectInformationList"
:url="url"
:projectInformationId="'1517332232949133313'"
/>
<standardContent
:standardContentList="standardContentList"
:url="url"
/>
<standardContentList :url="url"/>
<examineInformation :url="url"/>
<circulationHistory :url="url"/>
</div>
</div>
</div>
</template>
@@ -25,13 +30,19 @@
import headerProcess from '../../components/headerProcess'
import projectInformation from '../../components/projectInformation'
import standardContent from '../../components/standardContent'
import standardContentList from '../../components/standardContentList'
import examineInformation from '../../components/examineInformation'
import circulationHistory from '../../components/circulationHistory'
export default {
name: 'handshakeProcess',
components: {
headerProcess,
projectInformation,
standardContent
standardContent,
standardContentList,
examineInformation,
circulationHistory
},
data() {
return {
@@ -138,7 +149,10 @@
</script>
<style scoped>
.content {
padding-top: 60px;
.detail-box {
padding: 67px 0 0 0;
background: #ffffff;
height: 100%;
overflow: auto;
}
</style>