@@ -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;
}
});