2025-03-23 09:29:40 +08:00
|
|
|
/*
|
2025-05-28 15:10:50 +08:00
|
|
|
* @Descripttion:
|
|
|
|
* @version:
|
2025-03-23 09:29:40 +08:00
|
|
|
* @Author: kBank
|
|
|
|
* @Date: 2022-10-24 10:45:39
|
|
|
|
*/
|
|
|
|
const getters = {
|
|
|
|
shopCarLength: state => state.user.shopCarLength,
|
|
|
|
smallCarLength: state => state.user.smallCarLength,
|
|
|
|
user: state => state.user.user,
|
2025-05-28 15:10:50 +08:00
|
|
|
priceSymbol: state => state.system.priceSymbol,
|
|
|
|
priceDecimal: state => state.system.priceDecimal,
|
|
|
|
priceSymbolVisible: state => state.system.priceSymbolVisible,
|
2025-03-23 09:29:40 +08:00
|
|
|
}
|
|
|
|
export default getters
|