From fe84976a091af79dccbd3916ca92cb30036b3076 Mon Sep 17 00:00:00 2001 From: miaojiale <1123971748@qq.com> Date: Fri, 25 Nov 2022 17:28:40 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=8F=E8=AE=BF=E8=B0=83=E6=9F=A5=20?= =?UTF-8?q?=E9=9A=8F=E8=AE=BF=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CustomTable/index.vue | 3 + src/components/FormComponents/index.vue | 537 ++++++++++++++++-------- src/layouts/components/NavBar/index.vue | 2 + src/views/followupquery/index.vue | 124 ++++-- src/views/followupresearch/index.vue | 255 +++++++++++ 5 files changed, 704 insertions(+), 217 deletions(-) create mode 100644 src/views/followupresearch/index.vue diff --git a/src/components/CustomTable/index.vue b/src/components/CustomTable/index.vue index 1d614db..b6ed112 100644 --- a/src/components/CustomTable/index.vue +++ b/src/components/CustomTable/index.vue @@ -91,6 +91,9 @@ export default { flex: 1; } ::v-deep { + th .ivu-table-cell { + white-space: nowrap; + } .ivu-table-wrapper { border-color: #eff0f3; .ivu-table-header, diff --git a/src/components/FormComponents/index.vue b/src/components/FormComponents/index.vue index 9eb5b26..5cc4ab9 100644 --- a/src/components/FormComponents/index.vue +++ b/src/components/FormComponents/index.vue @@ -1,189 +1,382 @@ - - - - - - {{item.unit}} - - - - - - - - - - {{ item.value }} - {{ item.description }} - - - - - - - - - - - - - - - - - - - - - - - - - {{opt.label}} - - - - - - - - {{item.text?item.text:form[item.prop]}} - - - - - - - - - - - - - - - - {{btn.btnText}} - - - + + + + + + {{ + item.unit + }} + + + + + + + + + + {{ item.value }} + {{ item.description }} + + + + + + + + + + + + + + + + + + + + + + + + + {{ opt.label }} + + + + + + + + {{ item.text ? item.text : form[item.prop] }} + + + + + + + + + + + + + + {{ btn.btnText }} + + + + 待修改({{ btn.tobeModified }}) + + + + + + + + {{ btn.btnText }} + + + - - diff --git a/src/layouts/components/NavBar/index.vue b/src/layouts/components/NavBar/index.vue index e4e3d67..d90be16 100644 --- a/src/layouts/components/NavBar/index.vue +++ b/src/layouts/components/NavBar/index.vue @@ -205,6 +205,7 @@ export default { .community { width: 106px; height: 30px; + white-space: nowrap; background: rgba(255, 255, 255, 0.1); color: #fff; display: flex; @@ -218,6 +219,7 @@ export default { } } .user { + white-space: nowrap; margin-left: 40px; height: 30px; display: flex; diff --git a/src/views/followupquery/index.vue b/src/views/followupquery/index.vue index f009df0..263e5e9 100644 --- a/src/views/followupquery/index.vue +++ b/src/views/followupquery/index.vue @@ -1,7 +1,8 @@ - + + + @@ -160,46 +229,11 @@ export default { .screeningSearch { .top { width: 100%; - height: 72px; + // height: 72px; padding: 0 116px 0 44px; display: flex; justify-content: space-between; align-items: center; - border-bottom: 2px solid #f6f6f6; - .keyword { - display: flex; - align-items: center; - .btn { - width: 80px; - height: 32px; - background: #ffffff; - border-radius: 4px; - border: 1px solid #4e68ff; - font-size: 14px; - color: #4e68ff; - margin-left: 40px; - } - } - .tobeModified { - // width: 134px; - height: 32px; - background: #ffffff; - border-radius: 4px; - padding: 16px 8px; - border: 1px solid #d9d9d9; - display: flex; - align-items: center; - cursor: pointer; - .check { - font-size: 18px; - margin-right: 8px; - } - span { - font-size: 16px; - font-family: AlibabaPuHuiTiR; - color: #333333; - } - } } .bot { padding: 0 24px; diff --git a/src/views/followupresearch/index.vue b/src/views/followupresearch/index.vue new file mode 100644 index 0000000..73f89ed --- /dev/null +++ b/src/views/followupresearch/index.vue @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + -- 2.22.0