单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-09-15 ecfcfee4d3bb36be356a78a226f4de8ca23ff745
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from "@/utils/axios";
import type { StartRecord } from "../patient_hemo_med_start/types/index.type";
 
/**
 * 获取开始透析数据api
 * @param params `recordCode=${recordCode}`
 * @returns 
 */
export function addDefaultRowApi(params: string) :Promise<StartRecord> {
  return request({
    url: "/patient/hemo/med/start/addDefaultRow",
    method: "post",
    headers: {
      "Content-Type": "application/x-www-form-urlencoded",
    },
    data: params,
  });
}