34 lines
1.6 KiB
JavaScript
34 lines
1.6 KiB
JavaScript
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
export default {
|
||
token: state => state.app.token,
|
||
isLogin: state => !!state.app.token,
|
||
backgroundColor: state => state.app.backgroundColor,
|
||
userInfo: state => state.app.userInfo || {},
|
||
uid: state => state.app.uid,
|
||
homeActive: state => state.app.homeActive,
|
||
home: state => state.app.home,
|
||
chatUrl: state => state.app.chatUrl,
|
||
systemPlatform: state => state.app.systemPlatform,
|
||
productType: state => state.app.productType || 'normal',
|
||
globalData: state => state.app.globalData,
|
||
merchantClassify: state => state.app.merchantClassify,
|
||
merchantType: state => state.app.merchantType,
|
||
merchantAPPInfo: state => state.app.merchantAPPInfo,
|
||
merSttledData: state => state.app.merSttledData,
|
||
bottomNavigationIsCustom: state => state.app.bottomNavigationIsCustom,
|
||
merTokenIsExist: state => state.app.merTokenIsExist,
|
||
discoverTopic: state => state.app.discoverTopic,
|
||
merchantEmployeeList:state => state.app.merchantEmployeeList,
|
||
selectMerId:state => state.app.selectMerId,
|
||
selectMerchant:state => state.app.selectMerchant
|
||
};
|