27 lines
551 B
JavaScript
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
|
|
})
|
|
}
|