|
|
@@ -77,7 +77,7 @@ import { computed, ref } from 'vue';
|
|
|
import { useSimpleDataLoader } from '@/components/composeabe/loader/SimpleDataLoader';
|
|
|
import { useAuthStore } from '@/store/auth';
|
|
|
import { useLoadQuerys } from '@/components/composeabe/LoadQuerys';
|
|
|
-import { ArrayUtils, assertNotNull, formatError } from '@imengyu/imengyu-utils';
|
|
|
+import { ArrayUtils, assertNotNull, formatError, waitTimeOut } from '@imengyu/imengyu-utils';
|
|
|
import { toast, alert } from '@/components/dialog/CommonRoot';
|
|
|
import AssessmentContentApi, {
|
|
|
SelfAssessmentDetail,
|
|
|
@@ -369,6 +369,8 @@ async function downloadForm() {
|
|
|
}
|
|
|
|
|
|
const loader = useSimpleDataLoader(async () => {
|
|
|
+ await waitTimeOut(1000);
|
|
|
+
|
|
|
if (querys.value.id > 0) {
|
|
|
const detail = await AssessmentContentApi.getSelfAssessmentDetail(querys.value.id);
|
|
|
currentForm.value = detail;
|