首次提交
This commit is contained in:
40
store/getters.js
Normal file
40
store/getters.js
Normal file
@@ -0,0 +1,40 @@
|
||||
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
|
||||
Reference in New Issue
Block a user