From 5c258e16ec4709dd3b8f037c62a4834367eb2331 Mon Sep 17 00:00:00 2001 From: TiaStars Date: Mon, 15 Jul 2024 09:00:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E5=BA=93=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E5=B8=B8=E7=94=A8=E8=81=94=E7=B3=BB=E4=BA=BA=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=A2=9E=E5=88=A0=E6=94=B9=E6=9F=A5=E3=80=81=E6=94=BF=E7=AD=96?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=BA=93=E7=9A=84=E6=94=BF=E7=AD=96=E7=AD=89?= =?UTF-8?q?=E7=BA=A7=E6=9B=B4=E6=8D=A2=E5=AD=97=E5=85=B8=E3=80=81=E9=A6=96?= =?UTF-8?q?=E9=A1=B5=E6=90=9C=E8=8D=A3=E8=AA=89=E6=90=9C=E8=AF=84=E5=AE=A1?= =?UTF-8?q?=E9=80=9A=E8=BF=87=E7=9A=84=E6=95=B0=E6=8D=AE=E3=80=81=E4=BC=81?= =?UTF-8?q?=E4=B8=9A=E8=A7=84=E6=A8=A1=E6=9B=BF=E6=8D=A2=E8=A7=84=E4=B8=8A?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E4=B8=9A=E3=80=81=E5=85=B6=E4=BB=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/assets/styles/public.scss | 16 +- .../enterInfo/components/tabOne/index.vue | 2 +- .../enterInfo/components/tabTwo/index.vue | 270 +++++++++++++++++- .../enterpriselibrary/enterInfo/index.vue | 2 +- src/views/enterpriselibrary/index.vue | 6 +- src/views/infoMaintain/index.vue | 3 +- src/views/policyDocument/index.vue | 20 +- .../projectInfo/components/tabOne/index.vue | 27 +- .../projectInfo/components/tabTwo/index.vue | 2 +- src/views/workbench/index.vue | 16 +- 11 files changed, 319 insertions(+), 47 deletions(-) diff --git a/package.json b/package.json index e9abd57..b481b6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ruoyi", - "version": "1.0.202407120913", + "version": "1.0.202407121624", "description": "金鸡湖现代服务业品牌管理系统", "author": "若依", "license": "MIT", diff --git a/src/assets/styles/public.scss b/src/assets/styles/public.scss index 9a08397..571f7b2 100644 --- a/src/assets/styles/public.scss +++ b/src/assets/styles/public.scss @@ -279,6 +279,18 @@ color: #1890FF; } } + .enter-contacts-list { + .el-row { + height: 80px; + } + .el-form-item { + margin-top: 20px; + margin-bottom: 28px; + .el-form-item__content { + width: 300px; + } + } + } .tabOneLabel,.tabOneContent { width: 220px; } @@ -982,9 +994,7 @@ display: flex; align-items: center; div { - &:first-child { - width: 200px; - } + margin-right: 60px; } } .info-content-content { diff --git a/src/views/enterpriselibrary/enterInfo/components/tabOne/index.vue b/src/views/enterpriselibrary/enterInfo/components/tabOne/index.vue index 65007d0..fdbf4d1 100644 --- a/src/views/enterpriselibrary/enterInfo/components/tabOne/index.vue +++ b/src/views/enterpriselibrary/enterInfo/components/tabOne/index.vue @@ -84,7 +84,7 @@ - {{ info.type == 1 ? "规上" : info.type == 2 ? "规下" : ""}} + {{ info.type == 1 ? "规上服务业" : info.type == 2 ? "其他" : ""}} {{ info.fddbrxm }} diff --git a/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue b/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue index 6a56b83..3d4229d 100644 --- a/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue +++ b/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue @@ -1,5 +1,5 @@