From b7574057c93b649a669eec5a6c783f80a1912e5b Mon Sep 17 00:00:00 2001 From: TiaStars Date: Mon, 25 Mar 2024 14:41:11 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=BA=93=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/images/project/toLead.png | Bin 0 -> 1282 bytes src/assets/styles/index.scss | 1 + src/assets/styles/public.scss | 96 +++++++++ src/components/Breadcrumb/index.vue | 13 +- .../FixedHeader/components/MenuMain/index.vue | 11 +- src/views/components/Pagination/index.vue | 200 ++++++++++++++++++ src/views/project/index.vue | 180 +++++++++++++++- src/views/project/projectInfo/index.vue | 13 ++ 8 files changed, 507 insertions(+), 7 deletions(-) create mode 100644 src/assets/images/project/toLead.png create mode 100644 src/assets/styles/public.scss create mode 100644 src/views/components/Pagination/index.vue create mode 100644 src/views/project/projectInfo/index.vue diff --git a/src/assets/images/project/toLead.png b/src/assets/images/project/toLead.png new file mode 100644 index 0000000000000000000000000000000000000000..6c5ae172d58aaa45b100b69c3906133b9e6f4386 GIT binary patch literal 1282 zcmV+d1^xPoP)$y00001b5ch_0Itp) z=>Px(yh%hsRA@u(n|bI}MHI(BW@b@F36@3u5w=2-g0yJ=R76DVT55k}3oVwChFC#+(L&pNf1LYc9PahrH}~E5?!|ZheKTjy zXJ+o1bI!~gzg65zMcxHRDNffs;d z>OvA}#~$EDV6ERj1U?T~1soJPNZq>q1zZfQOAPaYwT-nMn!d8(q-&*527c8KKJXpD z{Xy%`fJMMpbz8a&dyWTY0H*}M&jTI^f!_tjcnv=W&PrycA;2-!n0XyXNJJP zyA?jzYc$7fi=LmZj##ATkO&xF{RL!*4Z}5GhVld{g+SyluAR-ySu0x zY5=;Q3ip~@)oRgza>EJ!C&BB7Iq12TIz6)4TfK)4~a0N<)_XXzwas zjW8?=SOL$qR=tc+8^5KGum>$!tE<}rMO(XKtOC-2AGHaVV~dsO6;6BElNj+BFc zAg832eWeMcW@Dj;X+F>6mS_HJh41GY1Y7v&q0gkaSsqjcfyI%qD*dz)dq)nlSGVKL z@0=PaOMP6Lv^mlu9G!`JcM&5Gx~%55n2r_n$$UPXjCHoFM2;>2D~G3`Uk_HgElOrC zw5+VpmbAYB=rw%aWmO)CW_5U8ql$l*4XTVN{Oy;j{?($t66kXXA8J?0nEc5@S=Q@z s<;s)124N9O5Rr-CjbBd07*qoM6N<$g4U8@F#rGn literal 0 HcmV?d00001 diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index d60ff1f..0a9cd7a 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -4,6 +4,7 @@ @import "./element-ui.scss"; @import "./sidebar.scss"; @import "./btn.scss"; +@import "./public.scss"; body { height: 100%; diff --git a/src/assets/styles/public.scss b/src/assets/styles/public.scss new file mode 100644 index 0000000..aa41360 --- /dev/null +++ b/src/assets/styles/public.scss @@ -0,0 +1,96 @@ +.L-public-main { + padding: 6px 6px 39px 6px; + width: 100%; + height: 100%; + .L-main { + width: 100%; + height: 100%; + padding: 24px 24px 43px 24px; + background-color: #fff; + header { + margin-bottom: 25px; + .import-btn { + padding: 1px 5px; + span { + display: flex; + align-items: center; + .btn-img { + width: 15px; + margin: 5px; + } + } + } + } + .el-table { + margin-bottom: 25px; + th { + font-family: PingFang-SC, PingFang-SC; + font-weight: bold; + font-size: 14px; + color: #000000; + } + td { + font-family: PingFang-SC, PingFang-SC; + font-weight: 500; + font-size: 14px; + color: #666666; + } + .evenNumber-row { + background-color: #F6F9FD; + } + .table-status { + p { + padding: 0; + margin: 0; + display: flex; + align-items: center; + span { + &:nth-of-type(1) { + width: 6px; + height: 6px; + border-radius: 50%; + margin-right: 10px; + } + } + } + .statusisOne { + span { + &:nth-of-type(1) { + background-color: #24D3A9; + } + &:nth-of-type(2) { + color: #24D3A9; + } + } + } + .statusisTwo { + span { + &:nth-of-type(1) { + background-color: #134EE6; + } + &:nth-of-type(2) { + color: #134EE6; + } + } + } + } + .table-operation { + span { + cursor: pointer; + &:nth-of-type(1) { + color: #192A92; + margin-right: 15px; + } + &:nth-of-type(2) { + color: #C51717; + } + } + } + } + .el-pagination { + .btn-prev,.btn-next { + padding: 0 13px; + } + } + } +} \ No newline at end of file diff --git a/src/components/Breadcrumb/index.vue b/src/components/Breadcrumb/index.vue index a35513f..948cf1f 100644 --- a/src/components/Breadcrumb/index.vue +++ b/src/components/Breadcrumb/index.vue @@ -1,3 +1,11 @@ +