|
|
@@ -13,10 +13,13 @@ let IntelligentOM = resolve(CWD, './workspace/AntDesignOfVue_IntelligentOM')
|
|
|
let MobileDoctor = resolve(CWD, './workspace/AntDesignOfVue_MobileDoctor')
|
|
|
let Propagand = resolve(CWD, './workspace/AntDesignOfVue_Propagand')
|
|
|
let QualityInspection = resolve(CWD, './workspace/AntDesignOfVue_QualityInspection')
|
|
|
-// let ScheduleShift = resolve(CWD, './workspace/AntDesignOfVue_ScheduleShift')
|
|
|
+let ScheduleShift = resolve(CWD, './workspace/AntDesignOfVue_ScheduleShift')
|
|
|
+let SensitiveIndicator = resolve(CWD, './workspace/AntDesignOfVue_SensitiveIndicator')
|
|
|
let Supply = resolve(CWD, './workspace/AntDesignOfVue_Supply')
|
|
|
+let SupplyDisplayScreen = resolve(CWD, './workspace/AntDesignOfVue_SupplyDisplayScreen')
|
|
|
let Writ = resolve(CWD, './workspace/AntDesignOfVue_Writ')
|
|
|
let Workhandover = resolve(CWD, './workspace/AntDesignOfVue_Workhandover')
|
|
|
+let VitalSignAcquisit = resolve(CWD, './workspace/Front.VitalSignAcquisit')
|
|
|
|
|
|
|
|
|
const run = (bin, args, opts = {}) => execa(bin, args, { stdio: 'inherit', ...opts })
|
|
|
@@ -93,11 +96,26 @@ async function create() {
|
|
|
name: '移动医生',
|
|
|
value: 'MobileDoctor'
|
|
|
},
|
|
|
- // {
|
|
|
- // key: '7',
|
|
|
- // name: '排班系统',
|
|
|
- // value: 'ScheduleShift'
|
|
|
- // },
|
|
|
+ {
|
|
|
+ key: '14',
|
|
|
+ name: '物资大屏',
|
|
|
+ value: 'SupplyDisplayScreen'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '15',
|
|
|
+ name: '敏感指标',
|
|
|
+ value: 'SensitiveIndicator'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '16',
|
|
|
+ name: '生命体征',
|
|
|
+ value: 'VitalSignAcquisit'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '17',
|
|
|
+ name: '排班系统',
|
|
|
+ value: 'ScheduleShift'
|
|
|
+ },
|
|
|
]
|
|
|
}
|
|
|
])
|
|
|
@@ -145,6 +163,15 @@ async function create() {
|
|
|
case 'MobileDoctor':
|
|
|
run('yarn', ['serve'], { cwd: MobileDoctor })
|
|
|
break
|
|
|
+ case 'SupplyDisplayScreen':
|
|
|
+ run('yarn', ['serve'], { cwd: SupplyDisplayScreen })
|
|
|
+ break
|
|
|
+ case 'SensitiveIndicator':
|
|
|
+ run('yarn', ['serve'], { cwd: SensitiveIndicator })
|
|
|
+ break
|
|
|
+ case 'VitalSignAcquisit':
|
|
|
+ run('yarn', ['serve'], { cwd: VitalSignAcquisit })
|
|
|
+ break
|
|
|
}
|
|
|
}
|
|
|
|