26 lines
973 B
JavaScript
26 lines
973 B
JavaScript
const getters = {
|
|
InviteCode: state => state.InviteCode,
|
|
ownerUnitId: state => state.ownerUnitId,
|
|
shopcartOrder: state => state.shopcartOrder,
|
|
nowStore: state => state.nowStore, // 当前点餐的门店信息
|
|
orderNumber: state => state.orderNumber,
|
|
orderInternal: state => state.orderInternal,
|
|
appointmentOrder: state => state.appointmentOrder,
|
|
couponPrice: state => state.couponPrice,
|
|
user: state => state.user,
|
|
orderTable: state => state.orderTable,
|
|
canIuse: state => state.canIuse,
|
|
orderRemark: state => state.orderRemark,
|
|
refresh: state => state.refresh,
|
|
isLoading: state => state.isLoading,
|
|
provinceCode: state => state.provinceCode,
|
|
serverPart: state => state.serverPart,
|
|
discoveryServerPart: state => state.discoveryServerPart,
|
|
appointServerPart: state => state.appointServerPart,
|
|
orderAddress: state => state.orderAddress,
|
|
payForVip: state => state.payForVip,
|
|
severList: state => state.severList
|
|
}
|
|
|
|
export default getters
|