zhangwei
2025-08-11 704a721f1ea9e3050be765afff0bb86dbc6bb603
src/api/item/index.ts
@@ -7,7 +7,7 @@
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 +104,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
  });
};