-
zhangwei
2025-08-11 2293a1b58a3227a4870466e3699b6baf0af29303
src/api/item/index.ts
@@ -1,13 +1,12 @@
/**
 * (不建议写成 request.post(xxx),因为这样 post 时,无法 params 与 data 同时传参)
 *
 * 注册api接口集合
 * @method login 登录
 * 项目管理接口集合
 */
import { http } from "@/utils/http";
import { baseUrlApi } from "../util";
import type { Result } from "../types";
import type { Result, PageResult } from "../types";
// 获取行政区域列表
export const getRegionList = () => {
@@ -104,7 +103,7 @@
// 招标代理分页查询非政府订单处理
export const zhaobiaoPageOrder = (data?: object) => {
  return http.request<Result>("post", baseUrlApi("/api/tenderOrder/page"), {
  return http.request<PageResult>("post", baseUrlApi("/api/tenderOrder/page"), {
    data
  });
};