state.js 300 B

123456789101112
  1. const state = {
  2. loading: false,
  3. currentProject: null,
  4. loadingMsg:"",
  5. account:null, //账号
  6. userId:'', //用户id-小程序当中提供的
  7. houseId:'', //项目id-小程序当中提供的
  8. curHouseObj:null,
  9. wallList:null, //墙体数据
  10. aiData:null, //AI生成的数据
  11. }
  12. export default state