摘要:
解决方案: html: <input type="number" @blur="Input()" placeholder="请输入数字" /> JS: Input(){ setTimeout(function() { var scrollHeight = document.documentEleme 阅读全文
摘要:
npm安装微信JS-SDK npm install jweixin-module --save 通过网址下载: https://unpkg.com/browse/jweixin-module@1.6.0/lib/index.js 需要用到微信JSSDK页面,引入微信JSSDK //微信js-sdk引 阅读全文
摘要:
uni使用new image()报ReferenceError: Image is not defined或者获取不到对象 JS代码: var img = new Image(); // 创建对象 img.src = getBase64List; // 改变图片的src img.onload = f 阅读全文
摘要:
vue路由报[vue-router] Duplicate named routes definition的原因: 配置路由定义的路由名称name存在重复名称 解决方案: 把重复的路由的名称name修改成不一样即可 阅读全文
摘要:
封装自定义toast: 1、新建toast文件夹,文件夹内新建toast.vue和index.js文件: 2、toast.vue代码: <template> <transition name="fade"> <div class="toast" v-show="show" v-html="messa 阅读全文
摘要:
使用 qrcodejs2 实现二维码生成 下载 qrcodejs2 依赖: npm install qrcodejs2 -S 需要使用 qrcodejs2 页面引入该依赖: import QRCode from 'qrcodejs2' // 引入qrcode html代码: <div class=" 阅读全文
摘要:
使用html2canvas把界面生成图片 下载 html2canvas 依赖: npm install html2canvas -S 需要使用 html2canvas 页面引入该依赖: import html2canvas from 'html2canvas' html代码: <template> 阅读全文
摘要:
主应用通过url给内嵌h5传参: <web-view src="http://xxxxxxxxxx/?Id=1111"></web-view> h5页面通过路径获取参数: onLoad() { this.getQueryString() }, onShow() { this.getQueryStri 阅读全文