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.
100 lines
2.6 KiB
100 lines
2.6 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-12 13:36:49
|
|
* @LastEditTime: 2021-12-16 11:08:52
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/store/actions.js
|
|
*/
|
|
const actions = {
|
|
setZoom: ({commit}, log) => {
|
|
commit('setZoom', log)
|
|
},
|
|
setLoading: ({commit}, log) => {
|
|
commit('setLoading', log)
|
|
},
|
|
setToken: ({commit}, log) => {
|
|
commit('setToken', log)
|
|
},
|
|
setUser: ({commit}, log) => {
|
|
commit('setUser', log)
|
|
},
|
|
setAccount: ({commit}, log) => {
|
|
commit('setAccount', log)
|
|
},
|
|
setCommTime: ({commit}, log) => {
|
|
commit('setCommTime', log)
|
|
},
|
|
setCtime: ({commit}, log) => {
|
|
commit('setCtime', log)
|
|
},
|
|
setCtime2: ({commit}, log) => {
|
|
commit('setCtime2', log)
|
|
},
|
|
setHeaderType: ({commit}, log) => {
|
|
commit('setHeaderType', log)
|
|
},
|
|
setBrand: ({commit}, log) => {
|
|
commit('setBrand', log)
|
|
},
|
|
setModel: ({commit}, log) => {
|
|
commit('setModel', log)
|
|
},
|
|
setBComparison: ({commit}, log) => {
|
|
commit('setBComparison', log)
|
|
},
|
|
setBcStatus: ({commit}, log) => {
|
|
commit('setBcStatus', log)
|
|
},
|
|
setScStatus: ({commit}, log) => {
|
|
commit('setScStatus', log)
|
|
},
|
|
setSComparison: ({commit}, log) => {
|
|
commit('setSComparison', log)
|
|
},
|
|
setMcStatus: ({commit}, log) => {
|
|
commit('setMcStatus', log)
|
|
},
|
|
setMComparison: ({commit}, log) => {
|
|
commit('setMComparison', log)
|
|
},
|
|
//设定主题对比和状态
|
|
setTComparison: ({commit}, log) => {
|
|
commit('setTComparison', log)
|
|
},
|
|
setTcStatus: ({commit}, log) => {
|
|
commit('setTcStatus', log)
|
|
},
|
|
setEComparison: ({commit}, log) => {
|
|
commit('setEComparison', log)
|
|
},
|
|
setLevelBtn: ({commit}, log) => {
|
|
commit('setLevelBtn', log)
|
|
},
|
|
setMenu: ({commit}, log) => {
|
|
commit('setMenu', log)
|
|
},
|
|
setChangeSTime: ({commit}, log) => {
|
|
commit('setChangeSTime', log)
|
|
},
|
|
setIsLight: ({commit}, log) => {
|
|
commit('setIsLight', log)
|
|
},
|
|
setCarCircle: ({commit}, log) => {
|
|
commit('setCarCircle', log)
|
|
},
|
|
setSpecialGuid: ({commit}, log) => {
|
|
commit('setSpecialGuid', log)
|
|
},
|
|
setWarningBrand: ({commit}, log) => {
|
|
commit('setWarningBrand', log)
|
|
},
|
|
setWarningSeries: ({commit}, log) => {
|
|
commit('setWarningSeries', log)
|
|
},
|
|
setHealth: ({commit}, log) => {
|
|
commit('setHealth', log)
|
|
},
|
|
}
|
|
export default actions
|