parent
c45e532c20
commit
0054a5d6ea
|
@ -15,7 +15,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div id="editorsDiv">
|
||||||
<mavon-editor v-if="showEditor" @imgAdd="imgAdd" :default-open="'edit'" class="mavon-editor" :imageFilter="imageFilter"
|
<mavon-editor v-if="showEditor" @imgAdd="imgAdd" :default-open="'edit'" class="mavon-editor" :imageFilter="imageFilter"
|
||||||
:toolbars="richDataToolbars" @imgDel="imgDel" v-model="textarea" ref="md"/>
|
:toolbars="richDataToolbars" @imgDel="imgDel" v-model="textarea" ref="md"/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -113,10 +113,22 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/* inputLight() {
|
inputLight() {
|
||||||
this.$refs.md.focus();
|
let textAreaDom = this.$refs.md.getTextareaDom();
|
||||||
},*/
|
let editorDivDom = document.getElementById("editorsDiv");
|
||||||
|
if(editorDivDom){
|
||||||
|
editorDivDom.setAttribute("style","-webkit-box-shadow: 0 0 8px rgb(205,51,43);");
|
||||||
|
}
|
||||||
|
textAreaDom.focus();
|
||||||
|
},
|
||||||
|
resetInputLight(){
|
||||||
|
let editorDivDom = document.getElementById("editorsDiv");
|
||||||
|
if(editorDivDom){
|
||||||
|
editorDivDom.setAttribute("style","-webkit-box-shadow: 0 0 0px rgb(-1,0,0);");
|
||||||
|
}
|
||||||
|
},
|
||||||
refresh() {
|
refresh() {
|
||||||
|
this.resetInputLight();
|
||||||
this.$emit('getComments');
|
this.$emit('getComments');
|
||||||
},
|
},
|
||||||
//富文本框
|
//富文本框
|
||||||
|
@ -171,4 +183,7 @@ export default {
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
height: calc(100vh - 450px);
|
height: calc(100vh - 450px);
|
||||||
}
|
}
|
||||||
|
.editors-div{
|
||||||
|
-webkit-box-shadow: 0 0 8px rgb(-1,0,0);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -272,8 +272,8 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
/* this.$refs.reviewComment.inputLight();*/
|
this.$refs.reviewComment.inputLight();
|
||||||
this.$warning(this.$t('test_track.comment.description_is_null'));
|
// this.$warning(this.$t('test_track.comment.description_is_null'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$post('/test/review/case/edit', param, () => {
|
this.$post('/test/review/case/edit', param, () => {
|
||||||
|
|
Loading…
Reference in New Issue