摘要:
有需求:用支付宝支付时(第一次支付需授权)跳转至支付宝授权,然后再返回app 跳转支付宝: <button @click="toZFB">支付宝</button> toZFB() { let urls = 'https://openauth.alipay.com/oauth2/publicAppAu 阅读全文
摘要:
公司最近遇到一个离谱问题 在湖北的使用安卓手机的用户访问公众号会显示 “无法打开页面”,不论是流量还是WiFi都是一样的问题,但是在苹果手机上是可以正常访问的,最骚的是其他省份是没有这个问题出现 (后经测试,湖北地区PC端微信以及浏览器也是无法打开网站,甚至报错Error: ERR CONNECTI 阅读全文
摘要:
传送门 vue-qr 阅读全文
摘要:
业务场景:vue项目中使用 const img = new Image() img.src = '@/static/images/bgimg1.jpg' 加载图片路径失败 img.src = require('@/static/images/bgimg1.jpg') 加载成功 使用require 阅读全文
摘要:
<template> <div> First: <a-select v-model:value="first" style="width: 100%" @change="handleFirstChange"> <a-select-option v-for="i in 10" :key="(i + 9 阅读全文
摘要:
https://animate.style/ 阅读全文
摘要:
async checkPermission() { let system = uni.getSystemInfoSync() if (system.platform 'ios') { var result = false; var AVCaptureDevice = plus.ios.import( 阅读全文
摘要:
pointer-events将上层的div设置层pointer-events:none 就可以实现穿透,点击下层的按钮会执行; 阅读全文
摘要:
danjiFn:null /* 提前定义好单击事件 */ /* 判断双击的代码网上轮子成串 */ if(****){ clearTimeout(this.danjiFn) /* 清除单击事件 */ /* 双击代码 */ #code................ }else{ this.danjiF 阅读全文
摘要:
资源路径替换即可 直接贴代码(网上改的轮子 <template> <view class="mainview" @click="viewClick"> <canvas canvas-id="mycanvas" class="canvas" :style="add_class_canvas"/> <! 阅读全文