refactor(api): 更新 API 结果类型导入路径

- 将 ApiResult 和 PageResult 类型的导入路径从 '@/api/index' 修改为 '@/api'
- 修改了多个文件中的导入语句,以简化 API 结果类型的导入路径
This commit is contained in:
2025-08-19 09:56:44 +08:00
parent f928264e2c
commit 12b664fc46
97 changed files with 111 additions and 118 deletions

View File

@@ -1,5 +1,5 @@
import request from '@/utils/request';
import type { ApiResult, PageResult } from '@/api/index';
import type { ApiResult, PageResult } from '@/api';
import type { ShopOrderGoods, ShopOrderGoodsParam } from './model';
/**