Просмотр исходного кода

:bug: create audiobook, post type error

zhanghe 6 лет назад
Родитель
Сommit
e4210a4438
1 измененных файлов с 2 добавлено и 2 удалено
  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,