Sfoglia il codice sorgente

修复Editor组件无法对响应式更新null值问题

RuoYi 5 anni fa
parent
commit
293b855866
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      ruoyi-ui/src/components/Editor/index.vue

+ 2 - 2
ruoyi-ui/src/components/Editor/index.vue

@@ -71,9 +71,9 @@ export default {
71
     value: {
71
     value: {
72
       handler(val) {
72
       handler(val) {
73
         if (val !== this.currentValue) {
73
         if (val !== this.currentValue) {
74
-          this.currentValue = val;
74
+          this.currentValue = val === null ? "" : val;
75
           if (this.Quill) {
75
           if (this.Quill) {
76
-            this.Quill.pasteHTML(this.value);
76
+            this.Quill.pasteHTML(this.currentValue);
77
           }
77
           }
78
         }
78
         }
79
       },
79
       },