WXL (wul)
18 小时以前 55f9876e876c7ddfcc2a7a2b870dfc224c9467a6
src/api/AiCentre/Qtemplate.js
@@ -9,6 +9,14 @@
    data: data,
  });
}
// 查询问卷模板列表
export function taskgetQtemplateobj(data) {
  return request({
    url: "smartor/svytemplateTask/selectInfoByCondition",
    method: "post",
    data: data,
  });
}
// 问卷模板列表
export function getQtemplatelist(data) {
  return request({
@@ -182,14 +190,14 @@
// 删除任务疾病关联
export function taskdiaghospgetsondel(id) {
  return request({
    url: "/smartor/taskdiag/remove/" + id,
    url: `/smartor/taskdiag/remove/${id}`,
    method: "get",
  });
}
// 删除任务手术关联
export function taskoperhospgetsondel(id) {
  return request({
    url: "/smartor/taskoper/remove/" + id,
    url: `/smartor/taskoper/remove/${id}`,
    method: "get",
  });
}
@@ -224,3 +232,11 @@
    data: data,
  });
}
// 医护保存数据
export function savequestiondetail(data) {
  return request({
    url: "/smartor/subtaskAnswer/savequestiondetail",
    method: "post",
    data: data,
  });
}