摘要:
A.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> </body> <script type="text/javascript"> //这是第一个页面a.html //通 阅读全文
摘要:
效果图: 用到的知识: <button class="avatar-wrapper" open-type="chooseAvatar" bind:chooseavatar="onChooseAvatar"> <image class="avatar" src="{{userInfo.avatar}} 阅读全文
摘要:
(function(){ window.alert = function(name){ var iframe = document.createElement("IFRAME"); iframe.style.display="none"; iframe.setAttribute("src", 'da 阅读全文
摘要:
因为小程序授权获取不到头像昵称后,我这边就取消了授权的流程,开始仅执行静默授权了,静默授权我是放在app.js中的onLaunch中的,经过运行代码,发现页面时不时的会先执行页面中的onload,导致页面接口总是报错,让我先登录所以我这边就有了以下更新app.js // 登录 wx.login({ 阅读全文
摘要:
在utils文件夹中的util.js文件中 const shareEvent= function(option, obj){ let shareObj = { title: obj.title, path: obj.path + '?spread_spid=' + JSON.stringify(ob 阅读全文
摘要:
App.vue // App.vue export default { data() { return { // socket参数 socket: null, timeout: 10 * 1000, // 45秒一次心跳 timeoutObj: null, // 心跳心跳倒计时 serverTime 阅读全文
摘要:
app.js checkData:function(stringTime){ console.log("stringTime:",stringTime) var minute = 1000 * 60; var hour = minute * 60; var day = hour * 24; var 阅读全文
摘要:
data() { return { value:'德阳市', } }, methods: { checkLocation(){ let that=this; return new Promise((resolve,reject)=>{ uni.getLocation({ type: 'gcj02', 阅读全文
摘要:
<video :src="item.url" :poster="" controls></video> //图片也可以用 <image class="cover" :src="item.url+ '?x-oss-process=video/snapshot,t_0,f_jpg'" mode="">< 阅读全文
摘要:
// #ifdef APP-PLUS plus.runtime.openURL('https://xxxxxxxx/app/yonghuxieyi.html') // #endif 阅读全文