| 12345678910111213141516171819202122 |
- import { createHashHistory } from 'history'
- const history = createHashHistory()
- export default history
- // 判断是手机端还是pc端
- export const isMobileFu = () => {
- if (
- window.navigator.userAgent.match(
- /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
- )
- ) {
- return true
- } else return false
- }
- // 当前环境是 本地环境 还是 服务器环境
- export const isLoc = process.env.NODE_ENV === 'development'
- export const baseURL = isLoc ? baseUrlLoc : baseUrlAtl
- // 所有数据
- export const myData = myDataTemp
|