| | |
| | | const getters = { |
| | | viewer: state => state.viewer.viewer, |
| | | popupBgUrl: state => state.popupParams.popupBgUrl, |
| | | pupupQRUrl: state => state.popupParams.pupupQRUrl, |
| | | //手机端 |
| | | let mobile = { |
| | | mviewer: state => state.mobile.mviewer, |
| | | mBigPopup: state => state.mobile.mBigPopup, |
| | | mBigPopupAfter: state => state.mobile.mBigPopupAfter |
| | | } |
| | | const getters = { |
| | | ...mobile, |
| | | viewer: state => state.viewer.viewer, |
| | | popupBgUrl: state => state.popupParams.popupBgUrl, |
| | | pupupQRUrl: state => state.popupParams.pupupQRUrl, |
| | | pointPosition: state => state.popupParams.pointPosition, |
| | | terminus: state => state.popupParams.terminus, |
| | | startingPoint: state => state.popupParams.startingPoint, |
| | | stateName: state => state.popupParams.stateName, |
| | | } |
| | | export default getters |