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.
40 lines
1.4 KiB
40 lines
1.4 KiB
const getters = { |
|
driver: state => state.user.driver, |
|
temp: state => state.user.temp, |
|
baseDriver: state => state.user.baseDriver, |
|
headPortrait: state => state.user.driver.headPortrait, |
|
|
|
orderList: state => state.waybill.orderList, |
|
runningList: state => state.waybill.runningList, |
|
finishedList: state => state.waybill.finishedList, |
|
canceledList: state => state.waybill.canceledList, |
|
|
|
location: state => state.waybill.location, |
|
waybillNumber: state => state.waybill.waybillNumber, |
|
waybilling: state => state.waybill.waybilling, |
|
|
|
waybillContract: state => state.contract.waybillContract, |
|
|
|
car: state => state.user.car, |
|
bMsgList: state => state.user.bMsgList, |
|
sMsgList: state => state.user.sMsgList, |
|
wsAccount: state => state.user.wsAccount, |
|
msgKind: state => state.user.msgKind, |
|
|
|
baseAdd: state => state.base.baseAdd, |
|
activeFooter: state => state.base.activeFooter, |
|
uploadMaxSize: state => state.base.uploadMaxSize, |
|
tokenActive: state => state.base.tokenActive, |
|
|
|
tempNo: state => state.temp.tempNo, |
|
powerful: state => state.temp.powerful, |
|
locationStr: state => state.temp.locationStr, |
|
locationCenter: state => state.temp.locationCenter, |
|
order: state => state.temp.order, |
|
condition: state => state.temp.condition, |
|
|
|
openid: state => state.base.openid, |
|
carNo: state => state.base.carNo, |
|
unionid: state => state.base.unionid |
|
} |
|
export default getters
|
|
|