You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
403 B
10 lines
403 B
const state = {
|
|
anyringToken: '',
|
|
user: { id: '', phone: '', account: '' },
|
|
controlGroups: [], // 对照组
|
|
patientId: '', // 病患id
|
|
previewInfo: { host: '', place: '', startTime: '', endTime: '', participants: '', meetingMinutes: '', discussionContent: '' }, // 预览信息
|
|
ptProps: null, // 接受PT传过来的 pluginId,projectId,roleId,taskId,userId
|
|
};
|
|
|
|
export default state;
|
|
|