上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页
摘要: vue完成项目后,如何打包成静态文件,并且用Node调试 打包 1、修改config里面的index.js里面的productionSourceMap为false,默认情况是true(true代表打包环境是开发环境,可以进行调试;false表示生产环境,正式上线的) 2.在cmd里面运行npm ru 阅读全文
posted @ 2021-05-17 18:08 Ao_min 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: 1、我们会用到:window.οnlοad=function(){} ,一个页面貌似只能用一次,可以自己去试试: 2、html代码如下: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>数据交互</title> 阅读全文
posted @ 2021-04-21 14:50 Ao_min 阅读(816) 评论(0) 推荐(0) 编辑
摘要: 转自于:http://www.neirong.org/post-450.html 连接远程桌面时提示“身份验证错误,要求的函数不受支持”,原因是微软最近发布的更新补丁,要求服务器端和用户端都更新后才可以连接,解决方法有两种:一种是卸载更新,另一种是修改注册列表。 1、WIN+R,然后运行 reged 阅读全文
posted @ 2021-04-12 10:38 Ao_min 阅读(12187) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://blog.csdn.net/u010227042/article/details/106560509/ 这个也是我在做uniapp混合app时遇到的问题,也是困惑了几天,网上也有很大相关文章,但是有些地方有些不清晰,让新手很困惑。 问题原因 我在项目中碰到两个问题 如果只需要 阅读全文
posted @ 2021-04-12 10:21 Ao_min 阅读(1400) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://www.pianshen.com/article/792649196/ <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>echarts面积折线图</title> <style> .centerItem { 阅读全文
posted @ 2021-04-09 17:04 Ao_min 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://www.cnblogs.com/benmumu/p/8316652.html // 全图默认背景 // backgroundColor: ‘rgba(0,0,0,0)’, // 默认色板 color: ['#ff7f50','#87cefa','#da70d6','#32cd 阅读全文
posted @ 2021-04-09 10:09 Ao_min 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://blog.csdn.net/qq_41594146/article/details/82288841 function base64(content) { return window.btoa(unescape(encodeURIComponent(content))); } 阅读全文
posted @ 2021-02-21 10:26 Ao_min 阅读(769) 评论(0) 推荐(0) 编辑
摘要: var arr = ["1","2","3","4"]; var bbb = [...arr].reverse() //方法一 //var bbb = [].concat(arr).reverse() //方法二 //var bbb = Object.assign([],arr).reverse() 阅读全文
posted @ 2021-01-21 16:20 Ao_min 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://blog.csdn.net/weixin_43352901/article/details/108489921 折线图/面积图 的实现 先看效果 文件目录 获取Echarts 引入Echarts <!DOCTYPE html> <html> <head> <meta char 阅读全文
posted @ 2021-01-14 15:01 Ao_min 阅读(3033) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://ask.dcloud.net.cn/article/726 本人遇到问题的双webview中子页面和主页面有分界线,但是调节mui-bar-nav 和其他属性等都显示没有边框。于是我在主页面中去设置背景色和标题栏的颜色一致,发现标题栏的下面仍有一个阴影边框,通过浏览器调试发现 阅读全文
posted @ 2021-01-13 10:39 Ao_min 阅读(138) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页