const showPage = { 1 : 'Trouble', //一期故障 2 : 'Scan', //一期扫描二维码 3 : 'DamageProductList', //一期上报损耗商品 4 : 'OtherQuestionUpload', //一期上报其它问题 5 : 'ReportLeftSkus', // 二期遗留商品上报 51 : 'ReportLeftSkus1', // 二期遗留商品上报 6 : 'CheckSkus', //二期盘点 7 : 'Home', //一期首页和关门页 8 : 'FinishAsk', //一期询问是否完成页 9 : 'ChooseTask', //一期选择故障问题页 10 : 'RecoverySkus', //二期回收 11 : 'Replenishment', //二期补货 12 : 'Feedback', //二期问题反馈和关门 13 : 'HomePage', //二期首页 131 : 'HomePage1', //二期首页 14 : 'Question', //二期问题反馈页面 141 : 'Question1', //二期问题反馈页面 15 : 'BoxRecoverySkus', //二期回收箱回收 }; const taskSchedule = { //任务进度序列号,后台给 1: showPage[5], 2: showPage[6], 3: showPage[10], 4: showPage[11], 5: showPage[6], 6: showPage[12] } const headerStatus = { //首页状态栏 1 : 'home', // 普通 2 : 'other' //定制 }; const normalMenuList = [ { text : '货品报损', type : 'HPBS', }, { text : '货品位置查询', type : 'HPWZ', }, { text : '问题反馈', type : 'WTFK', }, { text : '货品信息查询', type : 'HPXX', }, { text : '帮助中心', type : 'HELP', }, ]; const unnormalType = { //异常类型 } module.exports = {showPage,headerStatus,taskSchedule,unnormalType,normalMenuList};