Sign in

简柏林 / thingskit-app · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-app
  • pages
  • deviceRepair
  • enum
  • index.js
  • 移动端新增菜单
    b7fe5601
    zhangtingjun authored
    2025-01-15 17:51:35 +0800  
    Browse Files »
index.js 338 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
const repairType = {
	'SCHEDULING':{
		color:'#FFD700',
		name:'排期中',
		iconUrl:'/static/time.png'
	},
	'REPAIRFINISH':{
		color:'#666666',
		name:'维修完成',
		iconUrl:'/static/unonline.png'
		
	},
	'ACCEPTANCEPASSED':{
		color:'#377DFF',
		name:'验收通过',
		iconUrl:'/static/online.png'
		
	},
}


export {
 repairType
}