mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 03:46:44 +08:00
提交
This commit is contained in:
@@ -227,6 +227,7 @@ export default {
|
||||
// }
|
||||
},
|
||||
saveNote() {
|
||||
let that = this;
|
||||
if (this.mynoteData.content == '') {
|
||||
this.$message({ type: 'info', message: '您还没有书写笔记!', offset: 50 });
|
||||
return;
|
||||
@@ -240,8 +241,8 @@ export default {
|
||||
this.inAnimation = true;
|
||||
this.isEdit = false;
|
||||
setTimeout(() => {
|
||||
this.getMyNote();
|
||||
this.mynoteData = {
|
||||
that.getMyNote();
|
||||
that.mynoteData = {
|
||||
type: 1, //我发布的是1 我导入的是2
|
||||
content: '',
|
||||
playTime: '',
|
||||
@@ -262,12 +263,12 @@ export default {
|
||||
if(this.mynoteData.openType != 9){
|
||||
return
|
||||
}
|
||||
setTimeout(() => {
|
||||
setTimeout(() => {
|
||||
localStorage.setItem("NOTE_TEXT", '');
|
||||
// clearInterval(this.autoSave);
|
||||
this.getMyNote();
|
||||
this.notetabType(2);
|
||||
this.mynoteData = {
|
||||
that.getMyNote();
|
||||
that.notetabType(2);
|
||||
that.mynoteData = {
|
||||
type: 1, //我发布的是1 我导入的是2
|
||||
content: '',
|
||||
playTime: '',
|
||||
|
||||
Reference in New Issue
Block a user