摘要: <template> <view> <button open-type="share">发送给好友</button> </view> </template> <script> export default { data() { return { } }, onLoad(){ wx.showShare 阅读全文
posted @ 2022-09-17 22:27 最帅爸爸 阅读(107) 评论(0) 推荐(0)
摘要: 外部js文件 function a(a,b) { console.log(a+b);} 导出:module.exports ={a}; 引用: import {a} from (路径); 阅读全文
posted @ 2022-09-17 20:48 最帅爸爸 阅读(20) 评论(0) 推荐(0)
摘要: function date(date) { var date = new Date(date * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 var Y = date.getFullYear() + '-'; var M = (date.getMonth()+1 < 阅读全文
posted @ 2022-09-17 20:38 最帅爸爸 阅读(187) 评论(0) 推荐(0)