12345678910111213141516 |
- const state = {
- loading: false,
- currentProject: null,
- loadingMsg:"",
- account:null, //账号
- userId:'', //用户id-小程序当中提供的
- houseId:'', //项目id-小程序当中提供的
- curHouseObj:null,
- wallList:null, //墙体数据
- aiData:null, //AI生成的数据
- curSpaceId:null, //当前选中的空间id
- landDataId:null, //土地id
- cityCode:null, //城市编码
- houseName:null, //项目名称
- }
- export default state
|