|
@@ -18,7 +18,13 @@
|
|
|
:rowSelection="tableType == 3 ? false : rowSelection"
|
|
:rowSelection="tableType == 3 ? false : rowSelection"
|
|
|
>
|
|
>
|
|
|
<template #toolbar>
|
|
<template #toolbar>
|
|
|
- <a-button type="primary" @click="handleMoveAll" v-if="tableType != 3 && getCheckPerm('scenes-move-batch')"> 批量迁移</a-button>
|
|
|
|
|
|
|
+ <a-button
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="handleMoveAll"
|
|
|
|
|
+ v-if="tableType != 3 && getCheckPerm('scenes-move-batch')"
|
|
|
|
|
+ >
|
|
|
|
|
+ 批量迁移</a-button
|
|
|
|
|
+ >
|
|
|
</template>
|
|
</template>
|
|
|
<template #status="{ record }">
|
|
<template #status="{ record }">
|
|
|
<span v-if="record.status != '-1'">{{ record.statusString }}</span>
|
|
<span v-if="record.status != '-1'">{{ record.statusString }}</span>
|
|
@@ -353,7 +359,11 @@
|
|
|
});
|
|
});
|
|
|
} else {
|
|
} else {
|
|
|
canDownload.value = false;
|
|
canDownload.value = false;
|
|
|
- window.open(res.downloadUrl);
|
|
|
|
|
|
|
+ if (tableType.value == 2 || tableType.value == 6) {
|
|
|
|
|
+ window.open('/' + res.downloadUrl);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ window.open(res.downloadUrl);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|