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.
21 lines
781 B
21 lines
781 B
/*
|
|
* @Author: wally
|
|
* @email: 18603454788@163.com
|
|
* @Date: 2021-02-22 09:20:03
|
|
* @LastEditors: wally
|
|
* @LastEditTime: 2021-04-26 17:28:17
|
|
*/
|
|
const state = {
|
|
anyringToken: '',
|
|
user: { id: '', phone: '', account: '' },
|
|
controlGroups: [], // 对照组
|
|
patientId: '', // 病患id
|
|
hospitalization: '', // 病患住院号
|
|
recordCode: '', // 患者研究编号
|
|
previewInfo: { host: '', place: '', startTime: '', endTime: '', participants: '', meetingMinutes: '', discussionContent: '' }, // 预览信息
|
|
ptProps: { userId: '' }, // 接受PT传过来的 pluginId,projectId,roleId,taskId,userId
|
|
hospitalId: '', // 医院Id
|
|
caseData: null, // 病例 搜索/分析 下的认知量表所做的每道题,每次改变重新存一次
|
|
};
|
|
|
|
export default state;
|
|
|