Ver Fonte

版本控制问题修复

wolyshaw há 4 anos atrás
pai
commit
f140c6bdde
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/views/editionManager/editionList.vue

+ 1 - 1
src/views/editionManager/editionList.vue

@@ -229,7 +229,7 @@ export default {
         rows: this.rules.limit,
       }).then(res => {
         if (res.code == 200) {
-          this.tableList = res.data.rows.map(item => ({...item, downloadUrl: decode(item.downloadUrl)}));
+          this.tableList = res.data.rows.map(item => ({...item, downloadUrl: decode(item.downloadUrl || '')}));
           this.rules.total = res.data.total;
         }
       });