摘要: function deepClone(obj, hash = new WeakMap()) { if (obj null) return obj // 如果是null或者undefined我就不进行拷贝操作 if (obj instanceof Date) return new Date(obj) 阅读全文
posted @ 2023-11-11 10:03 干红 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1.标签 <button v-copy="text">复制文本</button> text是要复制的内容,在data函数中 2.在main.js中注册copy指令 Vue.directive('copy', { bind: function(el, binding) { el.$copy = fun 阅读全文
posted @ 2023-10-21 15:37 干红 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 直接写到组件里面,使用组件传值返回数据,返回功能还没做 <template> <div class="scan"> <div id="bcid"> <div style="height:40%"></div> <p class="tip">...载入中...</p> </div> <footer> 阅读全文
posted @ 2023-10-20 15:43 干红 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1.在命令行中执行:npm install animate.css --save 2.main.js 中: import animated from 'animate.css' // npm install animate.css --save安装Vue.use(animated) 3.使用 <di 阅读全文
posted @ 2023-09-06 10:35 干红 阅读(11) 评论(0) 推荐(0) 编辑
摘要: uniapp获取位置时显示getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json 解决方式:1.manifest.json文件 "mp-weixin" 中添 阅读全文
posted @ 2023-08-07 17:19 干红 阅读(1434) 评论(0) 推荐(0) 编辑
摘要: 超简单 wx.requestPayment({ timeStamp: zhifu.timeStamp,//需要的参数,由后端返回 nonceStr: zhifu.nonceStr,//需要的参数,由后端返回 package: zhifu.prepayId,//需要的参数,由后端返回 signType 阅读全文
posted @ 2023-08-03 15:36 干红 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 事件中写入: copydata:要复制的数据 uni.setClipboardData({ data: copydata, success: function() { //调用方法成功 console.log('success'); } }) 阅读全文
posted @ 2023-08-03 15:33 干红 阅读(86) 评论(0) 推荐(0) 编辑
摘要: methods: { changeRelation() { uni.showActionSheet({ itemList:['妻子','丈夫','妈妈','爸爸','爷爷','奶奶','儿子','女儿','兄弟姐妹','亲戚','同学','同事','朋友','长辈','其他'], success: 阅读全文
posted @ 2023-08-03 15:31 干红 阅读(230) 评论(0) 推荐(0) 编辑
摘要: // uni.getUserProfile({ // desc:"获取个人信息", // success: (res) => { // this.userList = res.userInfo; // console.log(res.userInfo) // } // }) 阅读全文
posted @ 2023-08-03 15:31 干红 阅读(47) 评论(0) 推荐(0) 编辑
摘要: <div id="wrap" :style="{ height: screenHeight + 'px' }"> <div id="main" :style="{ top: nowTop + 'px' }"> <ul id="pageUl" type="circle"> <li id="pageUl 阅读全文
posted @ 2022-12-01 14:39 干红 阅读(269) 评论(0) 推荐(0) 编辑