济菏高速业务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
605 B

1 year ago
<template>
<div class='InformationReleaseManagement'>
<AuditLists class="card" />
<AuditDetails class="card" />
1 year ago
</div>
</template>
<script>
import AuditDetails from "./Cards/AuditDetails/index.vue"
import AuditLists from "./Cards/AuditLists"
1 year ago
export default {
name: 'InformationReleaseManagement',
components: {
AuditLists,
AuditDetails
}
1 year ago
}
</script>
<style lang='scss' scoped>
.InformationReleaseManagement {
padding: 24px;
display: grid;
gap: 36px;
grid-template-columns: 0.42fr 1fr;
.card {
overflow: hidden;
width: 100%;
height: 100%;
}
}
1 year ago
</style>