40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
export const ToDoEventType = {
|
|
followUpNoShow: "未到院回访",
|
|
followUpNoDeal: "未成交回访",
|
|
followUp: "诊后回访",
|
|
followUpPostSurgery: "术后回访",
|
|
followUpPostTreatment: "治疗后回访",
|
|
appointmentReminder: "就诊提醒",
|
|
followUpReminder: "复诊提醒",
|
|
medicationReminder: "用药提醒",
|
|
serviceSummary: "咨询服务",
|
|
eventNotification: "活动通知",
|
|
ContentReminder: "宣教发送",
|
|
questionnaire: "问卷调查",
|
|
followUpComplaint: "投诉回访",
|
|
followUpActivity: "活动回访",
|
|
other: "其他",
|
|
Feedback: "意见反馈",
|
|
// 预约相关服务类型
|
|
treatmentAppointment: "治疗预约",
|
|
followupAppointment: "复诊预约",
|
|
confirmArrival: "确认到院",
|
|
prenatalFollowUp: "孕期回访",
|
|
};
|
|
|
|
export const statusNames = {
|
|
notStart: "未开始",
|
|
treated: "已完成",
|
|
processing: "待处理",
|
|
cancelled: "已取消",
|
|
expired: "已过期",
|
|
};
|
|
|
|
export const statusClassNames = {
|
|
notStart: "text-primary",
|
|
treated: "text-success",
|
|
processing: "text-danger",
|
|
cancelled: "text-gray",
|
|
expired: "text-gray",
|
|
}
|