Compare commits
No commits in common. "3e387ad6871a257fee4b816a34f02454c6ddbb9d" and "c985379bc88ff20d8f1718b8d60bfe687247385a" have entirely different histories.
3e387ad687
...
c985379bc8
@ -20,33 +20,7 @@ export const ToDoEventType = {
|
||||
followupAppointment: "复诊预约",
|
||||
confirmArrival: "确认到院",
|
||||
prenatalFollowUp: "孕期回访",
|
||||
childHealthFollowUp: "儿童保健回访",
|
||||
benefitExecution: "权益执行",
|
||||
}
|
||||
// {
|
||||
// followUpNoShow: "未到院回访",
|
||||
// followUpNoDeal: "未成交回访",
|
||||
// followUp: "诊后回访",
|
||||
// followUpPostSurgery: "术后回访",
|
||||
// followUpPostTreatment: "治疗后回访",
|
||||
// appointmentReminder: "就诊提醒",
|
||||
// followUpReminder: "复诊提醒",
|
||||
// medicationReminder: "用药提醒",
|
||||
// serviceSummary: "咨询服务",
|
||||
// eventNotification: "活动通知",
|
||||
// ContentReminder: "宣教发送",
|
||||
// questionnaire: "问卷调查",
|
||||
// followUpComplaint: "投诉回访",
|
||||
// followUpActivity: "活动回访",
|
||||
// other: "其他",
|
||||
// Feedback: "意见反馈",
|
||||
// // 预约相关服务类型
|
||||
// treatmentAppointment: "治疗预约",
|
||||
// followupAppointment: "复诊预约",
|
||||
// confirmArrival: "确认到院",
|
||||
// prenatalFollowUp: "孕期回访",
|
||||
// };
|
||||
|
||||
};
|
||||
|
||||
export const statusNames = {
|
||||
notStart: "未开始",
|
||||
|
||||
@ -158,10 +158,9 @@ const __NEW_FOLLOWUP_EVENT_TYPE_VALUES__ = [
|
||||
'followUpNoShow',
|
||||
'other',
|
||||
];
|
||||
// const eventTypeList = __NEW_FOLLOWUP_EVENT_TYPE_VALUES__
|
||||
// .map((v) => __ALL_TODO_EVENT_TYPE_OPTIONS__.find((i) => i.value === v))
|
||||
// .filter(Boolean);
|
||||
const eventTypeList = __ALL_TODO_EVENT_TYPE_OPTIONS__;
|
||||
const eventTypeList = __NEW_FOLLOWUP_EVENT_TYPE_VALUES__
|
||||
.map((v) => __ALL_TODO_EVENT_TYPE_OPTIONS__.find((i) => i.value === v))
|
||||
.filter(Boolean);
|
||||
|
||||
const accountStore = useAccountStore();
|
||||
const { account, doctorInfo } = storeToRefs(accountStore);
|
||||
|
||||
@ -1,46 +1,21 @@
|
||||
export const TODO_EVENT_TYPE_LABELS = {
|
||||
followUpNoShow: "未到院回访",
|
||||
followUpNoDeal: "未成交回访",
|
||||
followUp: "诊后回访",
|
||||
followUpPostSurgery: "术后回访",
|
||||
followUpPostTreatment: "治疗后回访",
|
||||
appointmentReminder: "就诊提醒",
|
||||
followUpReminder: "复诊提醒",
|
||||
medicationReminder: "用药提醒",
|
||||
serviceSummary: "咨询服务",
|
||||
eventNotification: "活动通知",
|
||||
ContentReminder: "宣教发送",
|
||||
questionnaire: "问卷调查",
|
||||
followUpComplaint: "投诉回访",
|
||||
followUpActivity: "活动回访",
|
||||
other: "其他",
|
||||
Feedback: "意见反馈",
|
||||
// 预约相关服务类型
|
||||
treatmentAppointment: "治疗预约",
|
||||
followupAppointment: "复诊预约",
|
||||
confirmArrival: "确认到院",
|
||||
prenatalFollowUp: "孕期回访",
|
||||
childHealthFollowUp: "儿童保健回访",
|
||||
benefitExecution: "权益执行",
|
||||
}
|
||||
// {
|
||||
// benefitExecution: '权益执行',
|
||||
// followUpNoShow: '未到院回访',
|
||||
// followUpNoDeal: '未成交回访',
|
||||
// followUp: '诊后回访',
|
||||
// followUpPostSurgery: '术后回访',
|
||||
// followUpPostTreatment: '治疗后回访',
|
||||
// appointmentReminder: '就诊提醒',
|
||||
// followUpReminder: '复诊提醒',
|
||||
// medicationReminder: '用药提醒',
|
||||
// serviceSummary: '咨询服务',
|
||||
// eventNotification: '活动通知',
|
||||
// ContentReminder: '宣教发送',
|
||||
// questionnaire: '问卷调查',
|
||||
// followUpComplaint: '投诉回访',
|
||||
// followUpActivity: '活动回访',
|
||||
// other: '其他',
|
||||
// };
|
||||
benefitExecution: '权益执行',
|
||||
followUpNoShow: '未到院回访',
|
||||
followUpNoDeal: '未成交回访',
|
||||
followUp: '诊后回访',
|
||||
followUpPostSurgery: '术后回访',
|
||||
followUpPostTreatment: '治疗后回访',
|
||||
appointmentReminder: '就诊提醒',
|
||||
followUpReminder: '复诊提醒',
|
||||
medicationReminder: '用药提醒',
|
||||
serviceSummary: '咨询服务',
|
||||
eventNotification: '活动通知',
|
||||
ContentReminder: '宣教发送',
|
||||
questionnaire: '问卷调查',
|
||||
followUpComplaint: '投诉回访',
|
||||
followUpActivity: '活动回访',
|
||||
other: '其他',
|
||||
};
|
||||
|
||||
export function getTodoEventTypeLabel(value) {
|
||||
const v = String(value || '');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user