Commit 6adc716d by Zhang Xin

add log

parent f4d62af5
const showPage = {
1 : 'Trouble',
2 : 'Scan',
3 : 'DamageProductList',
4 : 'OtherQuestionUpload',
5 : 'TextArea',
6 : 'Qrcode',
7 : 'Home',
8 : 'FinishAsk',
9 : 'ChooseTask'
1 : 'Trouble', //一期故障
2 : 'Scan', //一期扫描二维码
3 : 'DamageProductList', //一期上报损耗商品
4 : 'OtherQuestionUpload', //一期上报其它问题
5 : 'ReportLeftSkus', // 二期遗留商品上报
6 : 'CheckSkus', //二期盘点
7 : 'Home', //一期首页和关门页
8 : 'FinishAsk', //一期询问是否完成页
9 : 'ChooseTask', //一期选择故障问题页
10 : 'RecoverySkus', //二期回收
11 : 'Replenishment', //二期补货
12 : 'Feedback', //二期问题反馈和关门
};
const headerStatus = {
1 : 'home',
2 : 'other'
const taskSchedule = { //任务进度序列号,后台给
1: showPage[5],
2: showPage[6],
3: showPage[10],
4: showPage[11],
5: showPage[6],
6: showPage[12]
}
module.exports = {showPage,headerStatus};
\ No newline at end of file
const headerStatus = { //首页状态栏
1 : 'home', // 普通
2 : 'other' //定制
};
const unnormalType = { //异常类型
}
module.exports = {showPage,headerStatus,taskSchedule,unnormalType};
\ No newline at end of file
import { combineReducers } from 'redux'
import troubleList from './trouble'
import storeInfo from './store'
import scanBarCode from './scanBarCode'
import otherQuestion from './otherQuestion'
import userInfo from './user'
import refreshImg from './refreshImg'
import headerInfo from './initHeader'
import reportDamageList from './reportDamge'
import errMsg from './error'
import troubleList from './trouble' //一期故障处理
import storeInfo from './store' //店铺信息
import scanBarCode from './scanBarCode' //一期扫描二维码
import otherQuestion from './otherQuestion' // 一期上报其它问题
import userInfo from './user' //用户信息
import refreshImg from './refreshImg' //刷新图片
import headerInfo from './initHeader' //获取头部信息
import reportDamageList from './reportDamge' //一期商铺报损
import errMsg from './error' //上报异常
export default combineReducers({
troubleList,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment