diff --git a/CHANGELOG.md b/CHANGELOG.md index 928d277..9fa46b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ --|--|-- - | calender格式及细节调整 | [db9602b](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/db9602b) - | 交付物相关细节调整 | [87ae00d](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/87ae00d) + - | 细节调整 | [ebf678f](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/ebf678f) - | 细节调整 | [759ef52](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/759ef52) - | 细节调整 | [bdd5f87](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/bdd5f87) diff --git a/common/styles/theme/default.scss b/common/styles/theme/default.scss index bc7e4d8..88c0ad3 100644 --- a/common/styles/theme/default.scss +++ b/common/styles/theme/default.scss @@ -4,7 +4,7 @@ .u-card { font-size: 16px !important; background-color: #f3f3f3 !important; - + .mask { position: absolute; top: 0; @@ -13,47 +13,47 @@ height: 100%; z-index: 100; } - .box-modal-border{ - border-top:1px solid #D1D5DB; - } - .delete-modal-border{ - border-right:1px solid #D1D5DB ; - } + .box-modal-border { + border-top: 1px solid #d1d5db; + } + .delete-modal-border { + border-right: 1px solid #d1d5db; + } + } + .warp { + display: flex; + align-items: center; + justify-content: center; + height: 100%; + } + .rect { + width: 80%; + height: 375rpx; + background-color: #fff; + } + .link-box { + :deep(.input) { + .u-input__input { + color: #60a5fa; + } + } + } + // 审核插件 + .common-list { + height: 12.5rem; + overflow-y: scroll; + view { + border-bottom: 1px solid #e5e7eb; + } + } + .rect2 { + width: 80%; + height: 1000rpx; + background-color: #fff; + } + .rect3 { + width: 80%; + height: 895rpx; + background-color: #fff; } - .warp { - display: flex; - align-items: center; - justify-content: center; - height: 100%; - } - .rect { - width: 80%; - height: 375rpx; - background-color: #fff; - } - .linkBox{ - ::v-deep .input{ - .u-input__input{ - color: #60A5FA; - } - } - } - // 审核插件 - .common-list{ - height: 12.5rem; - overflow-y: scroll; - view{ - border-bottom: 1px solid #E5E7EB; - } - } - .rect2{ - width: 80%; - height: 1000rpx; - background-color: #fff; - } - .rect3{ - width: 80%; - height: 895rpx; - background-color: #fff; - } } diff --git a/components/Reviewer/Reviewer.vue b/components/Reviewer/Reviewer.vue index 32f5e92..e681186 100644 --- a/components/Reviewer/Reviewer.vue +++ b/components/Reviewer/Reviewer.vue @@ -43,6 +43,7 @@ const checkers = computed(() => store.state.role.members); // 所有选中的审核人 const checkedCheckers = computed(() => checkers.value.filter(item => item.checked) || []); + // 折叠状态 显示的选中的检查人 // 没有任何检查人 显示项目经理下的成员作为检查人 const showCheckers = computed(() => { diff --git a/plugins/p-deliver-checker/p-deliver-checker.vue b/plugins/p-deliver-checker/p-deliver-checker.vue index 770c249..e02f74d 100644 --- a/plugins/p-deliver-checker/p-deliver-checker.vue +++ b/plugins/p-deliver-checker/p-deliver-checker.vue @@ -1,118 +1,125 @@