|
@@ -91,7 +91,7 @@
|
|
|
@change="handleTableChange">
|
|
|
|
|
|
<template slot="fileName" slot-scope="text, record">
|
|
|
- <a-button type="link" @click="record.exportStatus==='0'?false:download(record.url,record.name)">
|
|
|
+ <a-button type="link" @click="record.exportStatus==='1'?download(record.url,record.name):showMessage(record.exportStatus)">
|
|
|
{{ record.name }}
|
|
|
</a-button>
|
|
|
</template>
|
|
@@ -116,7 +116,7 @@
|
|
|
</template>
|
|
|
|
|
|
<span slot="action" slot-scope="text, record">
|
|
|
- <a-button type="link" @click="record.exportStatus==='0'?false:download(record.url,record.name)">
|
|
|
+ <a-button type="link" @click="record.exportStatus==='1'?download(record.url,record.name):showMessage(record.exportStatus)">
|
|
|
下载
|
|
|
</a-button>
|
|
|
<!-- <a @click="handleEdit(record)">编辑</a>-->
|
|
@@ -269,7 +269,14 @@ export default {
|
|
|
this.searchQuery();
|
|
|
})
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ showMessage(exportStatus){
|
|
|
+ if ('0'=== exportStatus) {
|
|
|
+ this.$message.warning("未完成导出,请完成后重试")
|
|
|
+ } else if ('2'=== exportStatus) {
|
|
|
+ this.$message.error("导出错误,无法下载")
|
|
|
+ }
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|