|
@@ -616,7 +616,7 @@
|
|
|
function handleDownload(record: Recordable) {
|
|
|
console.log('handleDownload', record, canDownload.value);
|
|
|
canDownload.value = true;
|
|
|
- let isObj = tableType.value == 5 || tableType.value == 7 ? 1 : 0;
|
|
|
+ let isObj = record.type == 5 || record.type == 7 ? 1 : 0;
|
|
|
checkDownLoad({ num: record.num, isObj }).then((res) => {
|
|
|
console.log(res);
|
|
|
if (res.downloadStatus != 3) {
|