济菏高速业务端

42 lines
706 B

1 year ago
<template>
1 year ago
<div class='info_publish'>
1 year ago
<AuditLists @click="onListClick" class="card" />
<AuditDetails ref="refDetail" 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
},
methods:{
onListClick(id){
this.$refs.refDetail.bind(id)
}
}
1 year ago
}
</script>
<style lang='scss' scoped>
1 year ago
.info_publish{
height: 100%;
padding: 24px;
display: grid;
1 year ago
gap: 30px;
grid-template-columns: 0.42fr 1fr;
.card {
overflow: hidden;
width: 100%;
height: 100%;
}
}
1 year ago
</style>