瀏覽代碼

版本控制问题修复

wolyshaw 4 年之前
父節點
當前提交
f140c6bdde
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
         }
       });