diff --git a/web/src/mixins/infoList.js b/web/src/mixins/infoList.js index b57e3a09..ff1b219f 100644 --- a/web/src/mixins/infoList.js +++ b/web/src/mixins/infoList.js @@ -44,14 +44,18 @@ export default { this.page = val this.getTableData() }, - async getTableData(page = this.page, pageSize = this.pageSize) { - const table = await this.listApi({ page, pageSize, ...this.searchInfo }) + // @params beforeFunc function 请求发起前执行的函数 默认为空函数 + // @params afterFunc function 请求完成后执行的函数 默认为空函数 + async getTableData(beforeFunc = () => {}, afterFunc = () => {}) { + beforeFunc() + const table = await this.listApi({ page: this.page, pageSize: this.pageSize, ...this.searchInfo }) if (table.code === 0) { this.tableData = table.data.list this.total = table.data.total this.page = table.data.page this.pageSize = table.data.pageSize } + afterFunc() } } } diff --git a/web/src/view/example/upload/upload.vue b/web/src/view/example/upload/upload.vue index 5aa89bca..377e8c72 100644 --- a/web/src/view/example/upload/upload.vue +++ b/web/src/view/example/upload/upload.vue @@ -163,7 +163,11 @@ export default { this.fullscreenLoading = false }, downloadFile(row) { - downloadImage(row.url, row.name) + if (row.url.indexOf('http://') > -1 || row.url.indexOf('https://') > -1) { + downloadImage(row.url, row.name) + } else { + downloadImage(this.path + row.url, row.name) + } } } }