fix(测试用例): 导出抽屉提交后清空选项
This commit is contained in:
parent
cf3ca1e567
commit
8444bb920a
|
@ -332,6 +332,7 @@
|
|||
|
||||
const handleDrawerConfirm = () => {
|
||||
emit('confirm', selectedList.value);
|
||||
handleReset();
|
||||
};
|
||||
|
||||
const handleDrawerCancel = () => {
|
||||
|
|
|
@ -1223,7 +1223,7 @@
|
|||
} else {
|
||||
res = await exportXMindCase(params);
|
||||
}
|
||||
taskId.value = res.taskId;
|
||||
taskId.value = res;
|
||||
startWebsocketGetExportResult();
|
||||
showExportingMessage();
|
||||
exportLoading.value = false;
|
||||
|
@ -1240,7 +1240,7 @@
|
|||
async function batchExport() {
|
||||
try {
|
||||
const res = await checkCaseExportTask();
|
||||
if (!res.fileId.length) {
|
||||
if (!res.fileId || !res.fileId.length) {
|
||||
showExportVisible.value = true;
|
||||
} else {
|
||||
reportId.value = res.fileId;
|
||||
|
|
Loading…
Reference in New Issue