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,
| });
| }
|
|