22 lines
734 B
JavaScript
22 lines
734 B
JavaScript
const getters = {
|
|
/** 预约服务费 */
|
|
appointmentServiceFee: state => state.app.appointmentServiceFee,
|
|
/** 调度费 */
|
|
dispatchFee: state => state.app.dispatchFee,
|
|
/** 管理费*/
|
|
vehicleManagementFee: state => state.app.vehicleManagementFee,
|
|
/** 起步价*/
|
|
startingPrice: state => state.app.startingPrice,
|
|
/** 多少分钟内按起步价*/
|
|
startingHowManyMinutes: state => state.app.startingHowManyMinutes,
|
|
/** 时长费*/
|
|
timeFee: state => state.app.timeFee,
|
|
/** 时长分钟*/
|
|
timeMinutes: state => state.app.timeMinutes,
|
|
userId: state => state.app.userId,
|
|
isMeal: state => state.app.isMeal,
|
|
deposit: state => state.app.deposit,
|
|
showagre: state => state.app.showagre,
|
|
}
|
|
export default getters
|