zxl
2025-10-23 eb9cf34c620908c4c20300a25bbdb92bf8134ee4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
// 全部商品分类
export const SET_CATEGORY = (state, data) => {
  state.category = data
}
export const SET_NAVLIST = (state, data) => {
  state.navList = data
}
export const SET_CARTNUM = (state, data) => {
  state.cartNum = data
}
export const SET_HOTWORDS = (state, data) => {
  state.hotWordsList = data
}
export const SET_LOGOIMG = (state, data) => {
  state.logoImg = data
}
export const SET_SITENAME = (state, data) => {
  state.siteName = data
}