Commit 8439cd9c authored by zhang's avatar zhang

fix: (检测内容/实施细则) 自适应屏幕样式

parent 45423423
......@@ -4,7 +4,7 @@
:visible.sync="dialogManger.dialogVisible"
width="60%"
>
<el-form class="form" :model="dialogManger" :inline="true">
<el-form class="form" :model="dialogManger">
<el-form-item class="title">
<span style="width: 500px">标准信息</span>
</el-form-item>
......@@ -151,7 +151,7 @@ export default {
</script>
<style lang="scss" scoped>
.form .title {
width: 600px;
width: 100%;
margin-right: 50px;
color: blue;
font-weight: bold;
......@@ -159,10 +159,10 @@ export default {
padding-left: 10px;
}
.form .input {
width: 250px;
width: 100%;
}
.form .textarea {
width: 630px;
width: 100%;
}
::v-deep .el-dialog__body {
......
......@@ -164,7 +164,7 @@
<!-- node:节点信息(由defaultProps定义) data: 当前节点包含的数据对象 -->
<span
slot-scope="{ node, data }"
style="display: flex; width: 1100px; justify-content: space-between"
style="display: flex; width: 100%; justify-content: space-between"
>
<div>
<span v-if="node.level == 1" class="el-tree-label">标准要求</span>
......@@ -681,6 +681,7 @@ export default {
}
::v-deep .el-tree-node__children {
// 子节点样式设置
width: 100%;
transition: all 0.5s;
}
::v-deep .el-tree-node__children .el-tree-node__content {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment