Browse Source

warning清理

pixel 5 years ago
parent
commit
0ed01877e0

+ 41 - 39
QMPlusVuePage/src/view/example/rte/rte.vue

@@ -1,48 +1,50 @@
 <template>
-    <div class="edit_container">
-        <quill-editor
-                v-model="content"
-                ref="myQuillEditor"
-                :options="editorOption"
-                @blur="onEditorBlur($event)" @focus="onEditorFocus($event)"
-                @change="onEditorChange($event)">
-        </quill-editor>
-        <button v-on:click="saveHtml">保存</button>
-    </div>
+  <div class="edit_container">
+    <quill-editor
+      :options="editorOption"
+      @blur="onEditorBlur($event)"
+      @change="onEditorChange($event)"
+      @focus="onEditorFocus($event)"
+      ref="myQuillEditor"
+      v-model="content"
+    ></quill-editor>
+    <button v-on:click="saveHtml">保存</button>
+  </div>
 </template>
 
 <script>
-    export default {
-        name: 'App',
-        data(){
-            return {
-                content: `<p>hello world</p>`,
-                editorOption: {}
-            }
-        },computed: {
-            editor() {
-                return this.$refs.myQuillEditor.quill;
-            },
-        },methods: {
-            onEditorReady(editor) { // 准备编辑器
-            },
-            onEditorBlur(){}, // 失去焦点事件
-            onEditorFocus(){}, // 获得焦点事件
-            onEditorChange(){}, // 内容改变事件
-            saveHtml:function(event){
-                alert(this.content);
-            }
-        }
+export default {
+  name: 'App',
+  data() {
+    return {
+      content: `<p>hello world</p>`,
+      editorOption: {}
     }
+  },
+  computed: {
+    editor() {
+      return this.$refs.myQuillEditor.quill
+    }
+  },
+  methods: {
+    // onEditorReady(editor) { // 准备编辑器
+
+    // },
+    onEditorBlur() {}, // 失去焦点事件
+    onEditorFocus() {}, // 获得焦点事件
+    onEditorChange() {}, // 内容改变事件
+    saveHtml() {} // 保存方法
+  }
+}
 </script>
 
 <style>
-    #app {
-        font-family: 'Avenir', Helvetica, Arial, sans-serif;
-        -webkit-font-smoothing: antialiased;
-        -moz-osx-font-smoothing: grayscale;
-        text-align: center;
-        color: #2c3e50;
-        margin-top: 60px;
-    }
+#app {
+  font-family: 'Avenir', Helvetica, Arial, sans-serif;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+  text-align: center;
+  color: #2c3e50;
+  margin-top: 60px;
+}
 </style>

+ 5 - 4
QMPlusVuePage/src/view/example/upload/upload.vue

@@ -91,15 +91,16 @@ export default {
       }
       return (isPng || isJPG) && isLt2M
     },
-    uploadSuccess(res, file) {
-      console.log(res, file)
+    uploadSuccess(res) {
       this.$message({
         type: 'success',
         message: '上传成功'
       })
-      this.getTableData()
+      if(res.success){
+        this.getTableData()
+      }
     },
-    uploadError(err) {
+    uploadError() {
       this.$message({
         type: 'error',
         message: '上传失败'