no message

This commit is contained in:
A1300399510
2024-01-09 14:18:28 +08:00
parent e3a22c1d7c
commit 46af762ab6
9 changed files with 20 additions and 28 deletions

View File

@@ -2,6 +2,7 @@ import { createStore } from 'vuex'
export default createStore({
state: {
advData: [],
seachTypeData: [],
indexData: [],//首页数据
ListSelectBtn: [],//瀑布流选项
@@ -9,18 +10,18 @@ export default createStore({
wechat: {}, // 微信号 二维码等数据
nav: [], // 顶部的导航数据
apartment: {}, // 公寓筛选的字段
routeList:{
index:{
path:'/',
title:'港校租房'
routeList: {
index: {
path: '/',
title: '港校租房'
},
secondaryIndex:{
path:'',
title:'',
secondaryIndex: {
path: '',
title: '',
}
},//导航路由列表
seachSelect:{
seachPage:{}
seachSelect: {
seachPage: {}
},//保存筛选条件
showloginmodal: false, // 是否需要登录状态
},
@@ -33,7 +34,7 @@ export default createStore({
},
modules: {
},
plugins:[
plugins: [
]
})