Blame view

pc-master/src/store/state.js 464 Bytes
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  const state = {
    showLogin: false,
    isLogin: false,
    searchObj: {}, // 查询对象
    newAddress: {}, // 新增修改收货地址
    areaCode: [], // 当前区域编号
    currentPro: {}, // 当前商品
    userInfo: {
      headImage: ''
    }, // 当前用户信息
    shoppingCart: {}, // 购物车列表
    cartNumber: '', // 购物车数量
    evaluateOrders: {}, // 评价订单
    noticeId: {}, // 公告id
    collectData: {} // 店铺数据
  }
  
  export default state