上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 1、mpShare.js(uview) module.exports = { onLoad() { // 设置默认的转发参数 this.$u.mpShare = { title: 'xxx', // 默认为小程序名称 path: '/pages/index/welcome', // 默认为当前页面路 阅读全文
posted @ 2022-07-21 17:01 风花一世月 阅读(489) 评论(0) 推荐(1)
摘要: 微信7.14日又改接口了 https://developers.weixin.qq.com/community/develop/doc/000a02f2c5026891650e7f40351c01 新的地理位置接口使用流程 自 2022 年 7 月 14 日起,开发者如需在最新版本发布后使用地理位置 阅读全文
posted @ 2022-07-19 17:44 风花一世月 阅读(1311) 评论(0) 推荐(0)
摘要: 在静态目录建立config.js文件存放动态域名 let baseUrl = 'http://192.168.21.122:8201/' let baseFileUrl = 'http://192.168.10.331:31703/' // let baseUrl = 'https://www.ba 阅读全文
posted @ 2022-06-01 16:58 风花一世月 阅读(302) 评论(0) 推荐(0)
摘要: 19年就说修复,到22年也没修复 方法1:添加white-space: pre-wrap;样式,但是我这边试的不行 方法2:前后加空格 <cover-view class="kong"></cover-view> .kong{display:inline-block;width:10rpx;} 阅读全文
posted @ 2022-05-09 17:21 风花一世月 阅读(47) 评论(0) 推荐(0)
摘要: 线上小程序版本号仅支持在正式版小程序中获取,开发版和体验版中无法获取 // #ifdef MP-WEIXIN const accountInfo = wx.getAccountInfoSync(); if(accountInfo.miniProgram.envVersion=='release'){ 阅读全文
posted @ 2022-05-09 17:18 风花一世月 阅读(545) 评论(0) 推荐(0)
摘要: module.exports = { // publicPath:process.env.NODE_ENV 'production' ? '/vue_workspac/aihuhuproject/' : '/', //基本路径 publicPath: "./", //默认的'/'是绝对路径,如果不确 阅读全文
posted @ 2022-04-29 17:39 风花一世月 阅读(122) 评论(0) 推荐(0)
摘要: 删除已经提交的.idea文件夹 git pull origin master # 将远程仓库里面的项目拉下来 //--cached不会把本地的test删除 git rm -r --cached .idea # 删除.idea文件夹 git commit -m '删除.idea' # 提交,添加操作说 阅读全文
posted @ 2022-04-28 16:41 风花一世月 阅读(66) 评论(0) 推荐(0)
摘要: <template> <!-- #ifdef MP-WEIXIN --> <view> <view> <button type="primary" class='btn' open-type="openSetting" @opensetting="openSetting">授权设置页</button 阅读全文
posted @ 2022-04-28 15:31 风花一世月 阅读(839) 评论(0) 推荐(0)
摘要: 公众号跳转小程序 公众号-小程序管理:关联小程序,设置菜单就可以直接选择小程序 公众号启用服务器配置,自定义菜单失效 官网地址(https://developers.weixin.qq.com/doc/offiaccount/Custom_Menus/Creating_Custom-Defined_ 阅读全文
posted @ 2022-04-27 10:47 风花一世月 阅读(538) 评论(0) 推荐(0)
摘要: 直接转-为/,反正但是要格式化 let timestamp = new Date(date.replace(/\-/g, '/')).getTime(); 阅读全文
posted @ 2022-04-25 17:25 风花一世月 阅读(55) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页