摘要:
1 <scroll-view scroll-x="true" :scroll-left="scrollLeft" class="head"> 2 <div @click="changeTab(index,item.id)" :class="[nowIndex==index ?'active':''] 阅读全文
摘要:
一个页面怎么给另一个页面传个对象值呢 res={content: str, okTheme: 'alink'} 传值前需要转化 1 encodeURIComponent(JSON.stringify(res)) 接收 1 JSON.parse(decodeURIComponent(this.$roo 阅读全文
摘要:
首先app.json打开 1 "permission": { 2 "scope.userLocation": { 3 "desc": "你的位置信息将用于小程序位置接口的效果展示" 4 } 5 }, 地图引用参照: https://lbs.amap.com/api/wx/gettingstarted 阅读全文
摘要:
1 <text data-data="111" bindtap='copyUrl'>复制</text> 1 copyUrl(e) { 2 const data = e.currentTarget.dataset.data 3 wx.setClipboardData({ 4 data,//要复制的内容 阅读全文