mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-18 03:33:24 +00:00
no message
This commit is contained in:
parent
8e2a649d57
commit
05df135229
@ -72,7 +72,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="project-subbox clearfix">
|
<div class="project-subbox clearfix">
|
||||||
<div class="project-subtitle">{{projectData.desc}}</div>
|
<div class="project-subtitle" @click="showDesc">{{projectData.desc}}</div>
|
||||||
<div class="project-switch">
|
<div class="project-switch">
|
||||||
<div v-if="completedCount > 0" class="project-checkbox">
|
<div v-if="completedCount > 0" class="project-checkbox">
|
||||||
<Checkbox :value="projectData.cacheParameter.completedTask" @on-change="toggleCompleted">{{$L('显示已完成')}}</Checkbox>
|
<Checkbox :value="projectData.cacheParameter.completedTask" @on-change="toggleCompleted">{{$L('显示已完成')}}</Checkbox>
|
||||||
@ -856,6 +856,16 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
showDesc() {
|
||||||
|
if (this.isDesktop) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$A.modalInfo({
|
||||||
|
title: '项目描述',
|
||||||
|
content: this.projectData.desc
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
searchFocus() {
|
searchFocus() {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.searchInput.focus({
|
this.$refs.searchInput.focus({
|
||||||
|
|||||||
@ -254,7 +254,7 @@
|
|||||||
> li {
|
> li {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
width: 260px;
|
width: 300px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -1042,6 +1042,12 @@
|
|||||||
display: block;
|
display: block;
|
||||||
.project-subtitle {
|
.project-subtitle {
|
||||||
margin-bottom: 6px;
|
margin-bottom: 6px;
|
||||||
|
word-break: break-all;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
.project-switch {
|
.project-switch {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
|||||||
@ -22,6 +22,7 @@
|
|||||||
.page-project {
|
.page-project {
|
||||||
.project-panel {
|
.project-panel {
|
||||||
height: auto;
|
height: auto;
|
||||||
|
min-height: 100%;
|
||||||
&.gantt {
|
&.gantt {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user