Sfoglia il codice sorgente

:bug: create audiobook, post type error

zhanghe 6 anni fa
parent
commit
e4210a4438
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/routes/Resource/AudioBook/AudioBookCreate.js

+ 2 - 2
src/routes/Resource/AudioBook/AudioBookCreate.js

@@ -69,8 +69,8 @@ export default class AudioBookCreatePage extends PureComponent {
         const { audioPath, audioFormat, fileList, ...params } = values;
         // 1.提取图片信息
         let newImg = {};
-        if (Array.isArray(fileList) && fileList.length) {
-          const { path, type, size, url } = fileList[0];
+        if (Array.isArray(this.state.fileList) && this.state.fileList.length) {
+          const { path, type, size, url } = this.state.fileList[0];
           newImg = {
             ...img,
             url,