上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: vue3下 vue.config.js中 devServer: { host: '0.0.0.0', port: 8080, proxy: { '/': { target: 'http://127.0.0.1:8080/', changeOrigin: true, pathRewrite: { '^ 阅读全文
posted @ 2018-12-25 09:53 Mr_R 阅读(4651) 评论(0) 推荐(0) 编辑
摘要: github: https://github.com/artiely/Administrative-divisions-of-China 阅读全文
posted @ 2018-12-20 14:18 Mr_R 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: element-ui npm install element-ui -- save; main.js中 import Element from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; Vue.use(Element); 阅读全文
posted @ 2018-12-19 15:11 Mr_R 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: 会刷新: <el-form-item> <button @click="register('form')" class="submitBtn">提交</button> </el-form-item> 不会刷新: <el-form-item> <button @click.prevent="regis 阅读全文
posted @ 2018-12-11 09:59 Mr_R 阅读(2201) 评论(0) 推荐(1) 编辑
摘要: 1. css3 ul{ width: 200px; height: 200px; background-color:black; border-radius: 50%; position: relative; margin: 100px; } li{ width: 20px; height: 20p 阅读全文
posted @ 2018-12-10 13:22 Mr_R 阅读(1965) 评论(0) 推荐(0) 编辑
摘要: 正常请求接口: return request({ url: 'http://192.168.1.0/User/cancelUpgrade', method: 'get', params: data }) vue.config.js里配置 记住重启 devServer: { host: '0.0.0. 阅读全文
posted @ 2018-12-04 13:40 Mr_R 阅读(3258) 评论(0) 推荐(0) 编辑
摘要: 通过ssh连接 ssh 用户名@地址 ssh root@xx.xxx.xxx.xx https://www.jianshu.com/p/f034817a7837 最后还是通过 FileZilla 连接的 阅读全文
posted @ 2018-11-30 10:26 Mr_R 阅读(697) 评论(0) 推荐(0) 编辑
摘要: var map = new BMap.Map("allmap");var point = new BMap.Point(105.955754,36.525109);map.centerAndZoom(point,8);map.enableScrollWheelZoom();//获得原标示数组// 定 阅读全文
posted @ 2018-11-23 16:29 Mr_R 阅读(6583) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-11-22 14:26 Mr_R 阅读(737) 评论(0) 推荐(0) 编辑
摘要: Javascript与HTML之间的交互是通过事件实现。 一、事件流 事件,是文档或浏览器窗口中发生的一些特定的交互瞬间。事件流,描述的是页面中接受事件的顺序。IE9,chrome,Firefox,Opera,Safari均实现了DOM2级规范中定义的标准DOM事件,而IE8和IE8以下版本仍然保留 阅读全文
posted @ 2018-11-04 12:26 Mr_R 阅读(2301) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页