- 跳转其他插件,微信电脑端不支持,手机端可以打开?
跳转插件,手机端可以打开,但是微信电脑端打不开,报错 const pluginUrl = `plugin://kdPlugin/index?pt=${pt}&phone=${phone}&env=${env}`; uni.navigateTo({ url: pluginUrl, fail: (err) => { console.error('快电插件跳转失败:', err); uni.showToast({ title: '跳转失败,请重试', icon: 'none' }); } }); [图片] [图片] 报错: preloadSubpackages:success APP-SERVICE-SDK:Page "plugin://wx01440835f1987e8b/index"is not found routeDone with a webviewld 101 is not found
10-30 - web-view 上面如何放一个返回的按钮,返回小程序页面。
https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html cover-view 放在web-view 里面和同级都不行, 始终被web-view覆盖 <template> <view class="container"> <cover-view class="back-box" @click="goBack" style="position: fixed; bottom: 220px; left: 50%; z-index: 9999; transform: translateX(-50%); background-color: rgba(255, 255, 255, 1); border-radius: 30px; padding: 8px 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);"> <cover-image src="/static/index/back-xcx.png" style="width: 20px;height: 20px;margin-right: 6px;" ></cover-image> <cover-view style="color: #000;font-size: 13px;font-weight: 700;">返回</cover-view> </cover-view> <web-view :src="webUrl"></web-view> </view> </template>
10-02 - 扫描二维码进入充值页面,然后再登录页面,点击登录无反应?
[图片] 正常可以登录,但是扫描二维码进入充值页面,然后再登录页面,点击登录无反应
08-29 - 扫描自定义 二维码进入小程序,点击手机号快捷登录无反应,并未弹出授权手机号弹窗?
扫描二维码进入充值界面, 希望用户先登录在充值,跳转到登录页面,点击手机号快捷登录无反应 <template> <view class="main"> <view class="main-swiper"> <view class="main-swiper-title"> 欢迎回来 </view> <swiper class="swiper" circular indicator-dots autoplay :interval="5000" indicator-active-color="#4C70E3" indicator-color="#EAEAEA"> <swiper-item> <view class="swiper-item"> <view class="swiper-item-tips"> 让充电更简单 </view> </view> </swiper-item> <swiper-item> <view class="swiper-item"> <view class="swiper-item-tips"> 充电情况实时掌握 </view> </view> </swiper-item> </swiper> </view> <view class="login-info"> <view class="login-info-item"> <!-- #ifdef APP --> <view> <button @click="doAppLogin" class="button"> 微信一键登录 </button> </view> <!-- #endif --> <!-- #ifdef MP-WEIXIN --> <view v-if="!loginForm"> <button open-type="getPhoneNumber" @getphonenumber="getPhoneNumber" class="button"> 手机号快捷登录 </button> <button @click="showLoginForm" class="button"> 密码登录 </button> </view> <view v-if="loginForm"> <div class="info-item"> <label>手机号</label> <input v-model="formData.mobile" placeholder="请输入手机号"/> </div> <div class="info-item"> <label>密码</label> <input type="password" v-model="formData.password" placeholder="请输入密码"/> </div> <button @click="login" class="button"> 登录 </button> <button open-type="getPhoneNumber" @getphonenumber="getPhoneNumber" class="button"> 手机号快捷登录 </button> </view> <!-- #endif --> <!-- <view> <button @click="handleCodeLogin" class="button button-else"> 使用其他手机号登录 </button> </view> --> </view> <!-- <view class="login-info-input" v-else> <view class="input"> <input v-model="phoneInput" placeholder="请输入手机号码"> </view> <view class="input-btn"> 获取验证码 </view> </view> --> </view> <u-loading-page :loading="loading" :loading-text="loadingText"></u-loading-page> <!-- <view v-show="showPrivacy"> <view>隐私弹窗内容....</view> <button bindtap="handleOpenPrivacyContract">查看隐私协议</button> <button id="agree-btn" open-type="agreePrivacyAuthorization" bindagreeprivacyauthorization="handleAgreePrivacyAuthorization">同意</button> </view> --> </view> </template>
08-29 - 小程序能否跳转指定的微信客服人员?
小程序设置了100个客服,用户发送消息来的时候,如何指定特定的1个客服呢?
2024-11-19 - 微信小程序 pc端访问如何隐藏scroll-view横向滚动条?
[图片] 微信小程序 pc端访问如何隐藏scroll-view横向滚动条?手机端开发者模式访问是正常的, 但是电脑端直接访问就是隐藏不了。
2024-08-13 - 微信公众号,真机调试,如果看控制台报错信息?
微信公众号,真机调试,如果看控制台报错信息?
2023-03-02 - tabBar 字体可以加粗嘛?
tabBar 字体可以加粗嘛?
2022-07-05 - uni写的微信小程序,视频在安卓可以正常播放,在ios播放不了(视频链接在ios浏览器可以正常播)?
[图片] <video :src="roomInfo.lists[curIndex-1].video_src" class="itemContentVideoH" :autoplay="false" :show-fullscreen-btn="false" :show-play-btn="true" :show-progress="true" object-fit="cover" custom-cache="false" @play="firstStartTime()" ></video> 模拟器ios端也是可以正常播放的, 就是真机ios没有办法播放
2022-06-21 - 微信小程序,关闭ios页面回弹效果?
[图片] 回弹效果未关闭时,下拉页面会产生空白区域,体验很不好,怎么关闭呢 ?
2022-06-08