From d46125203481c93368e008875199a2145bf524ea Mon Sep 17 00:00:00 2001 From: Min5203 <2318556978@qq.com> Date: Thu, 13 Jan 2022 15:06:42 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=8F=92=E4=BB=B6=E7=9A=84=E5=A1=AB?= =?UTF-8?q?=E5=86=99=E4=B8=8E=E6=8F=90=E4=BA=A4=EF=BC=8C=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=B8=8E=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +- common/styles/tailwind.scss | 72 +++++++++- common/styles/theme/default.scss | 24 +++- components/Globals/Globals.vue | 5 +- components/ModalBox/ModalBox.vue | 19 +++ components/Reviewer/Reviewer.vue | 91 ++++++++++++ pages.json | 11 +- pages/submitlist/submitlist.vue | 26 ++++ plugins/p-deliver/p-deliver.vue | 197 +++++++++++++++++++++++++- plugins/p-task-title/p-task-title.vue | 6 +- project.config.json | 69 +++++++++ 11 files changed, 508 insertions(+), 15 deletions(-) create mode 100644 components/ModalBox/ModalBox.vue create mode 100644 components/Reviewer/Reviewer.vue create mode 100644 pages/submitlist/submitlist.vue create mode 100644 project.config.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 749d313..783d6bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.0.0 (2022-01-10) +# 1.0.0 (2022-01-13) ### 🌟 新功能 范围|描述|commitId @@ -9,6 +9,7 @@ - | 日历页添加 | [1b46a91](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/1b46a91) - | 时间轴接口 | [a95d005](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/a95d005) - | 时间轴页面 | [e926b75](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/e926b75) + - | 时间轴展示 | [8b1b380](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/8b1b380) - | 使用uview完成api请求 | [1b3efd8](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/1b3efd8) - | 添加 timeline | [72dad2b](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/72dad2b) - | 项目操作面板 | [3beb05e](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/3beb05e) diff --git a/common/styles/tailwind.scss b/common/styles/tailwind.scss index 62fc09b..6f82085 100644 --- a/common/styles/tailwind.scss +++ b/common/styles/tailwind.scss @@ -2198,7 +2198,10 @@ .-ml-px { margin-left: -1px; } - + +.border-none{ + border-style: none; +} .box-border { box-sizing: border-box; } @@ -2215,7 +2218,12 @@ --tw-border-opacity: 1; border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - +.border{ + border-width: 1px; +} +.border-solid{ + border-style: solid; +} .block { display: block; } @@ -2684,7 +2692,12 @@ .overflow-hidden { overflow: hidden; } - +.visible{ + visibility: visible; +} +.invisible{ + visibility: hidden; +} .overflow-visible { overflow: visible; } @@ -4323,10 +4336,22 @@ .h-3 { height: 0.75rem; } + +.h5{ + height: 1.25rem; +} + +.h-10{ + height: 2.5rem; +} + .h-full { height: 100%; } +.leading-10{ + line-height: 2.5rem; +} .bg-gray-50 { --tw-bg-opacity: 1; background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); @@ -4355,7 +4380,10 @@ } .h-12 { - height: 3rem; + height: 3.15rem; +} +.h-8{ + height: 2.2rem; } .bg-white { --tw-bg-opacity: 1; @@ -4453,6 +4481,10 @@ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } +.rounded-md{ +border-radius: 0.375rem; +} + .shadow-md { --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); @@ -4482,3 +4514,35 @@ --tw-shadow: 0 0 #0000; box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } + +.bg-red-500{ + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +} +.bg-yellow-500{ + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} +.leading-12{ + line-height: 3.15rem; +} +.rounded-w-12{ + border-radius: 1.5rem; +} +.bg-opacity-100{ + --tw-bg-opacity: 1; +} +.bg-grey{ + background-color: rgba(0,0,0,0.5); +} +.rounded-md{ + border-radius: 0.375rem; +} +.border-t{ + border-top-width: 1px; +} +.border-gray-200{ + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + diff --git a/common/styles/theme/default.scss b/common/styles/theme/default.scss index 29733e9..23f0e02 100644 --- a/common/styles/theme/default.scss +++ b/common/styles/theme/default.scss @@ -1,8 +1,26 @@ // 默认主题文件 .theme-default { - background-color: #333; + background-color: #F3F3F3; .u-card { - font-size: 24px !important; - color: #0f0; + font-size: 16px !important; + background-color: #F3F3F3 !important; + .deliverHead{ + align-items: center; + } + .btns u-button{ + margin: 0 !important; + } + .active{ + background-color: #2979FF; + color: #FFFFFF; + } + .mask{ + position:absolute; + top: 0; + left:0; + width: 100%; + height: 100%; + z-index: 100; + } } } diff --git a/components/Globals/Globals.vue b/components/Globals/Globals.vue index e8d5f9c..faf4bac 100644 --- a/components/Globals/Globals.vue +++ b/components/Globals/Globals.vue @@ -11,11 +11,11 @@ >