From 348fd50147f44c251162713741dbad9d600f91c8 Mon Sep 17 00:00:00 2001 From: miaojiale <1123971748@qq.com> Date: Wed, 7 Dec 2022 17:11:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=8F=B3=E4=BE=A7=E5=88=97?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FormComponents/CustomForm/index.vue | 1 + .../audit-detail/components/screenReview.vue | 47 ++++++++++++++++++- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/src/components/FormComponents/CustomForm/index.vue b/src/components/FormComponents/CustomForm/index.vue index ef4b171..d3cff3b 100644 --- a/src/components/FormComponents/CustomForm/index.vue +++ b/src/components/FormComponents/CustomForm/index.vue @@ -380,6 +380,7 @@ export default { padding-bottom: 0px; } .el-collapse-item__header { + border-radius: 4px; background: #fafafa; padding-left: 20px; border: 1px solid #e5e5e5; diff --git a/src/views/audit-detail/components/screenReview.vue b/src/views/audit-detail/components/screenReview.vue index 1c6183b..a50964f 100644 --- a/src/views/audit-detail/components/screenReview.vue +++ b/src/views/audit-detail/components/screenReview.vue @@ -37,7 +37,15 @@ class="transition-box" :class="{ hidden: !asideShow }" > -
+
+ +
@@ -62,6 +70,18 @@ export default { is_continue_follow: "1", }, asideShow: true, + screenList: [ + { + time: "2020-12-12 11:11:11", + code: "UK102", + name: "修改第一次随访计划", + }, + ], + } + }, + provide() { + return { + showIndex: true, } }, computed: { @@ -152,4 +172,29 @@ export default { .md-20 { margin-bottom: 20px; } +.el-aside { + padding: 20px 0 38.5px; + .side-content { + width: 100%; + height: 100%; + border: 1px solid #ccc; + border-radius: 4px; + .list { + li { + padding: 20px 30px; + border-bottom: 1px solid #ccc; + cursor: pointer; + .time { + font-size: 14px; + margin-bottom: 8px; + font-family: AlibabaPuHuiTiR; + text-align: left; + &:first-child { + color: #4e68ff; + } + } + } + } + } +} -- 2.22.0