摘要:
import {post} from "./axios"; import {UPLOAD_URL} from "../config/config"; export const uploadFile=(formData)=>{ return new Promise((resolve, reject) 阅读全文
摘要:
/** * 根据一组点位([纬度,经度])计算出中心点 * @param pointArray * @returns {*[]} */ const calculateCenterPoint=(pointArray)=>{ const sortedLongitudeArray=pointArray.m 阅读全文
摘要:
//获取cookie、 export function getCookie(name) { var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)"); if (arr = document.cookie.match(reg)) // re 阅读全文
摘要:
router.beforeEach((to, from, next) => { if(to.path.indexOf("/appPages/")==0){ if(to.meta.title) { document.title = to.meta.title } closeLayer(); next( 阅读全文
摘要:
// 配置API接口地址 import { message } from "ant-design-vue"; var root = 'http://xxx.xxx.xxx.xxx:8080/v1/' // var root = 'http://xxx.xxx.xxx.xxx:8080/v1/' // 阅读全文
摘要:
import axios from 'axios' const isDev = process.env.NODE_ENV 'development'//判断是否为生产环境 const service = axios.create({ baseURL: isDev ? 'http://rap2.tao 阅读全文
摘要:
问题: 报错原因: 因为eslint代码检查报错,所以在编译的时候会出现这个错误。 解决办法: 在开发环境中忽略对AMap的代码检查, 找到node_modules react-scripts config webpack.config.js 加入 entry ... externals: { 'B 阅读全文