forked from angelo/web-retail-h5
13 lines
475 B
JavaScript
13 lines
475 B
JavaScript
import { MEMBER_SIGN } from '@/util/common'
|
|
|
|
const getters = {
|
|
shopCarLength: state => state.user.shopCarLength,
|
|
smallCarLength: state => state.user.smallCarLength,
|
|
user: state => state.user.user,
|
|
priceSymbol: state => state.system.priceSymbol,
|
|
priceDecimal: state => state.system.priceDecimal,
|
|
priceSymbolVisible: state => state.system.priceSymbolVisible,
|
|
isZeroLevel: state => state.user?.user?.memberSign === MEMBER_SIGN.ZERO_LEVEL,
|
|
}
|
|
export default getters
|