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.
66 lines
1.3 KiB
66 lines
1.3 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-12 13:37:06
|
|
* @LastEditTime: 2021-11-16 10:03:04
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/store/getters.js
|
|
*/
|
|
const getters = {
|
|
getZoom(state) {
|
|
return state.$zoom
|
|
},
|
|
getLoading(state) {
|
|
return state.loading
|
|
},
|
|
getToken(state) {
|
|
return state.token
|
|
},
|
|
getUser(state) {
|
|
return state.user
|
|
},
|
|
getAccount(state) {
|
|
return state.account
|
|
},
|
|
getCommTime(state) {
|
|
return state.commTime
|
|
},
|
|
getCtime(state) {
|
|
return state.ctime
|
|
},
|
|
getCtime2(state) {
|
|
return state.ctime2
|
|
},
|
|
getHeaderType(state) {
|
|
return state.headerType
|
|
},
|
|
getBrand(state) {
|
|
return state.brand
|
|
},
|
|
getModel(state) {
|
|
return state.model
|
|
},
|
|
getBComparison(state) {
|
|
return state.bComparison
|
|
},
|
|
getSComparison(state) {
|
|
return state.sComparison
|
|
},
|
|
getChangeSTime(state) {
|
|
return state.changeSTime
|
|
},
|
|
getMComparison(state) {
|
|
return state.mComparison
|
|
},
|
|
getEComparison(state) {
|
|
return state.eComparison
|
|
},
|
|
getLevelBtn(state) {
|
|
return state.levelBtn
|
|
},
|
|
getMenu(state) {
|
|
return state.menu
|
|
}
|
|
}
|
|
export default getters
|