修复前端迁移后的类型错误

This commit is contained in:
yml2213
2026-06-04 11:07:34 +08:00
parent eb6aed7e56
commit 75e849a91a
23 changed files with 1561 additions and 29 deletions
@@ -3,9 +3,9 @@ import { computed, onMounted, ref } from "vue";
import { useRoute, useRouter } from "vue-router";
import { showToast, showDialog } from "vant";
import { fetchOrderChat } from "@/api/chats";
import { createDispute } from "@/api/disputes";
import { uploadFile } from "@/api/files";
import { fetchOrderChat } from "@/features/chats/api/chats";
import { createDispute } from "@/features/disputes/api/disputes";
import { uploadFile } from "@/shared/api/files";
import {
acceptCheckout,
cancelOrder,
@@ -20,7 +20,7 @@ import {
type HandoffRecord,
type Order,
type PaymentOrder,
} from "@/api/orders";
} from "@/features/orders/api/orders";
import { useSessionStore } from "@/stores/session";
import { handoffStatusLabel, orderStatusLabel } from "@/utils/statusLabels";
import { formatDateTime } from "@/utils/time";