update 树节点修改,标准分解单样式调整

This commit is contained in:
赵霄
2023-09-21 15:29:16 +08:00
parent 02a9f8e792
commit 0396d2ac40
13 changed files with 482 additions and 358 deletions
@@ -0,0 +1,27 @@
<template>
<div class="split-content">
<standard-resolution-sheet></standard-resolution-sheet>
</div>
</template>
<script>
import '@assets/less/common.less'
import StandardResolutionSheet from '../../../components/StandardResolutionSheet.vue'
export default {
name: 'StandardSplitSheet',
components: { StandardResolutionSheet }
}
</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>