mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-24 10:58:12 +00:00
no message
This commit is contained in:
parent
dee12941c0
commit
d0bc85346e
@ -451,6 +451,9 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
dialogInputCache() {
|
dialogInputCache() {
|
||||||
|
if (this.isFocus) {
|
||||||
|
return
|
||||||
|
}
|
||||||
this.$emit('input', this.getInputCache())
|
this.$emit('input', this.getInputCache())
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -669,13 +672,13 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
getInputCache() {
|
getInputCache() {
|
||||||
const key = this.dialogId || this.taskId;
|
const key = this.dialogId || `t_${this.taskId}`;
|
||||||
const item = this.dialogInputCache.find(item => item.key == key);
|
const item = this.dialogInputCache.find(item => item.key == key);
|
||||||
return item ? item.cache : '';
|
return item ? item.cache : '';
|
||||||
},
|
},
|
||||||
|
|
||||||
setInputCache(cache) {
|
setInputCache(cache) {
|
||||||
const key = this.dialogId || this.taskId;
|
const key = this.dialogId || `t_${this.taskId}`;
|
||||||
const index = this.dialogInputCache.findIndex(item => item.key == key);
|
const index = this.dialogInputCache.findIndex(item => item.key == key);
|
||||||
const data = {key, cache}
|
const data = {key, cache}
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
|
|||||||
@ -324,7 +324,7 @@ export default {
|
|||||||
operateHasText: false,
|
operateHasText: false,
|
||||||
operateStyles: {},
|
operateStyles: {},
|
||||||
operateItem: {},
|
operateItem: {},
|
||||||
operateEmojis: ['👌', '🤝', '🥳', '❤️', '👍', '👎', '🥰', '🥶', '✅', '❌', '❓'],
|
operateEmojis: ['👌', '🤝', '🎉', '❤️', '👍', '🥰', '🥳️', '✅', '❌', '⭕️', '❓', '🚀', '👀'],
|
||||||
|
|
||||||
recordState: '',
|
recordState: '',
|
||||||
wrapperStart: {},
|
wrapperStart: {},
|
||||||
|
|||||||
@ -165,6 +165,10 @@
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mention {
|
||||||
|
-webkit-user-select: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1069,7 +1069,7 @@
|
|||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
font-size: 24px;
|
font-size: 22px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
@ -1219,4 +1219,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dialog-wrapper-operate {
|
||||||
|
.operate-emoji {
|
||||||
|
> li {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user