bruce 5 年 前
コミット
0ae89982d7
2 ファイル変更3 行追加2 行削除
  1. 2 1
      components/multi-uploader.vue
  2. 1 1
      components/works/editor.vue

+ 2 - 1
components/multi-uploader.vue

@@ -52,7 +52,8 @@
       },
       handleSuccess(response, file, fileList) {
         console.log(response, file, fileList);
-        this.handleChange(fileList);
+        fileList = [];
+        // this.handleChange(fileList);
       },
 
       handleChange(fileList) {

+ 1 - 1
components/works/editor.vue

@@ -2,7 +2,7 @@
   <div class="editor">
     <!--作品名称-->
     <div class="app__dp_f app__f_r app__alig_c">
-      <h5 class="app__f_s_0"><span class="app__fc_r">*</span>作品名称5</h5>
+      <h5 class="app__f_s_0"><span class="app__fc_r">*</span>作品名称</h5>
       <el-input type="textarea" :rows="1" resize="none" show-word-limit v-model="workName" class="app__ml_20" placeholder="50字符以内,不能包含&*\#等特殊字符"
                 :maxlength="50" @blur="workNameBlur"/>
     </div>