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.
|
/*
|
|
* 公用变量
|
|
*
|
|
*/
|
|
const statusList = [{
|
|
id: 0,
|
|
name: '待处理'
|
|
}, {
|
|
id: 1,
|
|
name: '已到客户家'
|
|
}, {
|
|
id: 2,
|
|
name: '已接到客户'
|
|
}, {
|
|
id: 3,
|
|
name: '已到医院'
|
|
}, {
|
|
id: 4,
|
|
name: '已完成诊疗'
|
|
}]
|
|
export {
|
|
statusList
|
|
} |