mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
no msg
This commit is contained in:
parent
7367a769b1
commit
33bd39859d
@ -6,14 +6,14 @@
|
||||
ref="input"
|
||||
v-model="content"
|
||||
:disabled="isLoad"
|
||||
@on-keyup="onKeyup"
|
||||
@on-keydown="onKeydown"
|
||||
@on-blur="onBlur"/>
|
||||
<Input
|
||||
v-else
|
||||
ref="input"
|
||||
v-model="content"
|
||||
:disabled="isLoad"
|
||||
@on-keyup="onKeyup"
|
||||
@on-keydown="onKeydown"
|
||||
@on-blur="onBlur"/>
|
||||
<div v-if="isLoad" class="quick-loading"><Loading/></div>
|
||||
</div>
|
||||
@ -89,10 +89,12 @@ export default {
|
||||
})
|
||||
},
|
||||
|
||||
onKeyup(e) {
|
||||
onKeydown(e) {
|
||||
if (e.keyCode === 13) {
|
||||
this.onEnter();
|
||||
} else if (e.keyCode === 27) {
|
||||
e.preventDefault()
|
||||
e.stopPropagation()
|
||||
this.isEdit = false;
|
||||
this.isLoad = false;
|
||||
}
|
||||
|
||||
@ -88,7 +88,9 @@ export default {
|
||||
return {
|
||||
loadIng: 0,
|
||||
|
||||
keys: {},
|
||||
keys: {
|
||||
identity: 'nodisable'
|
||||
},
|
||||
|
||||
columns: [],
|
||||
list: [],
|
||||
@ -133,7 +135,7 @@ export default {
|
||||
if (email_verity) {
|
||||
arr.push(h('Icon', {
|
||||
props: {
|
||||
type: 'md-checkmark'
|
||||
type: 'md-mail'
|
||||
}
|
||||
}))
|
||||
}
|
||||
|
||||
@ -50,6 +50,7 @@
|
||||
display: block;
|
||||
> li {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -37,7 +37,8 @@
|
||||
|
||||
.ivu-icon {
|
||||
color: $primary-color;
|
||||
margin-left: 4px;
|
||||
margin-left: 6px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.ivu-tag {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user