|
|
@@ -578,13 +578,15 @@ export default {
|
|
|
|
|
|
},
|
|
|
addNote(item){
|
|
|
- this.curNote = "";
|
|
|
+ this.curNote = item.note;
|
|
|
+ this.$refs.editor.html(this.curNote)
|
|
|
this.dialogTitle = "为"+'"'+item.label+'"添加批注信息'
|
|
|
this.dialogVisible = true;
|
|
|
},
|
|
|
saveNote(item){
|
|
|
// this.curItem = item;
|
|
|
this.curNote=this.$refs.editor.getEditor()
|
|
|
+ item.note = this.curNote;
|
|
|
this.dialogVisible = false;
|
|
|
},
|
|
|
handlePreview(){
|