35 lines
769 B
Vue
35 lines
769 B
Vue
<template>
|
|
<div class="split-content">
|
|
<standard-resolution-sheet ref="resolutionSheet" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import '@assets/less/common.less'
|
|
import StandardResolutionSheet from '../../../components/StandardResolutionSheet.vue'
|
|
|
|
export default {
|
|
name: 'StandardSplitSheet',
|
|
components: { StandardResolutionSheet },
|
|
mounted () {
|
|
this.$nextTick(() => {
|
|
this.$refs.resolutionSheet.queryParams = { id: this.$route.query.id }
|
|
this.$refs.resolutionSheet.initClauseFieldList()
|
|
this.$refs.resolutionSheet.initDetailInfo()
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.split-content {
|
|
height: 100vh;
|
|
padding: 20px 0 20px 20px;
|
|
background-color: #eff1f4;
|
|
}
|
|
|
|
/deep/ .clause-label-change {
|
|
border-radius: 0;
|
|
}
|
|
</style>
|