add 标准拆解单(部分)

This commit is contained in:
赵霄
2023-09-08 18:04:32 +08:00
parent c7c1a9aa27
commit 3cd0745366
6 changed files with 222 additions and 49 deletions
@@ -0,0 +1,71 @@
<template>
<div class="sheet-box">
<!-- 标准目录-->
<div class="standard-catalogue part-common">
<div class="part-title">标准目录</div>
</div>
<!-- 标准内容-->
<div class="sheet-container part-ml part-common"></div>
<!-- 条文标签-->
<div class="clause-label part-ml part-common"></div>
<!-- 条文条文标签切换-->
<div class="clause-label-change part-ml part-common"></div>
</div>
</template>
<script>
export default {
name: 'StandardResolutionSheet'
}
</script>
<style scoped lang="less">
.sheet-box {
width: 100%;
height: 100%;
display: flex;
justify-content: space-between;
}
.part-ml {
margin-left: 16px;
}
.part-common {
border-radius: 8px;
background: #FFFFFF;
}
.standard-catalogue {
height: 100%;
width: 15%;
}
.sheet-container {
height: 100%;
flex: 1;
width: 0;
}
.clause-label {
width: 25%;
height: 100%;
}
.clause-label-change {
width: 6%;
height: 100%;
}
.part-title {
height: 56px;
background: rgba(213, 44, 38, 0.12);
border-radius: 8px 8px 0px 0px;
line-height: 56px;
padding: 0 24px;
font-size: 16px;
font-family: PingFang SC-Semibold, PingFang SC, sans-serif;
font-weight: 600;
color: #1D2129;
}
</style>
+3 -3
View File
@@ -94,6 +94,9 @@ export default {
.user-organ-wrap {
width: 100%;
position: relative;
display: flex;
align-items: center;
height: 39.98px;
.user-input {
resize: none;
@@ -102,10 +105,7 @@ export default {
}
.button-box {
height: 38px;
margin-left: 5px;
position: absolute;
top: 0;
}
}
</style>