mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
no message
This commit is contained in:
parent
a3c509da83
commit
84e3b22357
@ -145,10 +145,6 @@
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
editTitle: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
placeholder: {
|
||||
type: String,
|
||||
default: ''
|
||||
|
||||
@ -104,7 +104,7 @@ export default {
|
||||
mounted() {
|
||||
let parent = this.$parent.$el.parentNode;
|
||||
while (parent) {
|
||||
if (parent.classList.contains(".ivu-modal-wrap")) {
|
||||
if (parent.classList?.contains(".ivu-modal-wrap")) {
|
||||
this.listener = parent;
|
||||
parent.addEventListener("scroll", this.onTouchstart);
|
||||
break;
|
||||
|
||||
@ -324,7 +324,8 @@
|
||||
<ul class="item-content">
|
||||
<li>
|
||||
<div class="add-button" @click="onUploadClick(true)">
|
||||
<i class="taskfont"></i>{{$L('添加附件')}}
|
||||
<i class="taskfont"></i>
|
||||
<span>{{$L('添加附件')}}</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
@ -357,7 +358,8 @@
|
||||
@on-blur="addsubChackClose"
|
||||
@on-keydown="addsubKeydown"/>
|
||||
<div v-else class="add-button" @click="addsubOpen">
|
||||
<i class="taskfont"></i>{{$L('添加子任务')}}
|
||||
<i class="taskfont"></i>
|
||||
<span>{{$L('添加子任务')}}</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
@ -370,7 +372,7 @@
|
||||
@command="dropAdd">
|
||||
<div class="add-button">
|
||||
<i class="taskfont"></i>
|
||||
{{$L('添加')}}
|
||||
<span>{{$L('添加')}}</span>
|
||||
<em>{{menuText}}</em>
|
||||
</div>
|
||||
<EDropdownMenu slot="dropdown">
|
||||
|
||||
@ -457,7 +457,6 @@
|
||||
.el-dropdown {
|
||||
max-width: 100%;
|
||||
.add-button {
|
||||
white-space: normal;
|
||||
> em {
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
@ -484,11 +483,13 @@
|
||||
align-items: center;
|
||||
margin-top: 6px;
|
||||
height: 32px;
|
||||
white-space: nowrap;
|
||||
> i {
|
||||
font-size: 14px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
> span {
|
||||
white-space: nowrap;
|
||||
}
|
||||
> em {
|
||||
font-style: normal;
|
||||
padding-left: 4px;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user