From 25f52d67ab5c4804a86d9c764cfcdb61775461b3 Mon Sep 17 00:00:00 2001 From: wangqing <250543222@qq.com> Date: Thu, 26 Nov 2020 23:45:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/form/theme.vue | 164 ++++++++++++++++++++++++++++++++------- 1 file changed, 136 insertions(+), 28 deletions(-) diff --git a/src/views/form/theme.vue b/src/views/form/theme.vue index d4564dd..6d6e9e1 100644 --- a/src/views/form/theme.vue +++ b/src/views/form/theme.vue @@ -50,33 +50,99 @@ - + - +
- - - - - - 选项1 - 选项2 - - - 选项3 - - - - 选项1 - - - +

外观设置

+ + + 添加logo + + + + + + + + + logo设置 + + + + 上传Logo + + + + + + logo位置 + + + + 左对齐 + 居中 + 右对齐 + + + + + + 背景设置 + + + + + + + + + 按钮设置 + + + + + + + + + 显示标题 + + + + + + + + + 显示描述 + + + + + + + + + 显示序号 + + + + + +
@@ -93,6 +159,11 @@ export default { }, data() { return { + //外观设置 + showSettings: { + useLogo: false,//打开logo + showNumber: false//打开logo + }, projectFormKey: +new Date(), projectKey: '', styleList: [ @@ -199,8 +270,8 @@ export default { padding: 3px; color: #707070; font-size: 14px; - margin: 0 2px 4px 0; -//margin: 5px 9px; text-align: center; border: 1px solid #EAEAEA; + text-align: center; + border: 1px solid #EAEAEA; } .theme-title { @@ -267,11 +338,48 @@ export default { } .right-container { - width: 256px; - height: 600px; + width: 270px; + height: 78vh; line-height: 20px; text-align: center; + padding: 22px; box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 100); + background-color: white; +} + +.right-title { + color: rgba(16, 16, 16, 100); + font-size: 24px; + text-align: left; + font-family: SourceHanSansSC-regular; + margin: 0 0 30px 0; +} + +.right-container .option-line-view { + padding: 0px; + margin: 0px; + width: 280px; + height: 42px; + line-height: 20px; + border-radius: 5px; + text-align: center; + margin-bottom: 10px; + border: 1px solid rgba(187, 187, 187, 100); +} + +.right-container .option-line-title { + color: rgba(16, 16, 16, 100); + line-height: 40px; + font-size: 14px; + text-align: left; + font-family: SourceHanSansSC-regular +} + +.option-line-sub-title { + color: rgb(82, 81, 81); + line-height: 40px; + font-size: 13px; + text-align: left; }