postdischarge-applet/api/Satisfaction/Satisfaction.js
zhuangyuanke daf9159fca 1
2024-11-01 13:36:21 +08:00

27 lines
551 B
JavaScript

import request from "../request.js"
// 问卷列表
export function satisfactionQuestionnaire(data) {
return request({
url: `/postDischarge/homePage/satisfactionQuestionnaire`,
method: 'get',
data
})
}
// 已完成列表
export function completedSatisfaction(data) {
return request({
url: `/postDischarge/homePage/completedSatisfaction`,
method: 'get',
data
})
}
// 未完成列表
export function incompleteSatisfaction(data) {
return request({
url: `/postDischarge/homePage/incompleteSatisfaction`,
method: 'get',
data
})
}