no message

This commit is contained in:
kuaifan 2022-05-30 17:06:39 +08:00
parent dea04429de
commit afff590fa5
4 changed files with 57 additions and 21 deletions

View File

@ -22,6 +22,7 @@
v-for="(item, key) in projectLists" v-for="(item, key) in projectLists"
:key="key" :key="key"
:data-id="item.id" :data-id="item.id"
:class="{operate: item.id == operateItem.id && operateVisible}"
v-longpress="handleLongpress" v-longpress="handleLongpress"
@click="toggleRoute('project', {projectId: item.id})"> @click="toggleRoute('project', {projectId: item.id})">
<div class="project-item"> <div class="project-item">
@ -147,8 +148,10 @@ export default {
}, },
toggleRoute(path, params) { toggleRoute(path, params) {
let location = {name: 'manage-' + path, params: params || {}}; if (this.operateVisible) {
this.goForward(location); return
}
this.goForward({name: 'manage-' + path, params: params || {}});
}, },
modalPercent(item) { modalPercent(item) {

View File

@ -56,10 +56,11 @@
background-color: #f8f8f8; background-color: #f8f8f8;
user-select: none; user-select: none;
> li { > li {
padding: 16px; padding: 14px;
margin: 16px; margin: 16px;
border-radius: 12px; border-radius: 12px;
background-color: #ffffff; background-color: #ffffff;
border: 2px solid transparent;
list-style: none; list-style: none;
&.nothing, &.nothing,
&.loading { &.loading {
@ -80,6 +81,9 @@
margin: 1px; margin: 1px;
} }
} }
&.operate {
border-color: $primary-color;
}
.project-item { .project-item {
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -210,6 +210,23 @@
.calendar-box { .calendar-box {
padding: 0 24px 5px; padding: 0 24px 5px;
user-select: none; user-select: none;
.calendar-wrapper {
.tui-full-calendar-popup {
font-weight: normal;
}
.tui-full-calendar-section-button {
> button {
.tui-full-calendar-icon {
width: 14px;
height: 14px;
background-size: 14px;
}
.tui-full-calendar-content {
font-size: 14px;
}
}
}
}
} }
} }
} }

View File

@ -1,42 +1,54 @@
.scrollbar-overlay { .scrollbar-overlay {
overflow-y: auto; overflow-y: auto;
overflow-y: overlay; overflow-y: overlay;
-webkit-overflow-scrolling: touch;
/* 滚动条美化 */ /* 滚动条美化 */
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 10px; width: 12px;
height: 10px; height: 12px;
} }
/*滚动条滑块隐藏*/ /*滚动条滑块隐藏*/
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
border-radius: 10px; border-radius: 12px;
background: rgba(0, 0, 0, 0); background: rgba(0, 0, 0, 0);
} }
/*按下滚动条,颜色加深*/ /*按下滚动条,颜色加深*/
&::-webkit-scrollbar-thumb:active { &::-webkit-scrollbar-thumb:active {
border-radius: 10px; border-radius: 12px;
background: rgba(0, 0, 0, .5); background: rgba(0, 0, 0, .5);
} }
/*鼠标浮到容器上,让该容器的滚动条滑块显示*/ /*滚动条轨道*/
&:hover::-webkit-scrollbar-thumb { &::-webkit-scrollbar-track {
border-radius: 12px;
background: rgba(0, 0, 0, 0);
}
/*鼠标浮到容器上*/
&:hover {
/*让该容器的滚动条滑块显示*/
&::-webkit-scrollbar-thumb {
border: 3px solid transparent;
background: rgba(0, 0, 0, .2);
background-clip: content-box;
}
/*让该容器的滚动条滑块显示*/
&::-webkit-scrollbar-thumb:hover {
border: 2px solid transparent; border: 2px solid transparent;
background: rgba(0, 0, 0, .2); background: rgba(0, 0, 0, .2);
background-clip: content-box; background-clip: content-box;
} }
/*鼠标浮到容器上,让该容器的滚动条滑块显示*/ /*按下滚动条,颜色加深*/
&:hover::-webkit-scrollbar-thumb:hover { &::-webkit-scrollbar-thumb:active {
border-top-width: 0; border: 2px solid transparent;
border-bottom-width: 0; background: rgba(0, 0, 0, .5);
background-clip: content-box;
} }
/*滚动条轨道*/
&::-webkit-scrollbar-track {
border-radius: 10px;
background: rgba(0, 0, 0, 0);
} }
} }