caiyunyi/store/getters.js
2025-01-15 18:49:37 +08:00

27 lines
1012 B
JavaScript

const getters = {
InviteCode: state => state.InviteCode,
ownerUnitId: state => state.ownerUnitId,
shopcartOrder: state => state.shopcartOrder,
myShopCar: state => state.myShopCar,
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