成员管理,开发记录[图片],如果开了第三方授权的话,有可能是看不到修改的,就是第三方通过接口改的
微信小程序官方能否查询小程序后台修改的记录及人员?小程序于昨天晚上通过审核。 下午要开始推广的时候,打开小程序提示:request:fail url no in domain list 检查后台配置发现原先的配置的内容被人清空了。想咨询一下官方: 是否有办法查询到,后台配置的修改记录:修改内容,修改人,时间等信息
03-13一样,而且剪贴板都出这个问题了,报错时一样的就api名称不一样 112 api scope is not declared in the privacy agreement接口未在隐私协议中声明
小程序获取位置隐私保护已设置,仍提示无未声明fail-api作用域?小程序获取位置隐私保护已设置,并通过审核,但是调用API时仍提示"errMsg":"getLocation:fail api scope is not declared in the privacy agreement","errno":112。 更新:提示变成{"errMsg":"getLocation:fail privacy permission is not authorized","errno":104}了。 [图片]
2023-08-16我也出现这种情况,同求解决方案
企业微信手机端打开小程序正常pc端打开提示更新,已经是最新了?企业微信-侧边栏-集团小程序PC端企业微信,侧边栏中无法访问集团小程序,显示需要更新微信版本。。从移动端企业微信访问则不受影响PC端企业微信 PC端企业微信版本:3.1.20 [图片] [图片] 问题点: 从PC端企业微信侧边栏访问集团小程序,出现报错(如图)。 从移动端企业微信访问集团小程序则不受影响,可以正常显示 [图片]
2022-04-11我照步骤已经是 wmpf 版本小程序,[图片],用别的小程序,看了一下微信电脑端对应的基础版本库已经变成了2.21.3了,但是我现有的小程序依然显示要求升级,[图片],我设置的是2.21.2为最低版本,[图片],为什么还是打不开小程序呢? 我用自己另外的小程序进行测试,当我把小程序最低基础库版本设置为2.19.3的时候,无论是wmpf版本还是xweb版本,都是不能打开小程序的,说明wmpf虽然显示的基础版本号变成了2.21.3,但其实没有变化,任然是2.19.2
电脑微信的最新版本3.6.0.18对应的基础库版本是2.19.2,什么时候升级?小程序获取手机号用的是微信最新的方法,仅支持基础库版本2.21.2以上,所以小程序设置了最低基础库版本2.21.2,但是电脑微信的最新版本3.6.0.18对应的基础库版本是2.19.2,导致小程序在电脑上打不开,电脑端的微信什么时候升级?
2022-04-08已解决
获取用户手机号报错,代码没更新过,只有部分人会报错?小程序获取手机号授权时,会报错,后台会返回两条提示“由于小程序违规,该功能暂时无法使用”和“由于小 绑定手机号失败, 法使用”,但是小程序好几个月没有更新过了,原来都是好的,第二条提示的空格是返回提示时就是中间有字不显示
2021-11-26好的,谢谢
微信小程序体验版提交审核之后,再更新体验版会影响审核的版本吗?微信小程序体验版提交审核之后,在审核过程中更新体验版会影响审核的版本吗,审核通过后发布的是提交时的版本还是后来更新的体验版的版本
2021-06-04机型:荣耀 magic2 微信版本号:7.0.19 系统版本号:10.1.0.162 机型:小米 微信版本号:7.0.19 系统版本号:10.3.10 首页代码 <template> <div class='user savepadding flex flex-direction'> <!-- 自定义头部 --> <use-navbar ref="useNavbar" class='followTop'></use-navbar> </div> </template> <script> import useNavbar from './components/use-navbar.vue' export default { components: { useNavbar, } } </script> useNavbar组件 <template> <div class="customNavBar"> <u-navbar :background="background" class="navbar" :isBack="false" :height="navBarHeight"></u-navbar> </div> </template> <script> import unavbar from '@/components/u-navbar/u-navbar' export default { components: { unavbar }, data() { return { background: {}, navBarHeight: 84, //自定义头部高度 }; }, mounted() { let height = uni.getStorageSync('systemType') == 'IOS' ? 48 : 44 this.navBarHeight = uni.getStorageSync('isAddToDeskTop') ? height : height + uni.upx2px(72) }, }; </script> <style lang="scss"> .customNavBar { .navbar { position: relative; } } </style unavbar 公共组件 <template> <view class=""> <view class="u-navbar" :style="[navbarStyle]" :class="{'u-navbar-fixed': isFixed, 'u-border-bottom': borderBottom}"> <view class="u-status-bar" :style="{ height: statusBarHeight + 'px' }"></view> <view class="u-navbar-inner" :style="[navbarInnerStyle]"> <view class="u-back-wrap" v-if="isBack" @tap="goBack"> <view class="u-icon-wrap"> <uni-icons type="arrowleft" :size="backIconSize" :color="backIconColor"></uni-icons> </view> <view class="u-icon-wrap u-back-text u-line-1" v-if="backText" :style="[backTextStyle]"> {{backText}} </view> </view> <view class="u-navbar-content-title" v-if="title" :style="[titleStyle]"> <view class="u-title u-line-1" :style="{ color: titleColor, fontSize: titleSize + 'rpx' }"> {{title}} </view> </view> <view class="u-slot-content"> <slot></slot> </view> <view class="u-slot-right"> <slot name="right"></slot> </view> </view> </view> <!-- 解决fixed定位后导航栏塌陷的问题 --> <view class="u-navbar-placeholder" v-if="isFixed" :style="{width: '100%',height: Number(navbarHeight) + statusBarHeight + 'px'}"> </view> </view> </template> <script> // 获取系统状态栏的高度 let systemInfo = uni.getSystemInfoSync(); let menuButtonInfo = {}; menuButtonInfo = uni.getMenuButtonBoundingClientRect(); export default { name: "u-navbar", props: { animationHeight: { type: Object, default () { return { } } }, // 导航栏高度,单位px,非rpx height: { type: [String, Number], default: '' }, // 返回箭头的颜色 backIconColor: { type: String, default: '#fff' }, // 左边返回的图标 backIconName: { type: String, default: 'arrow-left' }, // 左边返回图标的大小,rpx backIconSize: { type: [String, Number], default: '40' }, // 返回的文字提示 backText: { type: String, default: '' }, // 返回的文字的 样式 backTextStyle: { type: Object, default () { return { color: '#606266' } } }, // 导航栏标题 title: { type: String, default: '' }, // 标题的宽度,如果需要自定义右侧内容,且右侧内容很多时,可能需要减少这个宽度,单位rpx titleWidth: { type: [String, Number], default: '250' }, // 标题的颜色 titleColor: { type: String, default: '#fff' }, // 标题的字体大小 titleSize: { type: [String, Number], default: 30 }, isBack: { type: [Boolean, String], default: true }, // 对象形式,因为用户可能定义一个纯色,或者线性渐变的颜色 background: { type: Object, default () { return { } } }, // 导航栏是否固定在顶部 isFixed: { type: Boolean, default: true }, // 是否显示导航栏的下边框 borderBottom: { type: Boolean, default: true }, zIndex: { type: [String, Number], default: '980' } }, data() { return { menuButtonInfo: menuButtonInfo, statusBarHeight: systemInfo.statusBarHeight }; }, computed: { // 导航栏内部盒子的样式 navbarInnerStyle() { let style = {}; // 导航栏宽度,如果在小程序下,导航栏宽度为胶囊的左边到屏幕左边的距离 style.height = this.navbarHeight + 'px'; // // 如果是各家小程序,导航栏内部的宽度需要减少右边胶囊的宽度 // #ifdef MP let rightButtonWidth = systemInfo.windowWidth - menuButtonInfo.left; style.marginRight = rightButtonWidth + 'px'; // #endif return style; }, // 整个导航栏的样式 navbarStyle() { let style = {}; style.zIndex = this.zIndex ? this.zIndex : this.$u.zIndex.navbar; // 合并用户传递的背景色对象 Object.assign(style, this.background); return style; }, // 导航中间的标题的样式 titleStyle() { let style = {}; // #ifndef MP style.left = (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + 'px'; style.right = (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + 'px'; // #endif // #ifdef MP // 此处是为了让标题显示区域即使在小程序有右侧胶囊的情况下也能处于屏幕的中间,是通过绝对定位实现的 let rightButtonWidth = systemInfo.windowWidth - menuButtonInfo.left; style.left = (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + 'px'; style.right = rightButtonWidth - (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + rightButtonWidth + 'px'; // #endif style.width = uni.upx2px(this.titleWidth) + 'px'; return style; }, // 转换字符数值为真正的数值 navbarHeight() { return this.height ? this.height : 44; let height = systemInfo.platform == 'ios' ? 44 : 48; return this.height ? this.height : height; } }, created() {}, methods: { goBack() { uni.navigateBack(); } } }; </script> <style scoped lang="scss"> .u-navbar { width: 100%; // background:$theme-color-bg; } .u-navbar-fixed { position: fixed; left: 0; right: 0; top: 0; z-index: 999; } .u-status-bar { width: 100%; } .u-navbar-inner { // display: flex; // justify-content: space-between; position: relative; // padding-bottom: 24rpx; // box-sizing: content-box; // align-items: center; } .u-back-wrap { display: flex; align-items: center; flex: 1; flex-grow: 0; padding: 14rpx 14rpx 14rpx 24rpx; height: 100%; } .u-back-text { padding-left: 4rpx; font-size: 30rpx; } .u-navbar-content-title { display: flex; align-items: center; justify-content: center; flex: 1; position: absolute; left: 0; right: 0; height: 60rpx; text-align: center; flex-shrink: 0; } .u-navbar-centent-slot { flex: 1; } .u-title { line-height: 1; font-size: 32rpx; flex: 1; } .u-navbar-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; } .u-slot-content { flex: 1; display: flex; // align-items: center; height: 100%; } .u-border-bottom:after { border-bottom-width: 0px; } </style>
微信小程序 安卓手机头部胶囊不见了?每次进小程序 首页 头部的胶囊都看不见 切换页面再回到首页就出现了 头部用的自定义导航栏 而且只有安卓手机会出现这个问题 苹果手机显示正常 开发者工具 基础调试库用的 2.13.1
2020-10-10已经解决了
生成二维码 路径可以填写 分包里的路劲吗?我原来在一个分包页面 生成一个二维码 填写的路径是主包的首页 通过首页跳转到要去的分包的页面 现在我将那个路径直接写成要跳转到的分包的那个页面的路劲了 path:'follow/xxxxx/xxxxx' 结果在生成二维码的时候报 【错误信息】:错误代码:41030, 错误信息:请求的参数不正确,微信原始报文:{"errcode":41030,"errmsg":"invalid page hint: [.EndoDALRa-2PW.BA]"} 是为什么呢 是不能写分包的路径吗 请问怎么解决这个问题 谢谢
2020-07-27恩恩 已经解决了 就在右边按钮那里有修改路径 没注意 谢谢
小程序进入后不是我的首页user而是index?这个appid 我发布了一个小程序 现在又新写了一个小程序 但是公司还没有申请新的appid 我将新写的小程序设置为体验版 但是我的首页是user 进去的页面确实index 请问怎么解决这个问题 是因为上个发布的小程序首页是index吗
2020-02-24