摘要: vue-cli 去掉严格模式: 在根目录中找到 .eslintignore 文件打开该文件 添加 屏蔽严格模式目录 src/* 这样src文件夹下所有文件都不需要遵守代码严格模式,这样就能运行出来http://localhost:8080 阅读全文
posted @ 2021-05-24 17:04 凹凸曼啦 阅读(3223) 评论(0) 推荐(0) 编辑
摘要: Infix operators must be spaced 中缀运算符必须间隔 Newline required at end of file but not found 是需要在js css等后面再加一行(空行) Expected error to be handled Strings must 阅读全文
posted @ 2021-05-21 16:27 凹凸曼啦 阅读(453) 评论(0) 推荐(0) 编辑
摘要: mysql.msi的安装包 链接:https://pan.baidu.com/s/1-pkLJgA_Vf-6dtka9Tlj_w 提取码:1vr1 安装步骤 1.找到你下载的mysql安装软件双击安装 2.出现如下界面勾选 I accpet the license terms,点击Next 3.根据 阅读全文
posted @ 2021-02-03 09:48 凹凸曼啦 阅读(3774) 评论(0) 推荐(0) 编辑
摘要: 像上面这种,微信分享后,打开是这样的。显示不了缩略图 解决方法: 在我们的网站网页 html代码中的<body>之后(也就是网站的第一张图片)增加<img src="http://singrr.com/wm/img/logo.jpg" style="visibility:hidden;height: 阅读全文
posted @ 2021-01-19 10:16 凹凸曼啦 阅读(986) 评论(0) 推荐(0) 编辑
摘要: 这两天用mui和h5+做移动APP调取设备,发现在安卓上报错 plus is not defined,ios没有此现象 记录下,以供参考 我的页面写了mui.js并且初始化mui.plusReady(function(){}),但是外部还引用了调用设备的api,就导致外部的js 显示 plus is 阅读全文
posted @ 2021-01-18 14:27 凹凸曼啦 阅读(1799) 评论(0) 推荐(0) 编辑
摘要: 实现像淘宝那样的,pc一个网址,切换移动另一个网址 pc:index.html移动:m.html设备判断(根据目前设备跳转对应url) 在js中写 function browserRedirect() { var sUserAgent= navigator.userAgent.toLowerCase 阅读全文
posted @ 2021-01-07 10:03 凹凸曼啦 阅读(501) 评论(0) 推荐(0) 编辑
摘要: //点击其他元素 $(document).bind("click", function(e) { var target = $(e.target); if (target.closest("#cjj_select_name").length == 0) { //点击id为parentId之外的地方触 阅读全文
posted @ 2021-01-06 16:53 凹凸曼啦 阅读(3035) 评论(0) 推荐(0) 编辑
摘要: 在我们开发过程中,根据项目需求,需要将echarts图表先隐藏,然后点击按钮让它再显示出来。 但是再显示时,图表出现了问题,它变得特别小,根本不能用 原因:Echarts 图表是根据你定义的div 的样式来确定图表的大小,当图表隐藏时,Echarts会找不到div的宽和高,再次显示时它会给自己一个非 阅读全文
posted @ 2020-12-25 11:29 凹凸曼啦 阅读(1326) 评论(0) 推荐(0) 编辑
摘要: 使用element-ui的分页时,页面报错 报错:vue.runtime.esm.js?2b0e:619 [Vue warn]: Invalid prop: type check failed for prop “total”. Expected Number with value NaN, got 阅读全文
posted @ 2020-12-09 17:12 凹凸曼啦 阅读(7060) 评论(0) 推荐(0) 编辑
摘要: 参考的是这篇博主的文章 https://blog.csdn.net/weixin_44874618/article/details/110647652 去看了下我自己的echarts的版本号 npm ls echarts //查看echarts的版本 一看确实是5.0的或者在page.json文件查 阅读全文
posted @ 2020-12-07 17:27 凹凸曼啦 阅读(21933) 评论(3) 推荐(5) 编辑