You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
471 B
23 lines
471 B
const config = {
|
|
state: {
|
|
// 通知配置数据(查看时临时数据)
|
|
configData: {},
|
|
// 详情页显示状态
|
|
detailedPageVisible: false,
|
|
},
|
|
|
|
mutations: {
|
|
// 通知配置数据(添加和修改)
|
|
CONFIG_DATA: (state, data) => {
|
|
state.configData = data
|
|
},
|
|
// 详情页显示状态
|
|
DETAILED_CONFIG_VISIBLE: (state, data) => {
|
|
state.detailedPageVisible = data
|
|
},
|
|
},
|
|
|
|
actions: {}
|
|
}
|
|
|
|
export default config
|
|
|