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.

23 lines
271 B

12 months ago
/*
* 公用变量
*
*/
11 months ago
const statusList = [{
id: 0,
name: '待处理'
}, {
12 months ago
id: 1,
11 months ago
name: '已到客户家'
12 months ago
}, {
id: 2,
11 months ago
name: '已接到客户'
12 months ago
}, {
id: 3,
11 months ago
name: '已到医院'
12 months ago
}, {
id: 4,
11 months ago
name: '已完成诊疗'
12 months ago
}]
export {
11 months ago
statusList
12 months ago
}