CINXE.COM

<!DOCTYPE html> <html lang="en"> <head data-n-head-ssr> <title data-n-head="true">小程序交流专区 | 微信开放社区</title> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="baidu-site-verification" content="YohnrGnVqQ" /> <meta name="google-site-verification" content="u_9F5q9UrNxwO0uNw5V949s1JTovxX8x_O5f2ZIOlds"> <meta name="google-site-verification" content="X22_H_gVbgaA2kLabxpe9Tp3BgBPKoPgxj12zbGPdWM" /> <meta name="google-site-verification" content="W7QrG9vZcOB_1SLK2aSS7QpN5-QyRrDOBgv5PV5sFWY" /> <meta name="renderer" content="webkit"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="default"> <meta itemprop="image" content="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-8630de9303.png"> <meta property="og:image" content="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-8630de9303.png"> <!--<link href="https://res.wx.qq.com/wxopenforumres/htmledition/images/favicon318d1d.ico" rel="Shortcut Icon"> <link rel="apple-touch-icon" sizes="120x120" href="https://res.wx.qq.com/wxopenforumres/htmledition/images/favicon318d1d.ico">--> <!--<link rel="shortcut icon" type="image/x-icon" href="https://res.wx.qq.com/a/wx_fed/assets/res/NTI4MWU5.ico" /> <link rel="mask-icon" href="https://res.wx.qq.com/a/wx_fed/assets/res/MjliNWVm.svg" color="#4C4C4C" /> <link rel="apple-touch-icon-precomposed" href="https://res.wx.qq.com/a/wx_fed/assets/res/OTE0YTAw.png" />--> <link rel="shortcut icon" type="image/x-icon" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-db8b687441.ico" /> <link rel="mask-icon" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-b73356d472.svg" color="#4C4C4C" /> <link rel="apple-touch-icon-precomposed" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-8630de9303.png" /> <link rel="apple-touch-icon" sizes="120x120" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-db8b687441.ico"> <meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui, viewport-fit=cover, maximum-scale=1.0, user-scalable=0"> <script> (function () { 'use strict'; const SCRIPT_URLs = [ 'https://dldir1.qq.com/WechatWebDev/devPlatform/px.min.js', 'https://dev.weixin.qq.com/platform-console/proxy/assets/tel/px.min.js', ]; const param = { maskMode: 'all-mask', // 隐私策略, all-mask 或 no-mask, 详见:https://dev.weixin.qq.com/docs/analysis/sdk/docs.html recordCanvas: false, // 若要采集canvas, 设为true projectId: 'wxef34f91ddab0c534-0HLdQNKAk-dzsFsA', // 项目 ID,需替换为体验分析项目 ID iframe: false, // 是否采集 iframe 页面 console: true, // 是否采集 console 输出的错误日志 network: true, // 是否采集网络错误 }; function loadScript(url) { return new Promise((resolve, reject) => { const scriptEle = document.createElement('script'); scriptEle.type = 'text/javascript'; scriptEle.async = true; scriptEle.src = url; scriptEle.onload = () => { resolve(url); }; scriptEle.onerror = () => { reject(new Error('Script load error')); }; document.head.appendChild(scriptEle); }); } async function main() { try { sessionStorage.setItem('wxobs_start_timestamp', String(Date.now())); const fastestUrl = await Promise.race(SCRIPT_URLs.map(url => loadScript(url))); window.__startPX && window.__startPX(param); } catch (error) { console.error('Error loading scripts:', error); } } main(); })(); </script> <script type="text/javascript"> // 获取 cookies function getCookie(name) { var value = '; ' + document.cookie; var parts = value.split('; ' + name + '='); if (parts.length == 2) return parts.pop().split(';').shift(); else return ''; } function clearAllCookie() { var date=new Date(); date.setTime(date.getTime()-10000); var keys=document.cookie.match(/[^ =;]+(?=\=)/g); if (keys) { for (var i = keys.length; i--;) document.cookie=keys[i]+"=0; expire="+date.toGMTString()+"; path=/"; } } // 检查微信环境 var ua = navigator.userAgent.toLowerCase(); var isWeixin = ua.indexOf('micromessenger') !== -1 && ua.indexOf('wxwork') === -1; var isNewLogin = getCookie('s_rand_info') ? true : false // 清除旧的登录态 if(parseInt(getCookie('forum_login_type'), 10) === 1 && !isNewLogin) { clearAllCookie() } if (isWeixin && parseInt(getCookie('forum_login_type'), 10) !== 1 && parseInt(getCookie('forum_wx_login_err'), 10) !== 1) { var origin = location.origin || (location.protocol + '//' + location.hostname + (location.port ? ':' + location.port : '')); var redirectUri = origin + '/community/ngi/wxlogin?redirect_url=' + encodeURIComponent((location.pathname + location.search) || redirectUrl); location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx807d86fb6b3d4fd2&redirect_uri=' + encodeURIComponent(redirectUri) + '&response_type=code&scope=snsapi_base&state=#wechat_redirect'; } // 测速用 var completed = function() { window.__ON_LOAD_TIMESTAMP__ = Date.now(); if (window.sendReportCache && window.sendReportCache.length) window.sendReportCache.forEach(function(func) { func && func(); }); // 如果需要提交上报,则在此时提交 window.sendReportCache = null; }; if (window.addEventListener) window.addEventListener('load', completed, false); else window.attachEvent('onload', completed); // 需要隐藏导航栏的情况 var needHideHeader = location.search.indexOf('hideheader=1') >= 0; var needCancelHideHeader = location.search.indexOf('hideheader=0') >= 0; if (!needHideHeader) { var hideHeaderUa = localStorage.getItem('HIDE_HEADER'); if (hideHeaderUa === ua) needHideHeader = true; if (needCancelHideHeader) { localStorage.removeItem('HIDE_HEADER'); needHideHeader = false; } } else { localStorage.setItem('HIDE_HEADER', ua); } if (needHideHeader) { document.documentElement.classList.add('hide-header'); } </script> <style>body{opacity:0}</style> <meta data-n-head="true" name="description" content="微信开放社区,小程序,Donut开发平台,多端应用,微信服务市场,微信学堂"/><meta data-n-head="true" name="keywords" content="微信开放社区,小程序,Donut开发平台,多端应用,微信服务市场,微信学堂"/> <link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/manifest.2e614345f6dc48ee1b59.js" as="script"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.d3066521957e3f387497.css" as="style"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.ced71dd18bff17043692.js" as="script"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendor.23ee57865aaaa34cc4c6.js" as="script"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.d3066521957e3f387497.css" as="style"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.81ba301c274a09b116f9.js" as="script"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleDetail.5315b477e85f4c96ae74.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList.fd17d98e76b2f575758a.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList~MixFlowBlogList~businessQuestionBlogList~questionBlogList.140cb9c1385ff0a66407.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList~MixFlowBlogList~businessQuestionBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail.61eeb49038311a74a53e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~CommonIssueReply~OperateEditPage~PrivatemsgSession.937208ad4c89770bcdf9.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~CommonIssueReply~OperateEditPage~PrivatemsgSession.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~InnerManageCourse.c00f30621a5614f2f4b6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~InnerManageCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionIndex.95e73383846a15f2acbc.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionIndex.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BackendadminTag.c1eb23111dd7fe3483ae.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BackendadminTag.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome.f09a34baeae347caa6f3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome~businessHome.6e8eba08cb116d4647d7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome~businessHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CategorySearch.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CategorySearch.d818d6f67b2aa191650f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CommonIssueReply.7f0524619bc518abcc4a.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CommonIssueReply.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseDetail.92381a097b8edc496bc7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseSearch.65da616324b9abca783f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseSearch.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DevtoolsLicenses.19cfc0a2d65469b5218e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DevtoolsLicenses.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DocFrame.c121623ebf29528174b2.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DocFrame.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DraftList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DraftList.f81e70f8d7afab811e81.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfilePage.36bcc43e11865bebc7e8.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfilePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfileWeappListPage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfileWeappListPage.df59c6291e1bdc6895da.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileChooseSubject.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileChooseSubject.e8910add0139d7410d87.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileStatus.d1883bffd72963845e33.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileStatus.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ErrorPage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ErrorPage.eecd3088b8190910d9e6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HomePage.c4c90132380c7db60818.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HomePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Homepage.5175a506a266e0749cf5.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Homepage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HrefMiddlePage.96081f4048a5b713bc6f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HrefMiddlePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerManageCourse.6b10b4a0df38eb046021.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerManageCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerSettingCourse.3cb0932d334f0cc5b124.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerSettingCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/IssueList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/IssueList.f669c1ca467d9f92a034.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Liver.babbcf4ddf67f897f549.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Liver.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthDevtoolsTpl.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthDevtoolsTpl.eeb0ce4d9fef7b8dea51.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthEduMiniapp.98433b496f8312fac27c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthEduMiniapp.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome.780147347a9e13b49af5.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate.e99e7e0cd65f2433adac.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate~MiniHomeEdit.22372881942acbd26a53.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate~MiniHomeEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeEdit.21228d8cb7d697989ade.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome.dda2b088a682a10d9bb3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome~operateHome.74d9f0e1830d47c88c5e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome~operateHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList.af4d28fe9ef70c248099.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~businessQuestionBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~businessQuestionBlogList~questionBlogList.e1fd89fe31d49348d131.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~questionBlogList.ba8a6931026681abba9f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComment.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComment.ec84718473b040591f70.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComplain.2d149b49ec9c2f296658.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComplain.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformHomePageList.b256580b737671898ca0.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformHomePageList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformPosted.3c2249c3a1b9b34161c1.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformPosted.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateDetail.ca5e9244ae72a4a5c924.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateEditPage.329cc6560f334d82de7e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateEditPage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/PrivatemsgSession.0ef3143c92b107dd9445.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/PrivatemsgSession.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ProductionList.4bfe4b7e60c0533f1f97.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ProductionList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Propaganda.bef894c47252d29985fb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Propaganda.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/RecentCourse.2292879a13f1a59081f4.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/RecentCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Reminder.7195f52def7c56f89a68.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Reminder.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ServiceIntro.63bf07799703e52c4230.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ServiceIntro.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SwitchLogin.068da76fb45d27453ed6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SwitchLogin.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SystemProfile.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SystemProfile.eb9ba59ae5522b3da81c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/TopicDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/TopicDetail.d489cf922d682237f6b8.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WXCodeMirror.b2be1465026ff12c1f1f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WdcIndex.3dcc04fa10be4e24d7a3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WdcIndex.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase.433cdc8b7cef535f1738.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase~industryDetail~otherList.43653227a2c72553a4fb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase~industryDetail~otherList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/authority.849e8812f265237ba66f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/authority.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessCaseList.35b2437ec7fb2aae0daa.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessCaseList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessHome.a96fa139666e0c9d7eb6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList.23bdf49ffed4ba340e97.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList~questionBlogList.1ac95b0f3dafccaea294.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/developHome.8648795da54aa58669af.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/developHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docCreate.c3e6528cb1a8eb0903fb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docCreate.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docDetail.2f85361b488f37636a18.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docEdit.5e1a920778782fb2e1ba.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/editor_dependencies.f2fd613b6305f53e9e3b.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/eduDevtoolsURL.9885b2e463a4e77b54ea.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/eduDevtoolsURL.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseCreate.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseCreate.f74fcb12d47c2e1e79a7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseModifyAdmin.cb1a4644397e7daa4028.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseModifyAdmin.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/growUpCenter.382092a7ec2ef847acd7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/growUpCenter.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/iframePage.ad7cec9bf68351bf13b3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/iframePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryCreawte.785d15d02d4610df506f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryCreawte.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryDetail.20f2d7c0588b49e3312c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryList.3966b4513c65ebb87341.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/login.de99ea194c4fcff261db.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/minicode.45cb5da9cfc03543df34.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/minicode.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify.17cb513be7cf753d9fab.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify~personFollow.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify~personFollow.eb946fc93621356f6dcd.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/operateHome.1362cfe6390564cd0cbf.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/operateHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/otherList.3decfd726d99bf33af9b.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/otherList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personAnswer.b77eb80f23242f25e976.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personAnswer.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personArticle.6db4cb68bf97b125b55c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personArticle.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personEdit.933e3e70835e308cfb31.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFav.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFav.d76feaca7e888a307bd9.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFollow.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFollow.f01a89210b8440105038.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personQuestion.bcb873c83c2c5ddd7ecb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personQuestion.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/questionBlogList.c88c8a617ea94e67fd31.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/search.74aa5cd722d75a7bee21.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/search.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~ArticleDetail~AskQuestionDetail~CommonIssueReply~IssueList~OperateEditPage~PrivatemsgSession~0b81ee0b.99ac6f0627499ba3896b.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~ArticleDetail~InnerManageCourse~IssueList~TopicDetail~docCreate~docDetail~docEdit~enterprise~24d1f334.cc6f62fef452f516fe55.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~ArticleDetail~IssueList~TopicDetail~docCreate~docDetail~docEdit~enterpriseCreate~personEdit~search.e801cadc11d5318baa3a.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~CommonIssueReply~Reminder~search.7ec3c3331c6b255c8a02.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~CourseDetail.ace25277af7b8cef175d.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~PrivatemsgSession.330867eb115ebefdb5dd.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~SystemProfile.3e3b7db0f3e8c95b4acd.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~notify.3f14e53db9e4017e9ace.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~notify~search.0022b50ec2375cd5e68a.js"><link rel="stylesheet" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.d3066521957e3f387497.css"><link rel="stylesheet" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.d3066521957e3f387497.css"></head> <body> <div id="app" data-server-rendered="true" class="app_container app"><div check-reduce style="display: none"><img src="https://res.wx.qq.com/op_res/dHtIRV4hVzWL3c2ZSXjoG1VcnRC3fENDSGIm_8hOS-9PWFTVVdbPfoGTaJnHJpFm"></div><div id="header" itemscope="itemscope" itemtype="http://www.schema.org/SiteNavigationElement" class="head app_header"><div class="head__nav__container head__nav__container__overflow-visible"><div class="head__nav__inner"><div class="head_box js_head_box"><div class="weui-desktop-head__inner"><div check-reduce class="weui-desktop-head__inner_hd"><div class="weui-desktop-layout"><div class="weui-desktop-layout__side"><h1 class="weui-desktop-logo"><a href="/community/homepage" title="微信开放社区" class="logo_mp"><img src="https://res8.wxqcloud.qq.com.cn/community/dist/community/images/communitySvgLogo_4dc945.svg" style="width: 100%; height: 100%;"></a></h1></div></div><div class="header__navs"><div class="header__navs__inner"><div itemprop="name" class="block_nav"><a itemprop="url" href="/community" class="block_nav_link">交流专区</a></div><div itemprop="name" class="block_nav"><a itemprop="url" href="https://fuwu.weixin.qq.com" target="_blank" class="block_nav_link">服务市场</a></div><div itemprop="name" class="block_nav"><a itemprop="url" href="/community/business" class="block_nav_link">微信学堂</a></div><div itemprop="name" class="block_nav"><a itemprop="url" href="https://developers.weixin.qq.com/miniprogram/dev/framework/" target="__blank" class="block_nav_link">文档</a></div></div></div></div><div class="header_ctrls js_header_ctrls"><div class="header_ctrls_extend"><a href="https://developers.weixin.qq.com/community/search" class="for_mobile icon_mobile_search_global"></a><div class="header_ctrls_meta header_ctrls_meta_navigation"><dl class="header_navigation_box"><a href="https://developers.weixin.qq.com/community/search" class="icon_mobile_search_global for_pc"></a><dt class="header_navigation_box_header wxapp">小程序</dt><dd class="header_navigation_box_body" style="display:none;"><!----><ul class="header_navigation_box_item_box"><li class="header_navigation_box_item header_navigation_box_item_orientation"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">常用主页</dt><dd class="header_navigation_box_item_list_item"><a href="/community" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_wxapp"><span class="header_navigation_box_item_list_item_icon"></span><p class="header_navigation_box_item_list_item_desc">小程序</p></a><a href="/community/minigame" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_minigame"><span class="header_navigation_box_item_list_item_icon"></span><p class="header_navigation_box_item_list_item_desc">小游戏</p></a><a href="/community/enterprisewechat" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_wxenterprise"><span class="header_navigation_box_item_list_item_icon "></span><p class="header_navigation_box_item_list_item_desc">企业微信</p></a><a href="/community/pay" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_wxpay"><span class="header_navigation_box_item_list_item_icon header_navigation_box_item_list_item_pay"></span><p class="header_navigation_box_item_list_item_desc">微信支付</p></a></dd><dd class="header_navigation_box_item_list_item"><span class="header_navigation_box_item_list_item_inner"></span><span class="header_navigation_box_item_list_item_inner"></span><span class="header_navigation_box_item_list_item_inner"></span><span class="header_navigation_box_item_list_item_inner"></span></dd></dl></li><li check-reduce class="header_navigation_box_item header_navigation_box_item__with-list"><a href="https://fuwu.weixin.qq.com" target="_blank" class="header_navigation_box_item_inner"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">服务市场</dt></dl></a><a href="/community/business" target="_blank" class="header_navigation_box_item_inner"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">微信学堂</dt></dl></a><a itemprop="url" target="_blank" href="https://developers.weixin.qq.com/miniprogram/dev/framework/" class="header_navigation_box_item_inner"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">文档</dt></dl></a></li><!----></ul></dd></dl></div><div class="js_search_header_box header_ctrls_meta top_search_box for_pc"><a href="javascript:;" class="js_search_btn search_switch"><i class="icon_search"></i></a><span class="js_input_box search_input_box active"><input type="text" placeholder="搜索你要的内容" value="" class="js_input"><!----></span><!----></div><div check-reduce="" class="dib"><div class="header_ctrls_meta top_notice_box header_adjust_height" style="display: none;"><span class="account_inbox_switch"><i class="icon_inbox opacity"></i></span></div><a class="js_redirect_to_loginpage hd_login_link">登录</a></div></div></div></div></div><!----></div></div><div id="SubNav" class="sub__nav sub__nav____headSub"><div check-reduce class="block_nav_wrp"><div class="block_nav_wrp_cont"><!----><ul class="block_navs"><div><li class="block_nav selected"><meta check-reduce itemprop="name" content="小程序"><meta check-reduce itemprop="url" content="/community"><a href="/community" class="block_nav_link router-link-active">小程序</a></li><li class="block_nav"><meta check-reduce itemprop="name" content="小游戏"><meta check-reduce itemprop="url" content="/community/minigame"><a href="/community/minigame" class="block_nav_link">小游戏</a></li><li class="block_nav"><meta check-reduce itemprop="name" content="微信小店"><meta check-reduce itemprop="url" content="/community/minihome/mixflow/1929579418541178884"><a href="/community/minihome/mixflow/1929579418541178884" class="block_nav_link">微信小店</a></li><li class="block_nav"><meta check-reduce itemprop="name" content="多端应用"><meta check-reduce itemprop="url" content="/community/minihome/mixflow/2889188691586351105"><a href="/community/minihome/mixflow/2889188691586351105" class="block_nav_link">多端应用</a></li><li class="block_nav"><meta check-reduce itemprop="name" content="微信支付"><meta check-reduce itemprop="url" content="/community/pay"><a href="/community/pay" class="block_nav_link">微信支付</a></li></div><!----></ul><!----><!----><div class="search_hold"></div><!----></div></div><!----></div></div><div id="body" class="body page_simple"><div class="container_box"><div class="home_page"><!----><a href="javascript:;" class="page-widget__h5__posted for_mobile"></a><div id="pulldown-background" check-reduce class="pulldown_background list_loading" style="display: none;"><i class="weui-loading"></i>正在加载...</div><div id="pulldown-cnt" class="block_box clear_fix"><div class="post_box "><div class="mode__page__plate__head announcement_cnt"><div class="mode__page__plate__head__inner"><div class="mode__page__plate__head__head"><div class="mode__page__plate__head__head__main"><span class="mode__page__plate__head__icon mode__page__plate__head__icon__miniprogram"></span><p class="mode__page__plate__head__title">小程序</p></div><div class="mode__page__plate__head__head__extend">关注</div></div><div class="mode__page__plate__head__foot has-new"><div class="mode__page__plate__head__foot__left"><span class="mode__page__plate__head__foot__head">官方公告</span><div class="mode__page__plate__head__foot__main"><a href="/community/develop/doc/0004885e3a04482613e2b4d0961001" target="_blank" class="mode__page__plate__head__info"><!---->社区每周|小程序基础库 3.7.8 更新及上周问题反馈处理进度(02.05-02.08)</a><span check-reduce class="mode__page__plate__head__foot__main__time">星期五 16:45</span></div></div><a href="/community/develop/list/2?id=" target="_blank" class="mode__page__plate__head__foot__extend">全部公告</a></div></div></div><div class="home_page_content_panel"><div id="post-list" check-reduce class="home_page_content_panel_head"><div class="mod_hd_extra"><a class="btn btn_primary js_new_blog_btn">发帖</a></div></div><div class="mod_default_bd"><div><div data-route-path="MixFlowBlogList" data-route-name="MixFlowBlogList" class="simple_container"><h1 class="simple_container_outside_header header_sticky"><span class="tab_extend">推荐<i class="ic ic_filter"></i></span><div id="topTab" class="mod_nav_tab title_tab_wrp title_tab post_filter_opr"><ul data-index="0" class="tab_navs title_tab"><li data-index="0" class="tab_nav selected first">全部</li><li data-index="1" class="tab_nav">文章</li><li data-index="2" class="tab_nav">问答</li></ul></div></h1><div class="simple_container_body"><div class="simple_container_body_header"><div class="post_tags_tab select_tags_wrp"><span class="post_tags"><a href="/community/develop/mixflow?id=&amp;tag=" class="post_tag selected">推荐</a></span><span class="post_tags"><a href="/community/develop/mixflow?id=&amp;tag=appreciate" class="post_tag">我的关注</a></span></div><!----></div><!----><!----><div class="simple_container_body_body hasHeader"><!----><div class="mod_article_list_container mod_mix_flow_list_item"><ul class="post_list"><li data-doc-id="0002865b80c7d0445fe2a18a066400" data-title="我们项目域名提示:非微信官方网页,请确认是否继续访问 如何处理?" data-create-time="1739792346" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/0002865b80c7d0445fe2a18a066400" target="_blank">我们项目域名提示:非微信官方网页,请确认是否继续访问 如何处理?</a><meta check-reduce itemprop="name" content="我们项目域名提示:非微信官方网页,请确认是否继续访问 如何处理?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0002865b80c7d0445fe2a18a066400"></h2><!----><p check-reduce class="post_desc">[图片] 受限域名为:https://xyt.kindlink.top/ [图片] 域名已经备案并在公众号后台添加白名单,且2个月前已经申请过正常访问,现在又被标注为非官方网页,要如何处理??? </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">刚刚</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>15</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/oCJUsw_QO5uTp7-sew6Znk9xbPxU" target="_blank" class="best_comment_author"><img src="https://wx.qlogo.cn/mmhead/PiajxSqBRaELLVO5yQe5OcFob9OsjTBxlcdBgcz3cDZYEEJG0TDcqCg/0" alt="" class="ueser_head">芒草 <div class="checking_state_new"><span title="楼主" class="lz_new"></span><!----><!----><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/0002865b80c7d0445fe2a18a066400?jumpto=comment&amp;commentid=000aa6ecb28df8045fe284e3e668" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p><a href="https://developers.weixin.qq.com/community/develop/doc/0006e80698ca081cd9b2ff0e366400" rel="noopener noreferrer" target="_blank">https://developers.weixin.qq.com/community/develop/doc/0006e80698ca081cd9b2ff0e366400</a> 这是一个月前的提问,当时处理了,现在又出现了同样的问题,怎样才能一次性解决好?</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">0</span></div></div></div></li><li data-doc-id="00004a9a7686b8845de2c9a3563c00" data-title="交易保障金额退款一直提示审核失败?" data-create-time="1739791791" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/00004a9a7686b8845de2c9a3563c00" target="_blank">交易保障金额退款一直提示审核失败?</a><meta check-reduce itemprop="name" content="交易保障金额退款一直提示审核失败?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/00004a9a7686b8845de2c9a3563c00"></h2><!----><p check-reduce class="post_desc">[图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">13分钟前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>28</span></div></div><div class="best_comment"><div class="best_comment_info"><div class="best_comment_author ai_comment"><img src="https://res.wx.qq.com/op_res/hR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig" alt="" class="ueser_head">智能回答 <!----></div></div><div class="best_comment_link"><a href="/community/develop/doc/00004a9a7686b8845de2c9a3563c00?jumpto=comment&amp;commentid=00086e7e970908845de294c576d0" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content">针对“交易保障金额退款一直提示审核失败”的问题,以下是一些可能的原因及解决方案: ### 可能原因 1. **不符合退保条件**: - 退款申请可能未满足平台的退保政策要求。 - 例如,某些情况下,交易保障金额可能不允许退款。 2. **信息填写错误**: - 提交的退款申请中可能存在错误或不完整的信息。 - 如交易时间、金额、订单号等关键信息填写有误。 3. **系统问题**: - 平台系统可能出现暂时性的故障或维护,导致审核失败。 ### 解决方案 1. **仔细阅读退保规则**: - 根据提示,查看并确认自己是否符合退保条件。 - 可以参考平台的官方退保政策说明。 2. **核对并修正申请信息**: - 仔细检查退款申请中填写的所有信息,确保准确无误。 - 如有错误,请及时修改并重新提交申请。 3. **联系客服咨询**: - 若确认自己符合退保条件且信息无误,仍提示审核失败,建议联系平台客服。 - 客服可以提供更详细的审核失败原因及解决方案。 ### 操作建议 - 在遇到退保审核未通过的情况时,首先不要慌张,按照上述步骤逐一排查问题。 - 如果多次尝试仍无法解决问题,务必及时联系客服寻求帮助。 希望以上信息能帮助您顺利解决退款审核失败的问题。</div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><!----></div></div></li><li data-doc-id="0002e2a7f788889456e21d06768c00" data-title="类目审核时,小程序类目提交资质主体需与小程序注册主体一致?" data-create-time="1739790043" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/0002e2a7f788889456e21d06768c00" target="_blank">类目审核时,小程序类目提交资质主体需与小程序注册主体一致?</a><meta check-reduce itemprop="name" content="类目审核时,小程序类目提交资质主体需与小程序注册主体一致?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0002e2a7f788889456e21d06768c00"></h2><!----><p check-reduce class="post_desc">类目审核时提示小程序类目提交资质主体需与小程序注册主体一致。 营业执照上名字为:岳阳花媛医疗美容有限公司 医疗机构执业许可证上名字为:岳阳市岳阳楼区花媛医疗美容门诊部 法人一致,注册地址一致,很明显是同一个机构,为什么不给通过。 我们已经提交了情况说明并盖了公司公章和门诊部公章,保证资料的真实性。 部分地区的卫生局没有官网或者官网不公示设立相关的信息。 客服说卫生局出证明文件并且盖章,这是不太现实的,官方不会轻易在其他文件去盖公章。 希望客服能够从现实出发,不要死脑筋。 </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">42分钟前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>2</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>241</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/oCJUsw_2Sw6k-tduvV5RPAGZCzlE" target="_blank" class="best_comment_author"><img src="https://wx.qlogo.cn/mmhead/IlxmQLqA0RZDeU1R6Teo7yuvwIiaEf9P1xicPib3CfonUU/0" alt="" class="ueser_head">拾忆 <!----></a></div><div class="best_comment_link"><a href="/community/develop/doc/0002e2a7f788889456e21d06768c00?jumpto=comment&amp;commentid=000e26d6780e40145ce2e509c620" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>这种情况,建议门诊部单独注册一个小程序,微信也不会为了你的个例去改变他们的规则。</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">4</span></div></div></div></li><li data-doc-id="00088054c9c5f01456e2636e566800" data-title="永久限制【应用在线】.关于这种违规的疑问?" data-create-time="1739790000" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/00088054c9c5f01456e2636e566800" target="_blank">永久限制【应用在线】.关于这种违规的疑问?</a><meta check-reduce itemprop="name" content="永久限制【应用在线】.关于这种违规的疑问?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/00088054c9c5f01456e2636e566800"></h2><!----><p check-reduce class="post_desc">营运过程中没有认真学习处罚规则,导致违规,代价惨重。以后一定要好好学习处罚规则.尽量避免违规。 但这次违规中,有两个疑问,请官方给予解答。疑问一: 1.【通知中心】中的违规消息显示:请遵守规范,修改内容或行为后可重新发布服务。如果再有违规情况,将加重处罚至永久下线服务或封禁账号处理 按这句话理解,就是:整改完后可以重新发布服务(上架小程序)。 2.【违规记录】中的处理内容:永久限制【应用在线】。 按这句话理解:就是永久限制(永久限制上架小程序)。 请问:这种情况,我按要求把小程序整改后,能不能再上架小程序服务?附图:[图片][图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">42分钟前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>0</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>222</span></div></div><!----></li><li data-doc-id="00008cf9a104d80455e2f6d3d6b400" data-title="已备案域名提示 ”无法确认该网页的安全性,请谨慎访问“,导致小程序普通链接跳转不生效?" data-create-time="1739789696" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/00008cf9a104d80455e2f6d3d6b400" target="_blank">已备案域名提示 ”无法确认该网页的安全性,请谨慎访问“,导致小程序普通链接跳转不生效?</a><meta check-reduce itemprop="name" content="已备案域名提示 ”无法确认该网页的安全性,请谨慎访问“,导致小程序普通链接跳转不生效?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/00008cf9a104d80455e2f6d3d6b400"></h2><!----><p check-reduce class="post_desc">您好,公司域名已备案(“ptnbr.com”),用微信访问H5网站时会提示“无法确认该网页的安全性,请谨慎访问”的提示语,尝试了“申请恢复”,现在影响客户体验,且小程序设置普通链接二维码跳转小程序不生效也可能与这有关。麻烦审核一下,多谢多谢。我需要在哪里查看审核结果和原因呢?想查看具体是什么原因造成 [图片] [图片] [图片] [图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">48分钟前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>0</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>196</span></div></div><!----></li><li data-doc-id="0006c61611c270a453e273f4869400" data-title="小程序刚上线就提示小程序违规,支付功能暂时无法使用?" data-create-time="1739789002" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/0006c61611c270a453e273f4869400" target="_blank">小程序刚上线就提示小程序违规,支付功能暂时无法使用?</a><meta check-reduce itemprop="name" content="小程序刚上线就提示小程序违规,支付功能暂时无法使用?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c61611c270a453e273f4869400"></h2><!----><p check-reduce class="post_desc">[图片] 为什么小程序刚上线就提示小程序违规,支付功能暂时无法使用?怎么解决? 商户和小程序后台也没有违规的信息提示啊。 </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">59分钟前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>2</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>285</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/sq_oDyAl0UqoY02pZk1KnjWo2krCpsw" target="_blank" class="best_comment_author"><img src="https://mmbiz.qpic.cn/sz_mmbiz_png/ZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA/0" alt="" class="ueser_head">微盟 <div class="checking_state_new"><!----><!----><span title="企业用户" class="cy_new"></span><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/0006c61611c270a453e273f4869400?jumpto=comment&amp;commentid=000aeaf62fce10c455e25e57c660" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p><span style="font-size: 14px;">登陆小程序后台接入订单发货管理,通过后封禁将会解除</span></p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:;"> 1 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">0</span></div></div></div></li><li data-doc-id="000cc6d53901981450e252f2d66c00" data-title="怀疑注释有问题" data-create-time="1739788233" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000cc6d53901981450e252f2d66c00" target="_blank">怀疑注释有问题</a><meta check-reduce itemprop="name" content="怀疑注释有问题"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000cc6d53901981450e252f2d66c00"></h2><!----><p check-reduce class="post_desc">order_id 注释写的商品id,是微信小店的订单id吧 [图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">1小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>268</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/sq_oDyAl0UqoY02pZk1KnjWo2krCpsw" target="_blank" class="best_comment_author"><img src="https://mmbiz.qpic.cn/sz_mmbiz_png/ZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA/0" alt="" class="ueser_head">微盟 <div class="checking_state_new"><!----><!----><span title="企业用户" class="cy_new"></span><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/000cc6d53901981450e252f2d66c00?jumpto=comment&amp;commentid=000c64f0c8c8905454e2f537a668" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>应该是<span style="font-size: 14px;">微信小店的订单id</span></p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:;"> 1 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">0</span></div></div></div></li><li data-doc-id="0008a66f37c900735be2c5ea861000" data-title="第三方代开发小程序提交代码审核报system error rid: 67b2d0f2-71e8b6b" data-create-time="1739786881" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/0008a66f37c900735be2c5ea861000" target="_blank">第三方代开发小程序提交代码审核报system error rid: 67b2d0f2-71e8b6b</a><meta check-reduce itemprop="name" content="第三方代开发小程序提交代码审核报system error rid: 67b2d0f2-71e8b6b"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0008a66f37c900735be2c5ea861000"></h2><!----><p check-reduce class="post_desc">https://developers.weixin.qq.com/doc/oplatform/Return_codes/Return_code_descriptions_new.html 第三方代开发小程序提交代码审核报system error rid: 67b2d0f2-71e8b6b,隔了几个小时重试也一直不行 </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">1小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>0</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>475</span></div></div><!----></li><li data-doc-id="00006e24620cf8535ae27270461000" data-title="电子发票永久授权页插件申请一直是待确认状态,如何联系确认?" data-create-time="1739786678" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/00006e24620cf8535ae27270461000" target="_blank">电子发票永久授权页插件申请一直是待确认状态,如何联系确认?</a><meta check-reduce itemprop="name" content="电子发票永久授权页插件申请一直是待确认状态,如何联系确认?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/00006e24620cf8535ae27270461000"></h2><!----><p check-reduce class="post_desc">[图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">1小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>69</span></div></div><div class="best_comment"><div class="best_comment_info"><div class="best_comment_author ai_comment"><img src="https://res.wx.qq.com/op_res/hR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig" alt="" class="ueser_head">智能回答 <!----></div></div><div class="best_comment_link"><a href="/community/develop/doc/00006e24620cf8535ae27270461000?jumpto=comment&amp;commentid=000ee28782cd68935ae2ede4766c" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content">针对“电子发票永久授权页插件申请一直是待确认状态,如何联系确认?”这一问题,您可以尝试以下几种方法来寻求确认和解决: ### 方法一:通过小程序后台留言 1. 登录微信小程序管理后台。 2. 进入“设置”页面,在底部找到“留言反馈”选项。 3. 在留言框中详细描述您的问题,并附上插件的相关信息(如插件名称、申请时间等)。 4. 提交留言后,微信团队会在1-3个工作日内回复您。 ### 方法二:联系微信客服 1. 打开微信,点击右上角的“我”选项。 2. 进入“设置”页面,找到“帮助与反馈”选项。 3. 在底部菜单栏中选择“联系客服”。 4. 向客服人员说明您的情况,并提供必要的信息以便他们协助处理。 ### 方法三:参与开发者社区讨论 1. 访问微信小程序开发者社区。 2. 在搜索框中输入“电子发票永久授权页插件申请待确认”等关键词。 3. 查看是否有其他开发者遇到类似问题,并参考他们的解决方案。 4. 如果没有找到合适答案,可以在相关话题下发布您的问题,寻求社区成员的帮助。 请注意,以上方法可能需要一定时间才能得到回复,请耐心等待。</div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><!----></div></div></li><li data-doc-id="0002264b108ab8a359e2e475a66c00" data-title="微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?" data-create-time="1739786322" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/0002264b108ab8a359e2e475a66c00" target="_blank">微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?</a><meta check-reduce itemprop="name" content="微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0002264b108ab8a359e2e475a66c00"></h2><!----><p check-reduce class="post_desc">请求解除网站弹窗提醒 [图片][图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">1小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>53</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/sq_oDyAl0UqoY02pZk1KnjWo2krCpsw" target="_blank" class="best_comment_author"><img src="https://mmbiz.qpic.cn/sz_mmbiz_png/ZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA/0" alt="" class="ueser_head">微盟 <div class="checking_state_new"><!----><!----><span title="企业用户" class="cy_new"></span><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/0002264b108ab8a359e2e475a66c00?jumpto=comment&amp;commentid=00084adf7ec4b8e456e2ed1bb6a4" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>检查网站备案信息、添加网站到微信信任列表、使用微信JS-SDK(配置JS接口安全域名)</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">1</span></div></div></div></li><li data-doc-id="000ae67da2cab81353e21467161400" data-title="小店换货后再退货,获取到的退货商品还是原单商品,是BUG还是有什么处理方案?" data-create-time="1739784862" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000ae67da2cab81353e21467161400" target="_blank">小店换货后再退货,获取到的退货商品还是原单商品,是BUG还是有什么处理方案?</a><meta check-reduce itemprop="name" content="小店换货后再退货,获取到的退货商品还是原单商品,是BUG还是有什么处理方案?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000ae67da2cab81353e21467161400"></h2><!----><p check-reduce class="post_desc">https://api.weixin.qq.com/channels/ec/aftersale/getaftersaleorder 这个接口获取的数据,从product_info获取的商品还是换货前的SKU,与客户换货后退货的商品不一致 </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>0</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>629</span></div></div><!----></li><li data-doc-id="000c067f270460d353e2ac75567000" data-title="真机调试一切正常,安卓版登录报ERR_SSL_PROTOCOL_ERROR,请问这会是什么情况?" data-create-time="1739784722" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000c067f270460d353e2ac75567000" target="_blank">真机调试一切正常,安卓版登录报ERR_SSL_PROTOCOL_ERROR,请问这会是什么情况?</a><meta check-reduce itemprop="name" content="真机调试一切正常,安卓版登录报ERR_SSL_PROTOCOL_ERROR,请问这会是什么情况?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000c067f270460d353e2ac75567000"></h2><!----><p check-reduce class="post_desc">我的小程序遇到一个非常头疼的问题。往各路大神指点迷津: 1、小程序真机调试(未勾选不校验合法域名)一切正常; 2、发布后,IOS手机一切正常。但安卓版登录就报request:failnet::ERR SSL PROTOCOL; 3、www.myssl.cn测试接口网站,三个证书显示均正常; 4、ssllabs网站评测为B级,TLS 1.2开启,其余关闭。报告详情:https://www.ssllabs.com/ssltest/analyze.html?d=sz.wisdudu.com 各位大神,这会是什么情况啊? </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>3</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>511</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/sq_omvH50DIOyKL9YfbLRpNNkSYMhVc" target="_blank" class="best_comment_author"><img src="https://mmbiz.qpic.cn/mmbiz_png/rc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA/0?wx_fmt=png" alt="" class="ueser_head">CRMEB <div class="checking_state_new"><!----><!----><span title="企业用户" class="cy_new"></span><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/000c067f270460d353e2ac75567000?jumpto=comment&amp;commentid=000ea82d464b98b354e202cbb61c" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>ssl证书到a才能行</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">1</span></div></div></div></li><li data-doc-id="000aa2a8204a708352e28014f66400" data-title="小程序无法收款?" data-create-time="1739784456" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000aa2a8204a708352e28014f66400" target="_blank">小程序无法收款?</a><meta check-reduce itemprop="name" content="小程序无法收款?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000aa2a8204a708352e28014f66400"></h2><!----><p check-reduce class="post_desc">小程序原关联商户号被关闭收款,后面重新关联了不同主体的商户号,已关联成功,但还是不能收款,小程序点击收款无反应 [图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>2</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>493</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/oCJUsw8yFnOFj4STQDwbDwK8ix_0" target="_blank" class="best_comment_author"><img src="https://wx.qlogo.cn/mmopen/vi_32/iaP7MZOywhx0fy5qib7KUxicFaQ0r8Yfag7jCqptNBenhqlSPQrx6KFvPiaCicYE7NicHeoQh4PJFmibobv43jbJ2so1r2fp3cjgCApjmw07sedoZg/0" alt="" class="ueser_head">Memory (私信不回复) <!----></a></div><div class="best_comment_link"><a href="/community/develop/doc/000aa2a8204a708352e28014f66400?jumpto=comment&amp;commentid=00066492fa4b88a353e2b941764c" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>报错呢?</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">0</span></div></div></div></li><li data-doc-id="000288fc37c408c350e266e4b68c00" data-title="一个微信号只能绑定4个小程序?" data-create-time="1739783928" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000288fc37c408c350e266e4b68c00" target="_blank">一个微信号只能绑定4个小程序?</a><meta check-reduce itemprop="name" content="一个微信号只能绑定4个小程序?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000288fc37c408c350e266e4b68c00"></h2><!----><p check-reduce class="post_desc">[图片][图片] 微信号只绑定了四个小程序,其他同主体的个人小程序,换绑到这个微信,为什么提示 此微信号上限了 微信号:wxid_dtfzkntagw4d12 </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>479</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/sq_omvH50DIOyKL9YfbLRpNNkSYMhVc" target="_blank" class="best_comment_author"><img src="https://mmbiz.qpic.cn/mmbiz_png/rc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA/0?wx_fmt=png" alt="" class="ueser_head">CRMEB <div class="checking_state_new"><!----><!----><span title="企业用户" class="cy_new"></span><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/000288fc37c408c350e266e4b68c00?jumpto=comment&amp;commentid=000062fae4cea03354e2e7ae7618" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>公众号小程序总共加起来不能超过5个</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">1</span></div></div></div></li><li data-doc-id="000886af450380d25fe27089b6b400" data-title="公众号已经迁移,无法解绑管理员,怎么解决?" data-create-time="1739783685" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000886af450380d25fe27089b6b400" target="_blank">公众号已经迁移,无法解绑管理员,怎么解决?</a><meta check-reduce itemprop="name" content="公众号已经迁移,无法解绑管理员,怎么解决?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000886af450380d25fe27089b6b400"></h2><!----><p check-reduce class="post_desc">已经迁移公众号(原公众号):gh_cc62592f5f9f (awm@zoomlion.com) 已经迁移成功公众号(新公众号):中联重科智能高机 (liuming@263.net) 管理员微信号ID:seashadow 公众号已经迁移,但是依然挂在管理员微信下,占用 管理员名额,请问怎么解决? </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>0</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>139</span></div></div><!----></li><li data-doc-id="000ca89f10c820225ee24ad816bc00" data-title="如何接入微信小店的虚拟会员商品,直接充值到手机号业务?" data-create-time="1739783359" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000ca89f10c820225ee24ad816bc00" target="_blank">如何接入微信小店的虚拟会员商品,直接充值到手机号业务?</a><meta check-reduce itemprop="name" content="如何接入微信小店的虚拟会员商品,直接充值到手机号业务?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000ca89f10c820225ee24ad816bc00"></h2><!----><p check-reduce class="post_desc">想接入微信小店下面这种虚拟会员产品直接充值到手机号的业务,要怎么接入,有没有对接文档之类的 [图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>552</span></div></div><div class="best_comment"><div class="best_comment_info"><div class="best_comment_author ai_comment"><img src="https://res.wx.qq.com/op_res/hR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig" alt="" class="ueser_head">智能回答 <!----></div></div><div class="best_comment_link"><a href="/community/develop/doc/000ca89f10c820225ee24ad816bc00?jumpto=comment&amp;commentid=000c2e15280eb8825ee2cdf626b4" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content">要接入微信小店的虚拟会员商品并实现直接充值到手机号的业务,您可以参考以下步骤: **一、开通虚拟支付能力** 1. 确保您的小程序满足开通条件,包括主体类型为已认证小程序、企业小程序类型以及具备相应的运营资质。 2. 在小程序管理后台的虚拟支付模块中开通新的微信支付商户号,并按照指引完成协议签署及资料上传。 **二、实现虚拟会员商品充值** 1. 在小程序内展示虚拟会员商品,如爱奇艺黄金会员月卡等,并提供充值入口。 2. 用户选择商品并输入手机号后,调用微信支付接口完成支付流程。 3. 支付成功后,您需要在后台处理充值逻辑,包括验证手机号、充值会员权益等。 **三、绑定手机号** 为了确保充值到正确的手机号,您可以在小程序内实现手机号绑定功能。通过调用微信提供的绑定手机号接口,引导用户输入手机号并接收验证码进行验证。 **注意事项** * 在实现过程中,请确保遵守微信小程序的开发规范和政策要求。 * 虚拟支付功能目前暂不开放苹果iOS系统App内购买方式,仅向安卓及其他手机系统提供。 * 开发者需在2.19.2或以上版本基础库中调用相关接口。 请注意,以上步骤仅提供一般性指导,具体实现细节可能因小程序类型、业务需求等因素而有所不同。如有需要,建议您查阅微信小程序官方文档或联系微信客服获取更详细的指导和支持。</div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><!----></div></div></li><li data-doc-id="000e643c388fa0425de22cb2961800" data-title="微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?" data-create-time="1739783133" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000e643c388fa0425de22cb2961800" target="_blank">微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?</a><meta check-reduce itemprop="name" content="微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000e643c388fa0425de22cb2961800"></h2><!----><p check-reduce class="post_desc">[图片][图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>2</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>147</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/oCJUsw-HdgmTneWLLO8cZPDwgS8g" target="_blank" class="best_comment_author"><img src="https://wx.qlogo.cn/mmhead/PiajxSqBRaEI2IaRP4HFBMuB9AibKVKhNUcdLVYCyT0PF4LPOUMOvxVA/0" alt="" class="ueser_head">风清雾散云开见日出 <!----></a></div><div class="best_comment_link"><a href="/community/develop/doc/000e643c388fa0425de22cb2961800?jumpto=comment&amp;commentid=000ae827e58e50b25de22ec3e6b8" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>申请恢复试试</p><p>[图片]</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">3</span></div></div></div></li><li data-doc-id="0008849a3883a0925de26a73c6fc00" data-title="配置订单详情路径中提到的权限集182是指哪个权限,文中未描述" data-create-time="1739783133" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/0008849a3883a0925de26a73c6fc00" target="_blank">配置订单详情路径中提到的权限集182是指哪个权限,文中未描述</a><meta check-reduce itemprop="name" content="配置订单详情路径中提到的权限集182是指哪个权限,文中未描述"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0008849a3883a0925de26a73c6fc00"></h2><!----><p check-reduce class="post_desc">https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/business-capabilities/order_center/order_center.html 权限集 182 是指哪个权限? 文档(https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/product/miniprogram_authority.html)中未体现。 </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>606</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/oCJUsw0NU8gCZlvKZLZN8jytSvWg" target="_blank" class="best_comment_author"><img src="https://wx.qlogo.cn/mmhead/UnOvONvSM0f3iauEue5bSEBkgT6k6Rj7eXvJiahHiczNImIjBv4pjiceIsk0JcDexppE53joIXxgaOY/0" alt="" class="ueser_head">賴翔 <div class="checking_state_new"><span title="楼主" class="lz_new"></span><!----><!----><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/0008849a3883a0925de26a73c6fc00?jumpto=comment&amp;commentid=000c2a2fd2c870f25ee273abc61c" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>[图片]</p><p>在开放后台查看到了,辛苦更新文档</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">0</span></div></div></div></li><li data-doc-id="00040029dac448d25ce2996aa6bc00" data-title="如何区分用户账号是香港还是中国大陆?" data-create-time="1739783026" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/00040029dac448d25ce2996aa6bc00" target="_blank">如何区分用户账号是香港还是中国大陆?</a><meta check-reduce itemprop="name" content="如何区分用户账号是香港还是中国大陆?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/00040029dac448d25ce2996aa6bc00"></h2><!----><p check-reduce class="post_desc">想请教一下各位! 我们用到微信支付分这个产品,但是它目前仅支持中国大陆用户,而我们的业务存在香港用户,所以有没有办法能够判断用户类型,如果是香港用户,我们就提前屏蔽掉微信支付分的支付流程,避免用户多余操作的步骤 [图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>2</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>206</span></div></div><div class="best_comment"><div class="best_comment_info"><a href="/community/personal/sq_omvH50DIOyKL9YfbLRpNNkSYMhVc" target="_blank" class="best_comment_author"><img src="https://mmbiz.qpic.cn/mmbiz_png/rc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA/0?wx_fmt=png" alt="" class="ueser_head">CRMEB <div class="checking_state_new"><!----><!----><span title="企业用户" class="cy_new"></span><!----></div></a></div><div class="best_comment_link"><a href="/community/develop/doc/00040029dac448d25ce2996aa6bc00?jumpto=comment&amp;commentid=000a26cd3c0c801355e2e3df1668" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content"><p>通过用户提交的信息判断</p></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><div class="best_comment_discuss"><i class="icon_post_opr discuss"></i><span class="best_comment_num">0</span></div></div></div></li><li data-doc-id="000aa2fce60c08b25ae2a845466000" data-title="小程序视频号交易组件现在能不能使用,需要什么条件。 怎么开通?" data-create-time="1739782502" data-blog-category="1" itemscope="itemscope" itemtype="https://schema.org/Question" class="post_item post_overview post_item_simple_qa"><h2 class="post_title"><!----><!----><a href="/community/develop/doc/000aa2fce60c08b25ae2a845466000" target="_blank">小程序视频号交易组件现在能不能使用,需要什么条件。 怎么开通?</a><meta check-reduce itemprop="name" content="小程序视频号交易组件现在能不能使用,需要什么条件。 怎么开通?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/000aa2fce60c08b25ae2a845466000"></h2><!----><p check-reduce class="post_desc">[图片] </p><div check-reduce class="post_tags_container"></div><div class="post_info"><!----><span check-reduce class="post_group">[问答]</span><em class="post_time post_info_meta">2小时前</em><div class="post_info_extend"><!----><span itemprop="commentCount" class="post_discuss_num post_info_meta"><i class="icon_post_opr_discuss"></i>1</span><span class="post_discuss_num post_info_meta"><i class="icon_post_opr_view"></i>709</span></div></div><div class="best_comment"><div class="best_comment_info"><div class="best_comment_author ai_comment"><img src="https://res.wx.qq.com/op_res/hR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig" alt="" class="ueser_head">智能回答 <!----></div></div><div class="best_comment_link"><a href="/community/develop/doc/000aa2fce60c08b25ae2a845466000?jumpto=comment&amp;commentid=0002e01cf20848a25ae29d3c0668" target="_blank" itemprop="comment" class="best_comment_article"><div itemprop="text" class="post_comment_content">小程序视频号交易组件目前是可以使用的。要开通此组件,你需要满足以下条件: 1. 拥有一个小程序账号,且该账号在半年内无严重违规行为。 2. 小程序开发者应为国内非个人主体,即企业或个体工商户。 开通流程如下: 1. 登录微信公众平台,进入小程序管理后台。 2. 在“交易组件”菜单中,选择标准版交易组件开通功能。 3. 提交相关资料及证件进行审核。 4. 审核通过后,按照指引完成开店任务。 5. 将嵌入了组件相关代码的小程序进行发布。 完成以上步骤后,你就可以在小程序中使用视频号交易组件了。该组件支持标准化接入视频号橱窗带货和直播卖货,并能实现商品展示、下单购买、订单管理等完整交易能力。</div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><p disabled="disabled" class="btn btn_default" style="margin:12px 0;color:#999;">待楼主反馈</p><!----></div></a></div><div check-reduce class="post_best_comment_info"><span class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用<span style="display:none;"> 0 </span></span><!----></div></div></li></ul><!----><!----><div class="list_loading" style="display:none;"><i class="weui-loading"></i>正在加载...</div></div></div></div></div></div></div></div></div><div check-reduce class="post_box_others"><div check-reduce="" class="block-list public_box page_mod_blog_panel" style="display:none;"><a href="/community/personal/" target="_blank" class="page_mod_blog_panel_head"><img src="https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0?wx_fmt=png" alt="我的头像" width="50px" height="50px" class="page_mod_blog_panel_head_avatar"><div class="page_mod_blog_panel_head_bd"><div class="page_mod_blog__nickname"><p class="page_mod_blog_panel_head_name"></p><!----><!----><!----><div title="成长等级:1" class="mode__grow-up-tag mode__grow-up-tag__small"><span class="grow__up__tag__icon grow__up__tag__growup1__icon grow__up__tag__growup1__icon"></span></div></div><p class="page_mod_blog_panel_head_desc">暂无个人介绍</p></div></a><div class="page_mod_blog_panel_body"><a href="/community/personal//article#personaltab" target="_blank" class="page_mod_blog_panel_body_item"><p class="page_mod_blog_panel_body_item_title">发布文章</p><p class="page_mod_blog_panel_body_item_desc">0</p></a><a href="/community/personal//answer#personaltab" target="_blank" class="page_mod_blog_panel_body_item"><p class="page_mod_blog_panel_body_item_title">回答</p><p class="page_mod_blog_panel_body_item_desc">0</p></a><a href="/community/personal//appreciatelist/1" target="_blank" class="page_mod_blog_panel_body_item"><p class="page_mod_blog_panel_body_item_title">关注者</p><p class="page_mod_blog_panel_body_item_desc">0</p></a></div><div class="page_mod_blog_panel_foot"><a href="/community/personal//follow#personaltab" target="_blank" class="page_mod_blog_panel_foot_item">我关注的问答</a><a href="/community/personal//fav#personaltab" target="_blank" class="page_mod_blog_panel_foot_item">我的收藏</a></div></div><!----><!----><div itemscope="itemscope" itemtype="https://schema.org/Thing" check-reduce="" class="block-list public_box page_mod_blog_panel"><div class="block-list__title"><span>最新活动</span><i class="block-list__title__ic icon_home_event"></i></div><div class="block-list__body"><div class="block-list__article-list"><a href="/community/develop/doc/000200a1a500d04e42e265f066bc07" target="_blank"><span class="block-list__article__title__area"><span class="block-list__article__title">正在报名|微信小程序解决方案挑战赛 · 日本站</span><!----></span><span class="block-list__article__date">8小时前</span></a></div></div><div class="skip_more_box"><a href="/community/develop/list/128" target="_blank" class="skip_more"><span class="skip_more_text">更多</span></a></div></div><div check-reduce="" class="block-list page_mod_banner_activity_panel"><a href="/community/develop/doc/000200a1a500d04e42e265f066bc07" target="_blank;" class="page_mod_banner_activity_body"><span class="page_mod_banner_activity_img" style="background-image:url(http://mmbiz.qpic.cn/sz_mmbiz_jpg/7QwmBkKBvvbibicocVDgDNVTT7JWCXkCx0FGcBSNNrTActslytibzjPls5ZGsO0gicmRFy544kVMfE4EQicwItmnlBg/0?wx_fmt=jpeg);"></span></a></div><a href="/community/operate" target="_blank" class="block-list public_box page_mod_block_info_panel"><div class="block-list__title"><span>运营专区</span></div><div class="block-list__body">运营公告、规则解析与使用教程。</div><div class="skip_more_box"><div class="skip_more"><span class="skip_more_text">更多</span></div></div></a><div class="block-list public_box detail_extend tags_box page_mod_blog_panel"><div class="block-list__title"><span>推荐主页</span></div><div class="block-list__body"><div class="tags__list"><a href="/community/minihome/mixflow/1213301129006825473" target="_blank" title="Kbone解决方案" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27DppktIFqTCic5KA0G9fkKdEqAJsloAicVJZyZG6MwWo8VQ9yPsmBT9aZdPHtOBkFJJ21SEat0VrxzQS1w/0?wx_fmt=png" class="tag_item_headimg"> Kbone解决方案 </a><a href="/community/minihome/mixflow/1213999125012856832" target="_blank" title="微信开发者工具" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcWvy2c81A03I6mfT0m1BF8gvl4oWVU1240TR5ibOwPOxPfwr4L000HxbBkSPS7iayC7YqMfcexbRu6A/0?wx_fmt=png" class="tag_item_headimg"> 微信开发者工具 </a><a href="/community/minihome/mixflow/1216387783892418561" target="_blank" title="小程序直播" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27DppnHN915Br0w03KEj4IQWatAGaW1mW9KNldh8Av3vIzG7hPpwLtDt4miaqKTAWztxhllKmcCKbbgtRg/0?wx_fmt=png" class="tag_item_headimg"> 小程序直播 </a><a href="/community/minihome/mixflow/1225494411287609345" target="_blank" title="微信客户端内测" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27DppmRiarDyCXAlcHRRnkYhUgpicxfhDibx3HhCPSUttkducymb6sSicgibbnuBMHU2dhlNzQeUvHlsVTEm0g/0?wx_fmt=png" class="tag_item_headimg"> 微信客户端内测 </a><a href="/community/minihome/mixflow/1255396892104638464" target="_blank" title="微信小程序应用开发赛" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_jpg/UB2CE27DppnTIwIKfRVW4JlZWBPMA9hEXuzLQq7nfKafDD5djclqeLu4m2f1EN6TtIYoFtqQ7iclhFj2j4zvFUA/0?wx_fmt=jpeg" class="tag_item_headimg"> 微信小程序应用开发赛 </a><a href="/community/minihome/mixflow/1270016789551906817" target="_blank" title="服务号对话能力(原微信导购助手)" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27DppnHN915Br0w03KEj4IQWatAXcaPGebOonmk2Qer3WUqYSguItxDnicOOe9emWtNoWJU2fCzL8unfxQ/0?wx_fmt=png" class="tag_item_headimg"> 服务号对话能力(原微信导购助手) </a><a href="/community/minihome/mixflow/1276293464824659971" target="_blank" title="微信公开课" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_jpg/UB2CE27DppmcCZMbD0may5A7QgXGCqsNUPGLYNjiaEOxcVtibic3jQBPERoyjJBk6duSJT1rCJTHuK864icJtehK1g/0?wx_fmt=jpeg" class="tag_item_headimg"> 微信公开课 </a><a href="/community/minihome/mixflow/1277775808983138305" target="_blank" title="公众号" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27DppnHN915Br0w03KEj4IQWatAncjLibpBy447Sl2rWb4J2sTQjIXg54DDApGIjDyPppAxe0E3MmCmficA/0?wx_fmt=png" class="tag_item_headimg"> 公众号 </a><a href="/community/minihome/mixflow/1286298401038155776" target="_blank" title="微信云开发" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_jpg/ibUWDzKf0qcWLuy195Foq7jMnxUwOtTicqCNEydGIN02jmKSaIC5jBKM1xSD8O5VpBUxCaSxiaZPibPA5Y3xRHseFg/0?wx_fmt=jpeg" class="tag_item_headimg"> 微信云开发 </a><a href="/community/minihome/mixflow/1289051127652188162" target="_blank" title="微信OCR识别" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27Dppm1ictMt5ar7ce8pa4vreqfT9uiaFss8NInczCqu7aJW1gt5ArN5Kx6UVzgsofBnm3OT7pvyUDWTrGg/0?wx_fmt=png" class="tag_item_headimg"> 微信OCR识别 </a><a href="/community/minihome/mixflow/1306122493748527104" target="_blank" title="智能对话" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27DppnHN915Br0w03KEj4IQWatAQb19e98Pr0ZttfgHpeCx9gRMn6Zg0wI15RkKsnHCArU6w84S0RKdng/0?wx_fmt=png" class="tag_item_headimg"> 智能对话 </a><a href="/community/minihome/mixflow/1351009109952512001" target="_blank" title="微信小商店" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_jpg/UB2CE27Dppk5HNpPkXxddPOXkxRYfAkJREykl80acQZLOYD7YZECpHicpWetSCQyBwY1v4vSUiaBVdRgicE5XzEhQ/0?wx_fmt=jpeg" class="tag_item_headimg"> 微信小商店 </a><a href="/community/minihome/mixflow/1355698687267438595" target="_blank" title="开放平台服务商专区" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/UB2CE27DppkEiap66eABnUxOphRibT85a6eAvmcOd5cphkMBQZhOlEbg4fDibfPB3P35JMUJHaSL5d8H9wBApUFfw/0?wx_fmt=png" class="tag_item_headimg"> 开放平台服务商专区 </a><a href="/community/minihome/mixflow/1421119558135676931" target="_blank" title="微信人脸核身" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/y7A0icJ4IJict801GNv3RLZSY68nOG7MINgIw3ic7ZuibY0ad4oy1PUzEFIOP0xBqvAsgQKTtaibmticS9SOvsJk0wtA/0?wx_fmt=png" class="tag_item_headimg"> 微信人脸核身 </a><a href="/community/minihome/mixflow/1591986099080445956" target="_blank" title="安全中心" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcWUJMENP3LKfjun8GVnkVfySicoLgaUMCKPs5XYCtrLOmY3ibianEAuKCfpnakW3UMVk9Q5LeuYJZDQg/0?wx_fmt=png" class="tag_item_headimg"> 安全中心 </a><a href="/community/minihome/mixflow/1705397475903111172" target="_blank" title="服务号订阅通知" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcWxffkE7M25xOjSeD6pzzXlLecGc61ckTbL5O5ZgkkibfOKAheU0bOGrkNwTdGYTd6P6sHSUKpSbrA/0?wx_fmt=png" class="tag_item_headimg"> 服务号订阅通知 </a><a href="/community/minihome/mixflow/1757050144291684358" target="_blank" title="小程序联盟" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcWOPBMhMTCfF2nronNibVwEg0oPhKPhT4UFOkZDdvWft3aoKTPvA950UkmJJ2jqtMvyep7Wvlbiaibqg/0?wx_fmt=png" class="tag_item_headimg"> 小程序联盟 </a><a href="/community/minihome/mixflow/1792207662500118536" target="_blank" title="微信物流服务" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcX9ZFx43K65Ce0RibtWGkmbQ0hl5Asvu8YZibpicIiayJibichLicwEuq9P4nia0cqjzEwOJw2vYLVFg5MYmg/0?wx_fmt=png" class="tag_item_headimg"> 微信物流服务 </a><a href="/community/minihome/mixflow/1807982532018110467" target="_blank" title="视频号" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcWfibp1eYN0L6eoMzBahx60T3eUficaDYPajDKagDGMTcibp7ia8Uqv1hsZFoRpRvbFbiaCjURUaC4nicLw/0?wx_fmt=png" class="tag_item_headimg"> 视频号 </a><a href="/community/minihome/mixflow/1825647464540864513" target="_blank" title="We分析" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_jpg/ibUWDzKf0qcU6IpKE0GzP6WO31SRibvy20pPff5YG2FEdyx8L4mEWURXEp7ADLPj464a7SrHVdXjq7LRPy3TQgLw/0?wx_fmt=jpeg" class="tag_item_headimg"> We分析 </a><a href="/community/minihome/mixflow/1841304830498127872" target="_blank" title="微信大数据挑战赛" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_jpg/ibUWDzKf0qcWHn6ph1QTrALmXia4IPY4kLJD8eyNmUT9gjCMrKwgx0B0LhqXiaV9DBHibmBxyMZzVCiaicN3tTezI9OA/0?wx_fmt=jpeg" class="tag_item_headimg"> 微信大数据挑战赛 </a><a href="/community/minihome/mixflow/1919566493118201863" target="_blank" title="微信云托管" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcXo2WkYnsapR31tic4UBRHNbS4gZicxJjaQMZ0YloDspIicWKBib05yf6wD4Axn0P6x9rwhyEic9PeAJ0g/0?wx_fmt=png" class="tag_item_headimg"> 微信云托管 </a><a href="/community/minihome/mixflow/1929579418541178884" target="_blank" title="微信小店" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/sz_mmbiz_png/YUdMOMCYHAv9S9oWvVFOeWafwNNbTRNiaSInRwGyseib4N7VPQvB21Tm8bHKcrFSrrwRaJ2AAzc4MGz661unf3gA/0?wx_fmt=png" class="tag_item_headimg"> 微信小店 </a><a href="/community/minihome/mixflow/2000625688088739840" target="_blank" title="小程序客服能力" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/WdDKjs4PbI5qEkxcJAy1bPz52Wo7IlTQYLRRDp9YfyBbPAADMI302q6H2v5QMYSzhFEvULyriaXwric2opwNmfibg/0?wx_fmt=png" class="tag_item_headimg"> 小程序客服能力 </a><a href="/community/minihome/mixflow/2300422336543784966" target="_blank" title="微搭低代码" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcX14ysRIbst6AzYB1eGh5Bwe54D5xTJ7RIN9WkEubbVgiaSsnicRic5xX9EX1xzEOeMeoOiak7YlPHwBg/0?wx_fmt=png" class="tag_item_headimg"> 微搭低代码 </a><a href="/community/minihome/mixflow/2315318279491616771" target="_blank" title="小程序云测试" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/nm27MmSkv26oBKx4y42gf8Fbz71G3dGMDLaGgdmsBSvibg0HczymxAnpHiaylkxLK9iaRMOmKQVLyAufIBpEiaRQkw/0?wx_fmt=png" class="tag_item_headimg"> 小程序云测试 </a><a href="/community/minihome/mixflow/2351405025148862470" target="_blank" title="硬件服务" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/nm27MmSkv26pOiaZrQNOK8Z8pOibb8QjtRq70h7NsbD6m4bGhYdyibYXsNCVTgExkicFroY6wb3U424zL7GpjtPB2g/0?wx_fmt=png" class="tag_item_headimg"> 硬件服务 </a><a href="/community/minihome/mixflow/2757364067488563201" target="_blank" title="TDesign 组件库" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcViabgrYzhUVicmybRnudp0hAVibHQc3JFdjDaOSIhqxuReQzn5urYodiahAez95sXsTuiaVuiclyqO6IPQ/0?wx_fmt=png" class="tag_item_headimg"> TDesign 组件库 </a><a href="/community/minihome/mixflow/2889188691586351105" target="_blank" title="小程序多端框架" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/nm27MmSkv27Sc3ibdouRgzCGGOnVniaTL9sN7FEv55zPiabplYhB4A98E2HvvvIjwVZqwQ4oDrgEJ4xz3GW1IialsQ/0?wx_fmt=png" class="tag_item_headimg"> 小程序多端框架 </a><a href="/community/minihome/mixflow/3081976366428028932" target="_blank" title="Skyline渲染引擎" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_jpg/nm27MmSkv27JCJbnc7kO6F8h09wCpaQt10pXQY9crCGN5tVrsHficPow67mZTsdKMOdNvxVqE9z4ft2mFx69rfQ/0?wx_fmt=jpeg" class="tag_item_headimg"> Skyline渲染引擎 </a><a href="/community/minihome/mixflow/3398116438949937159" target="_blank" title="小程序备案" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/nm27MmSkv27X1iaSpqSiaYLVT3v8vHHicc3oxIfb4hPTap2bwM4o73Y8fFvkkQaCCaCFoGC6M4kiaJbzibq8AfwYgdw/0?wx_fmt=png" class="tag_item_headimg"> 小程序备案 </a><a href="/community/minihome/mixflow/3547573390494318594" target="_blank" title="TAPD项目管理工具" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/mmbiz_png/ibUWDzKf0qcVSoRJzLwodsTmmBSwt66pgtCibdceXa1FXhBtazXVkyZUMkP1vGerxuAaoQqo5FLPrSYq4cs15ISw/0?wx_fmt=png" class="tag_item_headimg"> TAPD项目管理工具 </a><a href="/community/minihome/mixflow/3583332012141903877" target="_blank" title="小程序短剧" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/sz_mmbiz_jpg/7QwmBkKBvvbes59pPM1RdPs8ia2OhgodsFEcOiamB3kpYVxDwU2x0SyZbicsyUPpJdWBsyZHR9ntVVlSGBMMlwE8Q/0?wx_fmt=jpeg" class="tag_item_headimg"> 小程序短剧 </a><a href="/community/minihome/mixflow/3631365851346911237" target="_blank" title="小程序小说" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/sz_mmbiz_jpg/7QwmBkKBvvabUTGhiblNQRhLB6ia3J7DvmMN0n0qvNWGTQBEdmFJxouZJGX7pqIXY0yJZcY8EtSj5tcb8EFzj2TQ/0?wx_fmt=jpeg" class="tag_item_headimg"> 小程序小说 </a><a href="/community/minihome/mixflow/3690550954962780162" target="_blank" title="PC小程序" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/sz_mmbiz_jpg/7QwmBkKBvvZpEzxh8Nx9mUx8Z3m62UEaOkBfpxAHLsKboEae3Kk2RDiblAcgdE2LaibqlULLzWpyiaP4UdabelGJA/0?wx_fmt=jpeg" class="tag_item_headimg"> PC小程序 </a><a href="/community/minihome/mixflow/3721056300659130376" target="_blank" title="Mini Program Global" class="tag_item_new tag_item_topic" style="color: rgba(0,0,0,0.9);"><img src="http://mmbiz.qpic.cn/sz_mmbiz_png/7QwmBkKBvvZR7MmPcCUw1vakQoVqyNfATiaeMhkOrKSvNpuHUBL71ia0DFW9NyFb9jXqXpwgr0ulpotEVR5m69FA/0?wx_fmt=png" class="tag_item_headimg"> Mini Program Global </a></div><!----></div></div><div class="block-list public_box page_mod_blog_panel blog_list_official_course undefined page_mod_blog_panel__official-course"><div class="block-list__title"><span>官方教程</span><!----></div><div class="blog-list__banner__container"><a href="/community/business/course/0002041cb6c570351a32f701a66c0d" target="_blank"><div class="blog-list__banner" style="background:url(http://mmbiz.qpic.cn/mmbiz_jpg/PxLPibq1ibyh1VvCxtMqDo8ssgZVdnlbLRO5dUr3gGx7lmiaDAuFdoX8kJp01sC74LTGbTuWKa8rlBGHWt1vnahzg/0?wx_fmt=jpeg) no-repeat center / cover;"></div><p class="blog-list__banner__title">多端应用开发系列课程</p><p class="blog-list__banner__info">本课程从实践角度,从0开始完成多端应用的开发和上线过程,并介绍一些必要的细节指引,帮助开发者能够轻松开始,课程内容会根据产品演进持续更新。</p></a></div><!----><div class="block-list__body"><div class="block-list__article-list"><a href="/community/business/course/000606628dc2e86dc0ddcbb115940d" target="_blank"><span class="block-list__article__title__area"><span class="block-list__article__title">小程序性能优化实践</span><!----></span><!----></a></div><div class="block-list__article-list"><a href="/community/business/course/000264e20a0dd8e69669b609451c0d" target="_blank"><span class="block-list__article__title__area"><span class="block-list__article__title">小程序开发起步</span><!----></span><!----></a></div></div><div class="skip_more_box" style="display:;"><a target="_blank" href="https://developers.weixin.qq.com/community/business/CategorySearch?cid=2" class="skip_more"><span class="skip_more_text">更多</span></a></div><div class="skip_more_box" style="display:none;"><a href="/community/develop/list/course" target="_blank" class="skip_more"><span class="skip_more_text">更多</span></a></div></div><div itemscope="itemscope" itemtype="https://schema.org/Thing" check-reduce="" class="block-list public_box mod_issue_list"><div class="block-list__title"><span>Issue</span><i class="block-list__title__ic icon_home_bug"></i></div><div class="block-list-section"><div class="block-list-section-item"><a href="/community/develop/issue/452" target="_blank" itemprop="url" title="Skyline:picker 组件 mode = multiSelector 时,bindcolumnchange 事件无法触发"><span itemprop="name" class="block-list-section-item__title">Skyline:picker 组件 mode = multiSelector 时,bindcolumnchange 事件无法触发</span><span class="block-list-section-item__extend"><i class="block-list-section-item__type">已完成</i>12-17</span></a><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com//community/develop/issue/452"></div><div class="block-list-section-item"><a href="/community/develop/issue/416" target="_blank" itemprop="url" title="Skyline:swiper 设置 duration 过渡时间不生效"><span itemprop="name" class="block-list-section-item__title">Skyline:swiper 设置 duration 过渡时间不生效</span><span class="block-list-section-item__extend"><i class="block-list-section-item__type">已完成</i>05-20</span></a><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com//community/develop/issue/416"></div><div class="block-list-section-item"><a href="/community/develop/issue/414" target="_blank" itemprop="url" title="Skyline:transition 属性 var 支持问题"><span itemprop="name" class="block-list-section-item__title">Skyline:transition 属性 var 支持问题</span><span class="block-list-section-item__extend"><i class="block-list-section-item__type">已完成</i>05-06</span></a><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com//community/develop/issue/414"></div><div class="block-list-section-item"><a href="/community/develop/issue/454" target="_blank" itemprop="url" title="camera 组件在 iPhone 近拍模糊不对焦"><span itemprop="name" class="block-list-section-item__title">camera 组件在 iPhone 近拍模糊不对焦</span><span class="block-list-section-item__extend"><i class="block-list-section-item__type">进行中</i>12-23</span></a><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com//community/develop/issue/454"></div><div class="block-list-section-item"><a href="/community/develop/issue/430" target="_blank" itemprop="url" title="Skyline:backdrop-filter 边缘渲染问题"><span itemprop="name" class="block-list-section-item__title">Skyline:backdrop-filter 边缘渲染问题</span><span class="block-list-section-item__extend"><i class="block-list-section-item__type">进行中</i>05-24</span></a><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com//community/develop/issue/430"></div><div class="block-list-section-item"><a href="/community/develop/issue/453" target="_blank" itemprop="url" title="Skyline:applyAnimatedStyle 修改 text 的 color 会导致微信APP崩溃"><span itemprop="name" class="block-list-section-item__title">Skyline:applyAnimatedStyle 修改 text 的 color 会导致微信APP崩溃</span><span class="block-list-section-item__extend"><i class="block-list-section-item__type">进行中</i>05-20</span></a><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com//community/develop/issue/453"></div></div><div class="skip_more_box"><a href="/community/develop/issueList?type=&amp;status=develop" target="_blank" class="skip_more"><span class="skip_more_text">更多</span></a></div></div><!----><!----><div><!----><!----></div></div></div><div check-reduce="" class="dialog_wrapper dialog_choose_article_type dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:585px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>选择发帖类型</h3></div><div class="dialog_bd"><!----><div class="post_type_content"><ul class="post_type_list"><li class="post_type_item"><a href="/community/ask/index?blocktype=1&amp;blogCategory=1" target="_blank"><i class="icon icon_question"></i><div class="post_type_item_body"><p class="post_type_item_body_title"><!---->提出问题 </p><p class="post_type_item_body_desc">接入使用过程中遇到的疑问</p></div></a></li><li class="post_type_item"><a href="/community/blog/create/524288?blocktype=1&amp;isapiguide=" target="_blank"><i class="icon icon_experiences"></i><div class="post_type_item_body"><p class="post_type_item_body_title"><!---->发表文章 </p><p class="post_type_item_body_desc">开发、运营、产品设计相关实战经验及案例分享</p></div></a></li><!----><!----><!----><!----><!----><!----></ul></div></div><!----></div></div></div></div></div></div><div id="footer" check-reduce="" class="foot blur_row page_full"><ul class="links ft"><li class="links_item"><a href="http://www.tencent.com/zh-cn/index.shtml" target="_blank">关于腾讯</a></li><li class="links_item"><a href="https://developers.weixin.qq.com/community/develop/doc/000e2cb63d8c28e6cf79d839b51809" target="_blank">运营规范</a></li><li class="links_item"><a href="https://mp.weixin.qq.com/debug/wxadoc/dev/index.html" target="_blank">文档中心</a></li><li class="links_item"><a href="https://kf.qq.com/faq/17030722muuu170307MFBny2.html" target="_blank">辟谣中心</a></li><li class="links_item"><a href="http://kf.qq.com/product/wx_xcx.html" target="_blank">客服中心</a></li><li class="links_item"><p class="copyright">Copyright © 2012-2025 Tencent. All Rights Reserved.</p></li></ul></div><!----><div check-reduce="" class="mod_get_page_top for_pc" style="display:none;"><div class="get_page_top_inner"><i class="icon icon_page_top"></i></div></div></div><script>window.__INITIAL_STATE__={"$host":"developers.weixin.qq.com","$ua":"Mozilla\u002F4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.21022; .NET CLR 1.0.3705; .NET CLR 1.1.4322)","items":{},"language":"zh-Hans","home":{},"doc_read":{},"doc_read_fetch":false,"appClass":"","pageName":"","pendingActions":[],"DOCState":"","searchQuery":"","shareImg":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FdHtIRV4hVzWL3c2ZSXjoG1VcnRC3fENDSGIm_8hOS-9PWFTVVdbPfoGTaJnHJpFm","doc":{"NotFound":false,"Del":false,"Author":{"openid":"","nickname":"","headimgurl":"","isOfficialUser":false,"authority":[]},"DocId":"","BlockType":0,"CreateTime":"","UpdateTime":"","Category":"","BlogCategory":0,"Flag":"","UpVote":0,"DownVote":0,"UpHome":0,"BlogAttr":0,"blogProp":{"top":0},"Title":"","Content":"","Introduce":"","Img":"","QuestionAttr":{},"Pv":0,"OpenComments":"1","Comments":{"count":0,"page":1,"limit":10,"rows":[]},"QuestionComments":{},"Votes":{},"Fav":{"Count":0,"Fav":false},"Follow":{"Count":0,"Followed":false},"QuestionAnswered":false,"Status":{"delete":false,"audit":false,"draft":false},"Tags":[],"DraftCount":0,"Star":0,"similarBlog":[],"similarDoc":[],"loading":true,"voteFeedback":{}},"user":{"login":false,"isOfficialUser":false,"headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz\u002FicTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg\u002F0?wx_fmt=png","nickname":"","openid":"","user_name":"","loading":true,"authority":[],"userScore":{},"isPrivacySettingGrant":"0"},"userRecentlyVisited":[],"usercntinfo":{"appreciateByCnt":0,"introduce":"","EnterpriseIntr":"","answerCnt":0,"articleCnt":0,"medalsCnt":0},"notifyUnread":[],"notifyAll":[],"notifySystem":{"list":[],"total":0},"notifyLike":{"list":[],"total":0},"notifySystemNewCount":0,"notifyLikeNewCount":0,"develop":{"32768":{"rows":[],"count":0,"page":1,"limit":20},"short_128":{"rows":[{"OpenId":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","DocId":"000200a1a500d04e42e265f066bc07","CreateTime":"1739763121","BlogCategory":"128","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","BlogAttr":"4","Title":"正在报名|微信小程序解决方案挑战赛 · 日本站","ExtLink":"","Img":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002F7QwmBkKBvvbibicocVDgDNVTT7JWCXkCx0FGcBSNNrTActslytibzjPls5ZGsO0gicmRFy544kVMfE4EQicwItmnlBg\u002F0?wx_fmt=jpeg","ExpireDate":"1741363200","OpenComments":"1","pv":"649","commentNum":"4"},{"OpenId":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","DocId":"000c6ac5558f30679492a513361407","CreateTime":"1734579538","BlogCategory":"128","Flag":"0","UpVote":"1","DownVote":"0","BlockType":"1","BlogAttr":"4","Title":"正在报名|2025 微信公开课 PRO · 开发者专场","ExtLink":"","Img":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002F7QwmBkKBvvbcMMVLaWxDbibEWjWibaicelCSVSDdPhP0lAMRGAxltv80mzThPibaxvpIibOGqs5U4we628lcgPmtGAw\u002F0?wx_fmt=jpeg","ExpireDate":"1736438399","OpenComments":"1","pv":"2870","commentNum":"9"},{"OpenId":"oCJUswytnPpNjU-3yxCPPx6fl8Dg","DocId":"0006cce207460093506290a7266c07","CreateTime":"1730987784","BlogCategory":"128","Flag":"0","UpVote":"1","DownVote":"0","BlockType":"1","BlogAttr":"4","Title":"无套路 1 折购,微信网关年度特惠!","ExtLink":"","Img":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FFkQfrBEofJSFzVwKCvy3e3NHRDPCwLmdULJafzDnO3p62qOfpgvBgRPsz08JWAEJafepZLuy166h3qwwshM8gQ\u002F0?wx_fmt=jpeg","ExpireDate":"1733932800","OpenComments":"1","pv":"4716","commentNum":"1"},{"OpenId":"oCJUswytnPpNjU-3yxCPPx6fl8Dg","DocId":"0004c684f943c807a542a67ad6bc07","CreateTime":"1729151145","BlogCategory":"128","Flag":"0","UpVote":"1","DownVote":"0","BlockType":"1","BlogAttr":"4","Title":"正在报名|微信技术公开课全新上线,深圳站与你不见不散!","ExtLink":"","Img":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FFkQfrBEofJR4MYxGplwq5EqNQEVrleRpvWCiaQtDac4symmrlxLJHFVNC4W7IF3IqWsch1ndzqZlw2kR8D7Q3Jw\u002F0?wx_fmt=jpeg","ExpireDate":"1730131200","OpenComments":"1","pv":"208490","commentNum":"48"},{"OpenId":"oCJUswytnPpNjU-3yxCPPx6fl8Dg","DocId":"000eae1cee08f8c329f1a973565c07","CreateTime":"1723087711","BlogCategory":"128","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","BlogAttr":"4","Title":"正在报名|微信技术公开课全新上线,杭州站与你不见不散!","ExtLink":"","Img":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002FYUdMOMCYHAsmmSJvemkEEo2588FicGaZdsyTvM5DE9VKoPLF6BWLNWBntb49QAEl1C9Keqp1GTv5bfjJyfiadZww\u002F0?wx_fmt=jpeg","ExpireDate":"1724083199","OpenComments":"1","pv":"122015","commentNum":"66"}],"count":79,"page":1,"limit":5,"blockType":1},"short_2":{"rows":[{"OpenId":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","DocId":"0004885e3a04482613e2b4d0961001","CreateTime":"1739522744","BlogCategory":"2","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","BlogAttr":"4","Title":"社区每周|小程序基础库 3.7.8 更新及上周问题反馈处理进度(02.05-02.08)","ExtLink":"","Img":"","ExpireDate":"","OpenComments":"1","pv":"10158","commentNum":"10"}],"count":629,"page":1,"limit":1,"blockType":1}},"developListLoading":false,"business":{"industry":{"solution":{}},"industries":[],"fullIndustries":{},"list":[],"type":0},"we":{"list":[],"total":0,"listHomepage":[],"totalHomepage":0,"page":1,"limit":6,"subList":[],"subListTotal":0,"subListHomepage":[],"subListTotalHomepage":0,"subListPage":1,"subListLimit":3,"loading":false,"caseRecommendList":[],"weServiceMarket":[],"seriesParent":{},"seriesList":[],"weTags":[],"currentBanner":[],"categories":[],"categoryList1":[],"categoryList1Count":0,"categoryList2":[],"categoryList2Count":0,"categoryList3":[],"categoryList3Count":0,"categoryList4":[],"categoryList4Count":0,"specificCategoryList":[],"courseDetail":{},"recentCourses":[],"homepageDefaultList":[]},"operate":{"homeList":{"list":[],"total":0},"QAList":{"list":[],"total":0},"illegalReport":{"list":[],"total":0}},"votes":{},"enterprise":{"appInfoLoading":false,"appInfo":[],"mpInfoLoading":false,"mpInfo":[],"thirdappList":[],"list":[]},"login":{"gotoLogin":false,"redirect_uri":""},"openData":[{"name":"违法","id":1001,"list":[]},{"name":"外挂","id":1002,"list":[]},{"name":"过度营销","id":1003,"list":[]},{"name":"滥用分享","id":1004,"list":[]},{"name":"类目不符","id":1005,"list":[]},{"name":"iOS虚拟支付","id":1006,"list":[]}],"operateDetail":{"desc":"","content":""},"timelineInfoConfig":{},"github":{},"board":{"list":{"adminList":[],"commonList":[]},"medals":[],"schoolMedals":[],"schoolManage":null},"bindingGithub":false,"articleList":{"rows":[],"count":0},"mixflowList":{"rows":[{"OpenId":"oCJUsw_QO5uTp7-sew6Znk9xbPxU","DocId":"0002865b80c7d0445fe2a18a066400","CreateTime":"1739792346","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"我们项目域名提示:非微信官方网页,请确认是否继续访问 如何处理?","QuestionCategory":"2048","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002Fibe9HfrFWWQAUaznr9UYDDqpyAG2ooFRD2hUiaB7eMUD1NJV8OJfMGoGOowuNibtBW9uZ4FHXnVyVwicqc03UC8cjw\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cspan style=\"font-size: 16px;\"\u003E受限域名为:\u003C\u002Fspan\u003E\u003Ca href=\"https:\u002F\u002Fxyt.kindlink.top\u002F\" rel=\"noopener noreferrer\" target=\"_blank\" style=\"font-size: 16px;\"\u003Ehttps:\u002F\u002Fxyt.kindlink.top\u002F\u003C\u002Fa\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002Fibe9HfrFWWQAUaznr9UYDDqpyAG2ooFRDa7wUacbEV65sXwZ1yN6wtxYSzgygrV76DAPaLQmINdUWRSReDtRPYA\u002F0?wx_fmt=png\" style=\"height: auto;\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E域名已经备案并在公众号后台添加白名单,且2个月前已经申请过正常访问,现在又被标注为非官方网页,要如何处理???\u003C\u002Fp\u003E","pv":"15","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"oCJUsw_QO5uTp7-sew6Znk9xbPxU","DocId":"0002865b80c7d0445fe2a18a066400","CommentId":"000aa6ecb28df8045fe284e3e668","Content":"\u003Cp\u003E\u003Ca href=\"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fdevelop\u002Fdoc\u002F0006e80698ca081cd9b2ff0e366400\" rel=\"noopener noreferrer\" target=\"_blank\"\u003Ehttps:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fdevelop\u002Fdoc\u002F0006e80698ca081cd9b2ff0e366400\u003C\u002Fa\u003E 这是一个月前的提问,当时处理了,现在又出现了同样的问题,怎样才能一次性解决好?\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739792400","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"芒草","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FPiajxSqBRaELLVO5yQe5OcFob9OsjTBxlcdBgcz3cDZYEEJG0TDcqCg\u002F0","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUsw_QO5uTp7-sew6Znk9xbPxU","DocId":"0002865b80c7d0445fe2a18a066400","CommentId":"000aa6ecb28df8045fe284e3e668","Content":"\u003Cp\u003E\u003Ca href=\"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fdevelop\u002Fdoc\u002F0006e80698ca081cd9b2ff0e366400\" rel=\"noopener noreferrer\" target=\"_blank\"\u003Ehttps:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fdevelop\u002Fdoc\u002F0006e80698ca081cd9b2ff0e366400\u003C\u002Fa\u003E 这是一个月前的提问,当时处理了,现在又出现了同样的问题,怎样才能一次性解决好?\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739792400","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"芒草","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FPiajxSqBRaELLVO5yQe5OcFob9OsjTBxlcdBgcz3cDZYEEJG0TDcqCg\u002F0","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw0nBO6YnIAhIcdQOqLB2UeE","DocId":"00004a9a7686b8845de2c9a3563c00","CreateTime":"1739791791","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"交易保障金额退款一直提示审核失败?","QuestionCategory":"32768","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FxcavwPCrGdLJpwhtjibEMFfBZgFfztsKib0GtvUkAGLLy8zJZdDWBibKRFlvnNEXgDicMFY9AeXGsETKzrdLrVlzjQ\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","pv":"28","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"00004a9a7686b8845de2c9a3563c00","CommentId":"00086e7e970908845de294c576d0","Content":"针对“交易保障金额退款一直提示审核失败”的问题,以下是一些可能的原因及解决方案:\n\n### 可能原因\n\n1. **不符合退保条件**:\n - 退款申请可能未满足平台的退保政策要求。\n - 例如,某些情况下,交易保障金额可能不允许退款。\n\n2. **信息填写错误**:\n - 提交的退款申请中可能存在错误或不完整的信息。\n - 如交易时间、金额、订单号等关键信息填写有误。\n\n3. **系统问题**:\n - 平台系统可能出现暂时性的故障或维护,导致审核失败。\n\n### 解决方案\n\n1. **仔细阅读退保规则**:\n - 根据提示,查看并确认自己是否符合退保条件。\n - 可以参考平台的官方退保政策说明。\n\n2. **核对并修正申请信息**:\n - 仔细检查退款申请中填写的所有信息,确保准确无误。\n - 如有错误,请及时修改并重新提交申请。\n\n3. **联系客服咨询**:\n - 若确认自己符合退保条件且信息无误,仍提示审核失败,建议联系平台客服。\n - 客服可以提供更详细的审核失败原因及解决方案。\n\n### 操作建议\n\n- 在遇到退保审核未通过的情况时,首先不要慌张,按照上述步骤逐一排查问题。\n- 如果多次尝试仍无法解决问题,务必及时联系客服寻求帮助。\n\n希望以上信息能帮助您顺利解决退款审核失败的问题。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739791813","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"00004a9a7686b8845de2c9a3563c00","CommentId":"00086e7e970908845de294c576d0","Content":"针对“交易保障金额退款一直提示审核失败”的问题,以下是一些可能的原因及解决方案:\n\n### 可能原因\n\n1. **不符合退保条件**:\n - 退款申请可能未满足平台的退保政策要求。\n - 例如,某些情况下,交易保障金额可能不允许退款。\n\n2. **信息填写错误**:\n - 提交的退款申请中可能存在错误或不完整的信息。\n - 如交易时间、金额、订单号等关键信息填写有误。\n\n3. **系统问题**:\n - 平台系统可能出现暂时性的故障或维护,导致审核失败。\n\n### 解决方案\n\n1. **仔细阅读退保规则**:\n - 根据提示,查看并确认自己是否符合退保条件。\n - 可以参考平台的官方退保政策说明。\n\n2. **核对并修正申请信息**:\n - 仔细检查退款申请中填写的所有信息,确保准确无误。\n - 如有错误,请及时修改并重新提交申请。\n\n3. **联系客服咨询**:\n - 若确认自己符合退保条件且信息无误,仍提示审核失败,建议联系平台客服。\n - 客服可以提供更详细的审核失败原因及解决方案。\n\n### 操作建议\n\n- 在遇到退保审核未通过的情况时,首先不要慌张,按照上述步骤逐一排查问题。\n- 如果多次尝试仍无法解决问题,务必及时联系客服寻求帮助。\n\n希望以上信息能帮助您顺利解决退款审核失败的问题。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739791813","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw1KALGpZJXcXMhOwW8ui58M","DocId":"0002e2a7f788889456e21d06768c00","CreateTime":"1739790043","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"类目审核时,小程序类目提交资质主体需与小程序注册主体一致?","QuestionCategory":"32768","Content":"\u003Cp\u003E类目审核时提示小程序类目提交资质主体需与小程序注册主体一致。\u003C\u002Fp\u003E\u003Cp\u003E营业执照上名字为:岳阳花媛医疗美容有限公司\u003C\u002Fp\u003E\u003Cp\u003E医疗机构执业许可证上名字为:岳阳市岳阳楼区花媛医疗美容门诊部\u003C\u002Fp\u003E\u003Cp\u003E法人一致,注册地址一致,很明显是同一个机构,为什么不给通过。\u003C\u002Fp\u003E\u003Cp\u003E我们已经提交了情况说明并盖了公司公章和门诊部公章,保证资料的真实性。\u003C\u002Fp\u003E\u003Cp\u003E部分地区的卫生局没有官网或者官网不公示设立相关的信息。\u003C\u002Fp\u003E\u003Cp\u003E客服说卫生局出证明文件并且盖章,这是不太现实的,官方不会轻易在其他文件去盖公章。\u003C\u002Fp\u003E\u003Cp\u003E希望客服能够从现实出发,不要死脑筋。\u003C\u002Fp\u003E","pv":"241","commentNum":"2","userCommentNum":"2","bestComment":{"OpenId":"oCJUsw_2Sw6k-tduvV5RPAGZCzlE","DocId":"0002e2a7f788889456e21d06768c00","CommentId":"000e26d6780e40145ce2e509c620","Content":"\u003Cp\u003E这种情况,建议门诊部单独注册一个小程序,微信也不会为了你的个例去改变他们的规则。\u003C\u002Fp\u003E","ReplyCount":"4","CommentAttr":"0","UpVote":"0","CreateTime":"1739791516","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"拾忆","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FIlxmQLqA0RZDeU1R6Teo7yuvwIiaEf9P1xicPib3CfonUU\u002F0","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUsw_2Sw6k-tduvV5RPAGZCzlE","DocId":"0002e2a7f788889456e21d06768c00","CommentId":"000e26d6780e40145ce2e509c620","Content":"\u003Cp\u003E这种情况,建议门诊部单独注册一个小程序,微信也不会为了你的个例去改变他们的规则。\u003C\u002Fp\u003E","ReplyCount":"4","CommentAttr":"0","UpVote":"0","CreateTime":"1739791516","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"拾忆","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FIlxmQLqA0RZDeU1R6Teo7yuvwIiaEf9P1xicPib3CfonUU\u002F0","authority":[],"score":0},{"OpenId":"oCJUswyFImVTq2d1PDU94_ipG6HM","DocId":"0002e2a7f788889456e21d06768c00","CommentId":"00026ee767cd08745ae2e9ea66b8","Content":"\u003Cp\u003E这不是死脑筋,审核有对应的标准,非同一主体名称无法认定为同一主体。\u003C\u002Fp\u003E","ReplyCount":"1","CommentAttr":"0","UpVote":"0","CreateTime":"1739790957","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"sun","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FQ3auHgzwzM7OxIpQnpn59gWay3d1L9QxU56vzdfozqQ6Z2t9VaLtrQ\u002F0","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUswzltD73bQ33AoCjLVo0apSU","DocId":"00088054c9c5f01456e2636e566800","CreateTime":"1739790000","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"永久限制【应用在线】.关于这种违规的疑问?","QuestionCategory":"32768","Content":"\u003Cp\u003E营运过程中没有认真学习处罚规则,导致违规,代价惨重。以后一定要好好学习处罚规则.尽量避免违规。\u003C\u002Fp\u003E\u003Cp\u003E但这次违规中,有两个疑问,请官方给予解答。疑问一:\u003C\u002Fp\u003E\u003Cp\u003E1.【通知中心】中的违规消息显示:请遵守规范,修改内容或行为后可重新发布服务。如果再有违规情况,将加重处罚至永久下线服务或封禁账号处理\u003C\u002Fp\u003E\u003Cp\u003E按这句话理解,就是:整改完后可以重新发布服务(上架小程序)。\u003C\u002Fp\u003E\u003Cp\u003E2.【违规记录】中的处理内容:永久限制【应用在线】。\u003C\u002Fp\u003E\u003Cp\u003E按这句话理解:就是永久限制(永久限制上架小程序)。\u003C\u002Fp\u003E\u003Cp\u003E请问:这种情况,我按要求把小程序整改后,能不能再上架小程序服务?附图:\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Fqkb2RdKdYDWqWWNEbserXGoib504Dv6DssdibFdkeXY8ze3scx3kGZ4KZefia2giafwNjZthC8GSaNsRT6sT1Hyxnw\u002F0?wx_fmt=png\" \u002F\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002Fqkb2RdKdYDWqWWNEbserXGoib504Dv6DsuN8niaL1w3icApMpGbUkwPF8tLlkUx2NsGAOVnb9jFZgTotkHUib98K1Q\u002F0?wx_fmt=jpeg\" \u002F\u003E\u003C\u002Fp\u003E","pv":"222","commentNum":0,"userCommentNum":0,"flowType":2},{"OpenId":"oCJUsw1kBLJtUgdy0F7jMSbYr-JE","DocId":"00008cf9a104d80455e2f6d3d6b400","CreateTime":"1739789696","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"已备案域名提示 ”无法确认该网页的安全性,请谨慎访问“,导致小程序普通链接跳转不生效?","QuestionCategory":"32768","Content":"\u003Cp\u003E您好,公司域名已备案(“\u003Ca href=\"https:\u002F\u002Fwww.ptnbr.com\u002Fapp\u002Fwx-mini\u002Flink\" rel=\"noopener noreferrer\" target=\"_blank\"\u003Eptnbr.com\u003C\u002Fa\u003E”),用微信访问H5网站时会提示“无法确认该网页的安全性,请谨慎访问”的提示语,尝试了“申请恢复”,现在影响客户体验,且小程序设置普通链接二维码跳转小程序不生效也可能与这有关。\u003Cspan style=\"font-size: 14px;\"\u003E麻烦审核一下,多谢多谢。我需要在哪里查看审核结果和原因呢?想查看具体是什么原因造成\u003C\u002Fspan\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FianXnZzoMKibQ2zMTPXMdvSMw2vTjSx25PlncqjFrHKaTMiaHvjenvkQSAQribLDDow2tvfpLMgic0llqcibjUWdibbqQ\u002F0?wx_fmt=png\" style=\"transition: none;\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FianXnZzoMKibQ2zMTPXMdvSMw2vTjSx25P1aI6xdYfvNWs7w4Zk1BGUJzUm2qibTLvwa6NiblPdu9cJ2TsqiaI7O9Qg\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FianXnZzoMKibQ2zMTPXMdvSMw2vTjSx25PdmbMlRex5wMtLm9J4Dj3MPFmktOrEG2IgodsmWXPTmhNcL0eLsywpw\u002F0?wx_fmt=png\" style=\"transition: none;\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FianXnZzoMKibQ2zMTPXMdvSMw2vTjSx25PVZDYL7nMPwksibeahvH2tl6icFU8XiaFdjicKEmibUJOGsFweUuXePBLd1g\u002F0?wx_fmt=png\" style=\"transition: none;\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003C\u002Fp\u003E","pv":"196","commentNum":0,"userCommentNum":0,"flowType":2},{"OpenId":"oCJUsw2URMBgvJNf2ElMiEHS1yQ4","DocId":"0006c61611c270a453e273f4869400","CreateTime":"1739789002","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"小程序刚上线就提示小程序违规,支付功能暂时无法使用?","QuestionCategory":"32768","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FicKYHgLntvZ7dOXodBicm5h4ObAuSjgOUXqCsPUen1aA3BIpznw8z4p1U0SGXeFnCSu6zKYv0o8rpMxFHziboXicyw\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cspan style=\"font-size: 16px;\"\u003E为什么小程序刚上线就提示小程序违规,支付功能暂时无法使用?怎么解决?\u003C\u002Fspan\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cspan style=\"font-size: 16px;\"\u003E商户和小程序后台也没有违规的信息提示啊。\u003C\u002Fspan\u003E\u003C\u002Fp\u003E","pv":"285","commentNum":"2","userCommentNum":"2","bestComment":{"OpenId":"sq_oDyAl0UqoY02pZk1KnjWo2krCpsw","DocId":"0006c61611c270a453e273f4869400","CommentId":"000aeaf62fce10c455e25e57c660","Content":"\u003Cp\u003E\u003Cspan style=\"font-size: 14px;\"\u003E登陆小程序后台接入订单发货管理,通过后封禁将会解除\u003C\u002Fspan\u003E\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"1","CreateTime":"1739789550","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"微盟","headimgurl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA\u002F0","isEnterprise":true,"authority":[],"score":1},"bestCommentsAggregated":[{"OpenId":"sq_oDyAl0UqoY02pZk1KnjWo2krCpsw","DocId":"0006c61611c270a453e273f4869400","CommentId":"000aeaf62fce10c455e25e57c660","Content":"\u003Cp\u003E\u003Cspan style=\"font-size: 14px;\"\u003E登陆小程序后台接入订单发货管理,通过后封禁将会解除\u003C\u002Fspan\u003E\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"1","CreateTime":"1739789550","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"微盟","headimgurl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA\u002F0","isEnterprise":true,"authority":[],"score":1},{"OpenId":"oCJUsw8yFnOFj4STQDwbDwK8ix_0","DocId":"0006c61611c270a453e273f4869400","CommentId":"00064ac20380c87455e2a24596b8","Content":"\u003Cp\u003E小程序后台侧边栏查看一下是否有订单管理入口,或者看站内信是否有要求你授权发货管理\u003C\u002Fp\u003E","ReplyCount":"2","CommentAttr":"0","UpVote":"0","CreateTime":"1739789527","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"Memory (私信不回复)","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FiaP7MZOywhx0fy5qib7KUxicFaQ0r8Yfag7jCqptNBenhqlSPQrx6KFvPiaCicYE7NicHeoQh4PJFmibobv43jbJ2so1r2fp3cjgCApjmw07sedoZg\u002F0","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUswwbcMZ0jJCe4tuJBNu9GJJw","DocId":"000cc6d53901981450e252f2d66c00","CreateTime":"1739788233","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"怀疑注释有问题","QuestionCategory":"32","Content":"\u003Cp\u003Eorder_id 注释写的商品id,是微信小店的订单id吧\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FJZ6QL8ibSVCqibQJFQjXSCMPLQuibK7xoGvfT7upQmfm2G8uyVvlccicXbdNEGATaVQC7PNV6M1pZnvn4a3ImoX7aA\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","pv":"268","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"sq_oDyAl0UqoY02pZk1KnjWo2krCpsw","DocId":"000cc6d53901981450e252f2d66c00","CommentId":"000c64f0c8c8905454e2f537a668","Content":"\u003Cp\u003E应该是\u003Cspan style=\"font-size: 14px;\"\u003E微信小店的订单id\u003C\u002Fspan\u003E\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"1","CreateTime":"1739789457","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"微盟","headimgurl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA\u002F0","isEnterprise":true,"authority":[],"score":1},"bestCommentsAggregated":[{"OpenId":"sq_oDyAl0UqoY02pZk1KnjWo2krCpsw","DocId":"000cc6d53901981450e252f2d66c00","CommentId":"000c64f0c8c8905454e2f537a668","Content":"\u003Cp\u003E应该是\u003Cspan style=\"font-size: 14px;\"\u003E微信小店的订单id\u003C\u002Fspan\u003E\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"1","CreateTime":"1739789457","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"微盟","headimgurl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA\u002F0","isEnterprise":true,"authority":[],"score":1}],"flowType":2},{"OpenId":"oCJUsw4XvotB3TVdt-YuPB2sVpu0","DocId":"0008a66f37c900735be2c5ea861000","CreateTime":"1739786881","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"第三方代开发小程序提交代码审核报system error rid: 67b2d0f2-71e8b6b","QuestionCategory":"32","Content":"\u003Cp\u003E\u003Ca href=\"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fdoc\u002Foplatform\u002FReturn_codes\u002FReturn_code_descriptions_new.html\" rel=\"noopener noreferrer\" target=\"_blank\"\u003Ehttps:\u002F\u002Fdevelopers.weixin.qq.com\u002Fdoc\u002Foplatform\u002FReturn_codes\u002FReturn_code_descriptions_new.html\u003C\u002Fa\u003E\u003C\u002Fp\u003E\u003Cp\u003E第三方代开发小程序提交代码审核报system error rid: 67b2d0f2-71e8b6b,隔了几个小时重试也一直不行\u003C\u002Fp\u003E","pv":"475","commentNum":0,"userCommentNum":0,"flowType":2},{"OpenId":"sq_obmma5Z1AYZ1wWfQ9gbsFA_MAFgc","DocId":"00006e24620cf8535ae27270461000","CreateTime":"1739786678","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"电子发票永久授权页插件申请一直是待确认状态,如何联系确认?","QuestionCategory":"2","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FmicxW7HaL4icR7mGGUXjicnxp7ocybp0zZbua1GBkXxcb7AYK8v7KRThhRhaibgFDOUsysA0PRCWa22qJ0gHxtiazsQ\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","pv":"69","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"00006e24620cf8535ae27270461000","CommentId":"000ee28782cd68935ae2ede4766c","Content":"针对“电子发票永久授权页插件申请一直是待确认状态,如何联系确认?”这一问题,您可以尝试以下几种方法来寻求确认和解决:\n\n### 方法一:通过小程序后台留言\n1. 登录微信小程序管理后台。\n2. 进入“设置”页面,在底部找到“留言反馈”选项。\n3. 在留言框中详细描述您的问题,并附上插件的相关信息(如插件名称、申请时间等)。\n4. 提交留言后,微信团队会在1-3个工作日内回复您。\n\n### 方法二:联系微信客服\n1. 打开微信,点击右上角的“我”选项。\n2. 进入“设置”页面,找到“帮助与反馈”选项。\n3. 在底部菜单栏中选择“联系客服”。\n4. 向客服人员说明您的情况,并提供必要的信息以便他们协助处理。\n\n### 方法三:参与开发者社区讨论\n1. 访问微信小程序开发者社区。\n2. 在搜索框中输入“电子发票永久授权页插件申请待确认”等关键词。\n3. 查看是否有其他开发者遇到类似问题,并参考他们的解决方案。\n4. 如果没有找到合适答案,可以在相关话题下发布您的问题,寻求社区成员的帮助。\n\n请注意,以上方法可能需要一定时间才能得到回复,请耐心等待。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739786702","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"00006e24620cf8535ae27270461000","CommentId":"000ee28782cd68935ae2ede4766c","Content":"针对“电子发票永久授权页插件申请一直是待确认状态,如何联系确认?”这一问题,您可以尝试以下几种方法来寻求确认和解决:\n\n### 方法一:通过小程序后台留言\n1. 登录微信小程序管理后台。\n2. 进入“设置”页面,在底部找到“留言反馈”选项。\n3. 在留言框中详细描述您的问题,并附上插件的相关信息(如插件名称、申请时间等)。\n4. 提交留言后,微信团队会在1-3个工作日内回复您。\n\n### 方法二:联系微信客服\n1. 打开微信,点击右上角的“我”选项。\n2. 进入“设置”页面,找到“帮助与反馈”选项。\n3. 在底部菜单栏中选择“联系客服”。\n4. 向客服人员说明您的情况,并提供必要的信息以便他们协助处理。\n\n### 方法三:参与开发者社区讨论\n1. 访问微信小程序开发者社区。\n2. 在搜索框中输入“电子发票永久授权页插件申请待确认”等关键词。\n3. 查看是否有其他开发者遇到类似问题,并参考他们的解决方案。\n4. 如果没有找到合适答案,可以在相关话题下发布您的问题,寻求社区成员的帮助。\n\n请注意,以上方法可能需要一定时间才能得到回复,请耐心等待。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739786702","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw9dOmQF4e0G795yitgwM8jw","DocId":"0002264b108ab8a359e2e475a66c00","CreateTime":"1739786322","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?","QuestionCategory":"32768","Content":"\u003Cp\u003E请求解除网站弹窗提醒\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FJv7FjnqFYibLWfJPUI2u9FszCJmoApdzRYAntaAmvpwunU3jPp4VmIHK5Xoibo9OhsSFXyvgrSEo1zVtEmTHTJyQ\u002F0?wx_fmt=jpeg\" style=\"height: auto;\" \u002F\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FJv7FjnqFYibLWfJPUI2u9FszCJmoApdzRE58sZDQzdzxFFnXfO3XDkF2kxIFMbFbz7Oic7yXrt8WY0XYDg0LqzgQ\u002F0?wx_fmt=jpeg\" \u002F\u003E\u003C\u002Fp\u003E","pv":"53","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"sq_oDyAl0UqoY02pZk1KnjWo2krCpsw","DocId":"0002264b108ab8a359e2e475a66c00","CommentId":"00084adf7ec4b8e456e2ed1bb6a4","Content":"\u003Cp\u003E检查网站备案信息、添加网站到微信信任列表、使用微信JS-SDK(配置JS接口安全域名)\u003C\u002Fp\u003E","ReplyCount":"1","CommentAttr":"0","UpVote":"0","CreateTime":"1739789912","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"微盟","headimgurl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA\u002F0","isEnterprise":true,"authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"sq_oDyAl0UqoY02pZk1KnjWo2krCpsw","DocId":"0002264b108ab8a359e2e475a66c00","CommentId":"00084adf7ec4b8e456e2ed1bb6a4","Content":"\u003Cp\u003E检查网站备案信息、添加网站到微信信任列表、使用微信JS-SDK(配置JS接口安全域名)\u003C\u002Fp\u003E","ReplyCount":"1","CommentAttr":"0","UpVote":"0","CreateTime":"1739789912","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"微盟","headimgurl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA\u002F0","isEnterprise":true,"authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw-xqeiUlrjln_tvNrMJG5ds","DocId":"000ae67da2cab81353e21467161400","CreateTime":"1739784862","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"小店换货后再退货,获取到的退货商品还是原单商品,是BUG还是有什么处理方案?","QuestionCategory":"2","Content":"\u003Cpre class=\"ql-syntax\" spellcheck=\"false\" style=\" font-size: 14px; color: rgb(34, 34, 34); background-color: rgb(249, 249, 250); ; ; ; ; \"\u003E\u003Cspan class=\"hljs-attribute\"\u003Ehttps\u003C\u002Fspan\u003E:\u003Cspan class=\"hljs-comment\"\u003E\u002F\u002Fapi.weixin.qq.com\u002Fchannels\u002Fec\u002Faftersale\u002Fgetaftersaleorder\u003C\u002Fspan\u003E\n\u003C\u002Fpre\u003E\u003Cp\u003E这个接口获取的数据,从\u003Cspan style=\"font-size: 14px; color: rgb(53, 53, 53);\"\u003Eproduct_info获取的商品还是换货前的SKU,与客户换货后退货的商品不一致\u003C\u002Fspan\u003E\u003C\u002Fp\u003E","pv":"629","commentNum":0,"userCommentNum":0,"flowType":2},{"OpenId":"oCJUsw0mPnjwqu3tOiTrr_AydUrk","DocId":"000c067f270460d353e2ac75567000","CreateTime":"1739784722","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"真机调试一切正常,安卓版登录报ERR_SSL_PROTOCOL_ERROR,请问这会是什么情况?","QuestionCategory":"32","Content":"\u003Cp\u003E我的小程序遇到一个非常头疼的问题。往各路大神指点迷津:\u003C\u002Fp\u003E\u003Cp\u003E1、小程序真机调试(未勾选不校验合法域名)一切正常;\u003C\u002Fp\u003E\u003Cp\u003E2、发布后,IOS手机一切正常。但安卓版登录就报request:failnet::ERR SSL PROTOCOL;\u003C\u002Fp\u003E\u003Cp\u003E3、www.myssl.cn测试接口网站,三个证书显示均正常;\u003C\u002Fp\u003E\u003Cp\u003E4、ssllabs网站评测为B级,TLS 1.2开启,其余关闭。报告详情:\u003Ca href=\"https:\u002F\u002Fwww.ssllabs.com\u002Fssltest\u002Fanalyze.html?d=sz.wisdudu.com\" rel=\"noopener noreferrer\" target=\"_blank\"\u003Ehttps:\u002F\u002Fwww.ssllabs.com\u002Fssltest\u002Fanalyze.html?d=sz.wisdudu.com\u003C\u002Fa\u003E\u003C\u002Fp\u003E\u003Cp\u003E各位大神,这会是什么情况啊?\u003C\u002Fp\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003C\u002Fp\u003E","pv":"511","commentNum":"3","userCommentNum":"3","bestComment":{"OpenId":"sq_omvH50DIOyKL9YfbLRpNNkSYMhVc","DocId":"000c067f270460d353e2ac75567000","CommentId":"000ea82d464b98b354e202cbb61c","Content":"\u003Cp\u003Essl证书到a才能行\u003C\u002Fp\u003E","ReplyCount":"1","CommentAttr":"0","UpVote":"0","CreateTime":"1739785028","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"CRMEB","headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Frc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA\u002F0?wx_fmt=png","isEnterprise":true,"authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"sq_omvH50DIOyKL9YfbLRpNNkSYMhVc","DocId":"000c067f270460d353e2ac75567000","CommentId":"000ea82d464b98b354e202cbb61c","Content":"\u003Cp\u003Essl证书到a才能行\u003C\u002Fp\u003E","ReplyCount":"1","CommentAttr":"0","UpVote":"0","CreateTime":"1739785028","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"CRMEB","headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Frc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA\u002F0?wx_fmt=png","isEnterprise":true,"authority":[],"score":0},{"OpenId":"oCJUswyFImVTq2d1PDU94_ipG6HM","DocId":"000c067f270460d353e2ac75567000","CommentId":"00000ac0e00020f353e271ec161c","Content":"\u003Cp\u003E使用了不安全的密钥交换方式,具体可参考https:\u002F\u002Fmyssl.com\u002Fsz.wisdudu.com?domain=sz.wisdudu.com&amp;status=q\u003C\u002Fp\u003E","ReplyCount":"5","CommentAttr":"0","UpVote":"0","CreateTime":"1739784919","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"sun","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FQ3auHgzwzM7OxIpQnpn59gWay3d1L9QxU56vzdfozqQ6Z2t9VaLtrQ\u002F0","authority":[],"score":0},{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"000c067f270460d353e2ac75567000","CommentId":"00024a8633c3b87353e2524a8610","Content":"针对您在安卓版小程序登录时报错 `ERR_SSL_PROTOCOL_ERROR` 的问题,以下是一些可能的原因及解决方案:\n\n1. **TLS 版本兼容性**:虽然您的服务器在 `ssllabs` 上评测为 B 级,并且已开启 TLS 1.2,但部分安卓设备可能对 TLS 版本的支持存在差异。建议确保服务器支持 TLS 1.3,并且优先使用最新的 TLS 版本进行通信。\n\n2. **SSL 证书链完整性**:即使您的证书显示正常,有时证书链不完整也会导致此类错误。请检查服务器配置,确保证书链完整,包括中间证书的正确配置。\n\n3. **网络环境问题**:某些网络环境下,可能存在代理或防火墙干扰 SSL 连接。建议在不同的网络环境下测试,排除网络因素导致的连接问题。\n\n4. **服务器时间同步**:确保服务器的时间与标准时间同步,因为 SSL 证书的有效期验证依赖于正确的时间设置。\n\n5. **协议和加密套件配置**:检查服务器的 SSL 配置,确保启用了安全的协议和加密套件。避免使用已知不安全或不兼容的加密方式。\n\n6. **缓存问题**:有时设备上的缓存可能导致 SSL 错误持续存在。建议用户尝试清除应用缓存或使用其他设备进行测试。\n\n7. **微信客户端特定问题**:不同版本的微信客户端可能在处理 SSL 连接时存在差异。建议确认用户使用的微信版本,并查看是否有相关的更新或已知问题。\n\n如果经过上述检查和调整后问题仍然存在,建议您进一步使用网络抓包工具(如 Wireshark)分析具体的 SSL 握手过程,找出可能的失败原因。此外,联系服务器提供商或专业的网络安全团队进行深入排查也是一个有效的途径。\n\n希望这些建议能帮助您解决问题!","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739784745","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw_h4J9DX142xB6p5cIpWjuM","DocId":"000aa2a8204a708352e28014f66400","CreateTime":"1739784456","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"小程序无法收款?","QuestionCategory":"32768","Content":"\u003Cp\u003E小程序原关联商户号被关闭收款,后面重新关联了不同主体的商户号,已关联成功,但还是不能收款,小程序点击收款无反应\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FqL3Bfys4ZLdfBITF1rYDSI0ZmhnOla0fUoXCuOe7ia8jSk3GWLqdUVia5LDFrn0bwnw3wdW4k1pC8MJKK45Y11Rg\u002F0?wx_fmt=png\" style=\"height: auto;\" class=\"img_preview_cursor\" \u002F\u003E\u003C\u002Fp\u003E","pv":"493","commentNum":"2","userCommentNum":"2","bestComment":{"OpenId":"oCJUsw8yFnOFj4STQDwbDwK8ix_0","DocId":"000aa2a8204a708352e28014f66400","CommentId":"00066492fa4b88a353e2b941764c","Content":"\u003Cp\u003E报错呢?\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739784943","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"Memory (私信不回复)","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FiaP7MZOywhx0fy5qib7KUxicFaQ0r8Yfag7jCqptNBenhqlSPQrx6KFvPiaCicYE7NicHeoQh4PJFmibobv43jbJ2so1r2fp3cjgCApjmw07sedoZg\u002F0","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUsw8yFnOFj4STQDwbDwK8ix_0","DocId":"000aa2a8204a708352e28014f66400","CommentId":"00066492fa4b88a353e2b941764c","Content":"\u003Cp\u003E报错呢?\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739784943","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"Memory (私信不回复)","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FiaP7MZOywhx0fy5qib7KUxicFaQ0r8Yfag7jCqptNBenhqlSPQrx6KFvPiaCicYE7NicHeoQh4PJFmibobv43jbJ2so1r2fp3cjgCApjmw07sedoZg\u002F0","authority":[],"score":0},{"OpenId":"sq_oDyAl0UqoY02pZk1KnjWo2krCpsw","DocId":"000aa2a8204a708352e28014f66400","CommentId":"0002e02d3b8c907353e2633916b4","Content":"\u003Cp\u003E权限与配置方面\u003C\u002Fp\u003E\u003Cp\u003E权限未正确授权:新关联的商户号可能存在部分支付权限未开通或未正确授权的情况。需登录微信支付商户平台,在消息中心查看授权请求通知,确认是否已全部同意 jsapi 支付、付款码支付、分账、api 退款等权限。\u003C\u002Fp\u003E\u003Cp\u003Eappid 和 mch_id 不匹配:可能在关联过程中出现了商户号填错,或者小程序与商户号的关联配置存在问题。要登录微信商户平台进入【产品中心 -- 开发配置】查看商户号,并与小程序后台配置的商户号进行核对。\u003C\u002Fp\u003E\u003Cp\u003E支付密钥问题:支付密钥不正确、有多余空格或过于简单,都可能导致收款无反应。可登录微信支付商户平台,进入【账户中心】-【API 安全】-【设置 API 密钥】,重新设置复杂且正确的 32 位密钥。\u003C\u002Fp\u003E\u003Cp\u003E主体不一致问题:微信支付商户平台的商户名称与微信公众平台小程序账号的主体信息必须一致。若不一致,需使用相同主体的小程序账号或微信支付账号。\u003C\u002Fp\u003E\u003Cp\u003E账户与状态方面\u003C\u002Fp\u003E\u003Cp\u003E新商户号仍有限制:虽然原商户号被关闭收款后重新关联了新商户号,但新商户号可能本身也存在问题,比如因违规被限制收款,或还处于审核、冻结等异常状态。要登录微信支付商户平台和微信支付商家助手小程序,查看新商户号是否有异常通知或风险提示。\u003C\u002Fp\u003E\u003Cp\u003E开户意愿未确认:新关联的商户号可能需要确认开户意愿。使用超级管理员的微信账号,登录 “微信支付商家助手” 小程序,在风险处理中查看是否有未确认开户意愿的提示,如有则进行确认。\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739784742","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"微盟","headimgurl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FZvOjXQZZtt1JG2rDaBIgasDrukyOUk3QSqTydyaeDCt07zgCNHsiaV2Dl651CC0b2iaKkqaJpuEu1sOfqQr24SWA\u002F0","isEnterprise":true,"authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw5HzfKO0WgFv5nPQ8zSuF_4","DocId":"000288fc37c408c350e266e4b68c00","CreateTime":"1739783928","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"一个微信号只能绑定4个小程序?","QuestionCategory":"32","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FFWHZpq1e5mSID2uJbhciaoicQOIZUdgICx7wdb2jhgKxUbjtnXtWVlKPuCSR4Cms2fpCCjlLY69dKklVohvPs5HA\u002F0?wx_fmt=png\" \u002F\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FFWHZpq1e5mSID2uJbhciaoicQOIZUdgICxicXV4bIsibWsia9TAobgib6m6FqNE0SILaCibFtGXDMHPRl3IUdFtTVYdiaA\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E微信号只绑定了四个小程序,其他同主体的个人小程序,换绑到这个微信,为什么提示 此微信号上限了\u003C\u002Fp\u003E\u003Cp\u003E微信号:wxid_dtfzkntagw4d12\u003C\u002Fp\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003C\u002Fp\u003E","pv":"479","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"sq_omvH50DIOyKL9YfbLRpNNkSYMhVc","DocId":"000288fc37c408c350e266e4b68c00","CommentId":"000062fae4cea03354e2e7ae7618","Content":"\u003Cp\u003E公众号小程序总共加起来不能超过5个\u003C\u002Fp\u003E","ReplyCount":"1","CommentAttr":"0","UpVote":"0","CreateTime":"1739785197","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"CRMEB","headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Frc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA\u002F0?wx_fmt=png","isEnterprise":true,"authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"sq_omvH50DIOyKL9YfbLRpNNkSYMhVc","DocId":"000288fc37c408c350e266e4b68c00","CommentId":"000062fae4cea03354e2e7ae7618","Content":"\u003Cp\u003E公众号小程序总共加起来不能超过5个\u003C\u002Fp\u003E","ReplyCount":"1","CommentAttr":"0","UpVote":"0","CreateTime":"1739785197","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"CRMEB","headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Frc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA\u002F0?wx_fmt=png","isEnterprise":true,"authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw5oZj7GQewZ_z6WF5uoQH4Y","DocId":"000886af450380d25fe27089b6b400","CreateTime":"1739783685","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"公众号已经迁移,无法解绑管理员,怎么解决?","QuestionCategory":"2048","Content":"\u003Cp\u003E已经迁移公众号(原公众号):gh_cc62592f5f9f (awm@zoomlion.com)\u003C\u002Fp\u003E\u003Cp\u003E已经迁移成功公众号(新公众号):中联重科智能高机 (liuming@263.net)\u003C\u002Fp\u003E\u003Cp\u003E\u003Cspan style=\"font-size: 16px;\"\u003E管理员微信号ID\u003C\u002Fspan\u003E:seashadow\u003C\u002Fp\u003E\u003Cp\u003E公众号已经迁移,但是依然挂在管理员微信下,占用 管理员名额,请问怎么解决?\u003C\u002Fp\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003C\u002Fp\u003E","pv":"139","commentNum":0,"userCommentNum":0,"flowType":2},{"OpenId":"oCJUsw2xWuJ9T2sIDBOUjhAhyMoA","DocId":"000ca89f10c820225ee24ad816bc00","CreateTime":"1739783359","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"如何接入微信小店的虚拟会员商品,直接充值到手机号业务?","QuestionCategory":"32","Content":"\u003Cp\u003E想接入微信小店下面这种虚拟会员产品直接充值到手机号的业务,要怎么接入,有没有对接文档之类的\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FPd88Xib0Umkiap9CGcRiaXAtF8pliaHbgoKqWVOQNjKvyEX5XAibhTicvLNQjQDsmJ9AtIHkntTXQAJ4iaEuoy8PSbicpw\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","pv":"552","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"000ca89f10c820225ee24ad816bc00","CommentId":"000c2e15280eb8825ee2cdf626b4","Content":"要接入微信小店的虚拟会员商品并实现直接充值到手机号的业务,您可以参考以下步骤:\n\n**一、开通虚拟支付能力**\n\n1. 确保您的小程序满足开通条件,包括主体类型为已认证小程序、企业小程序类型以及具备相应的运营资质。\n2. 在小程序管理后台的虚拟支付模块中开通新的微信支付商户号,并按照指引完成协议签署及资料上传。\n\n**二、实现虚拟会员商品充值**\n\n1. 在小程序内展示虚拟会员商品,如爱奇艺黄金会员月卡等,并提供充值入口。\n2. 用户选择商品并输入手机号后,调用微信支付接口完成支付流程。\n3. 支付成功后,您需要在后台处理充值逻辑,包括验证手机号、充值会员权益等。\n\n**三、绑定手机号**\n\n为了确保充值到正确的手机号,您可以在小程序内实现手机号绑定功能。通过调用微信提供的绑定手机号接口,引导用户输入手机号并接收验证码进行验证。\n\n**注意事项**\n\n* 在实现过程中,请确保遵守微信小程序的开发规范和政策要求。\n* 虚拟支付功能目前暂不开放苹果iOS系统App内购买方式,仅向安卓及其他手机系统提供。\n* 开发者需在2.19.2或以上版本基础库中调用相关接口。\n\n请注意,以上步骤仅提供一般性指导,具体实现细节可能因小程序类型、业务需求等因素而有所不同。如有需要,建议您查阅微信小程序官方文档或联系微信客服获取更详细的指导和支持。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739783385","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"000ca89f10c820225ee24ad816bc00","CommentId":"000c2e15280eb8825ee2cdf626b4","Content":"要接入微信小店的虚拟会员商品并实现直接充值到手机号的业务,您可以参考以下步骤:\n\n**一、开通虚拟支付能力**\n\n1. 确保您的小程序满足开通条件,包括主体类型为已认证小程序、企业小程序类型以及具备相应的运营资质。\n2. 在小程序管理后台的虚拟支付模块中开通新的微信支付商户号,并按照指引完成协议签署及资料上传。\n\n**二、实现虚拟会员商品充值**\n\n1. 在小程序内展示虚拟会员商品,如爱奇艺黄金会员月卡等,并提供充值入口。\n2. 用户选择商品并输入手机号后,调用微信支付接口完成支付流程。\n3. 支付成功后,您需要在后台处理充值逻辑,包括验证手机号、充值会员权益等。\n\n**三、绑定手机号**\n\n为了确保充值到正确的手机号,您可以在小程序内实现手机号绑定功能。通过调用微信提供的绑定手机号接口,引导用户输入手机号并接收验证码进行验证。\n\n**注意事项**\n\n* 在实现过程中,请确保遵守微信小程序的开发规范和政策要求。\n* 虚拟支付功能目前暂不开放苹果iOS系统App内购买方式,仅向安卓及其他手机系统提供。\n* 开发者需在2.19.2或以上版本基础库中调用相关接口。\n\n请注意,以上步骤仅提供一般性指导,具体实现细节可能因小程序类型、业务需求等因素而有所不同。如有需要,建议您查阅微信小程序官方文档或联系微信客服获取更详细的指导和支持。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739783385","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw3xm7ZtNu2FyA4q5kpvv_oU","DocId":"000e643c388fa0425de22cb2961800","CreateTime":"1739783133","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"微信访问网页时提示“非微信官方网页,请确认是否继续访问”,请问如何解决?","QuestionCategory":"32","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FY6uSKs8ZWicKic4ibuIQYNvNTsfn4ncMrwV5AibZe2icicAxhm6GnUPBOnDUrnZVQzia9nFu0sdxcgUX8ObrP2xOh80sA\u002F0?wx_fmt=png\" \u002F\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FY6uSKs8ZWicKic4ibuIQYNvNTsfn4ncMrwVExQtlgjpicapTiakUD2qhe8jwkc1BURia5lWTeIICWajZcsDsupiaVO9icg\u002F0?wx_fmt=jpeg\" \u002F\u003E\u003C\u002Fp\u003E","pv":"147","commentNum":"2","userCommentNum":"2","bestComment":{"OpenId":"oCJUsw-HdgmTneWLLO8cZPDwgS8g","DocId":"000e643c388fa0425de22cb2961800","CommentId":"000ae827e58e50b25de22ec3e6b8","Content":"\u003Cp\u003E申请恢复试试\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FXaE1pxspoBReIbSbGFLuG1MRW57cd7F14ic0iaeTBVZwXrxicokBia8xXHNSxa4Ejqmwt4ickicVnSyWgc28hzB0LPvg\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","ReplyCount":"3","CommentAttr":"0","UpVote":"0","CreateTime":"1739783313","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"风清雾散云开见日出","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FPiajxSqBRaEI2IaRP4HFBMuB9AibKVKhNUcdLVYCyT0PF4LPOUMOvxVA\u002F0","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUsw-HdgmTneWLLO8cZPDwgS8g","DocId":"000e643c388fa0425de22cb2961800","CommentId":"000ae827e58e50b25de22ec3e6b8","Content":"\u003Cp\u003E申请恢复试试\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FXaE1pxspoBReIbSbGFLuG1MRW57cd7F14ic0iaeTBVZwXrxicokBia8xXHNSxa4Ejqmwt4ickicVnSyWgc28hzB0LPvg\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","ReplyCount":"3","CommentAttr":"0","UpVote":"0","CreateTime":"1739783313","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"风清雾散云开见日出","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FPiajxSqBRaEI2IaRP4HFBMuB9AibKVKhNUcdLVYCyT0PF4LPOUMOvxVA\u002F0","authority":[],"score":0},{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"000e643c388fa0425de22cb2961800","CommentId":"0002c46c5644f0e25de205d7263c","Content":"针对您在微信访问网页时遇到的“非微信官方网页,请确认是否继续访问”的提示问题,以下是可能的解决方案:\n\n### 1. **确认网站备案情况**\n- 首先,确保您访问的网站已完成ICP备案。备案信息可在[ICP\u002FIP地址\u002F域名信息备案管理系统](http:\u002F\u002Fbeian.miit.gov.cn\u002F)查询。\n- 如图一所示,可通过搜索框输入域名查询备案详情。\n\n### 2. **检查域名与备案信息一致性**\n- 确保访问的网址与备案信息中的域名完全一致,包括子域名和路径。\n\n### 3. **使用微信内嵌网页**\n- 尽量通过微信内嵌的浏览器访问网页,避免使用外部浏览器。\n\n### 4. **申请微信官方认证**\n- 若您的网站为商业用途,可考虑申请微信官方认证,以获得更稳定的访问权限。\n\n### 5. **检查微信设置**\n- 确认微信的“微信安全中心”设置中,未将该网站加入黑名单。\n\n### 6. **更新微信版本**\n- 确保您的微信版本为最新,旧版本可能存在兼容性问题。\n\n### 7. **联系网站管理员**\n- 若以上方法均无效,建议联系网站管理员,确认是否有微信相关的访问限制或配置问题。\n\n### 8. **申请恢复访问**\n- 如图二所示,若为特定网站,可尝试点击“申请恢复”按钮,按照提示操作。\n\n### 注意事项\n- 微信对非官方网页有一定的访问限制,主要是出于安全考虑。确保您访问的网站合法、安全,避免访问不明链接。\n\n通过以上步骤,您应该能够解决“非微信官方网页,请确认是否继续访问”的提示问题。若问题依旧存在,建议进一步检查网络环境或联系微信客服获取帮助。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739783171","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw0NU8gCZlvKZLZN8jytSvWg","DocId":"0008849a3883a0925de26a73c6fc00","CreateTime":"1739783133","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"配置订单详情路径中提到的权限集182是指哪个权限,文中未描述","QuestionCategory":"32","Content":"\u003Cp\u003E\u003Ca href=\"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fplatform-capabilities\u002Fbusiness-capabilities\u002Forder_center\u002Forder_center.html\" rel=\"noopener noreferrer\" target=\"_blank\"\u003Ehttps:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fplatform-capabilities\u002Fbusiness-capabilities\u002Forder_center\u002Forder_center.html\u003C\u002Fa\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E权限集 182 是指哪个权限? 文档(\u003Ca href=\"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fdoc\u002Foplatform\u002FThird-party_Platforms\u002F2.0\u002Fproduct\u002Fminiprogram_authority.html\" rel=\"noopener noreferrer\" target=\"_blank\"\u003Ehttps:\u002F\u002Fdevelopers.weixin.qq.com\u002Fdoc\u002Foplatform\u002FThird-party_Platforms\u002F2.0\u002Fproduct\u002Fminiprogram_authority.html\u003C\u002Fa\u003E)中未体现。\u003C\u002Fp\u003E","pv":"606","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"oCJUsw0NU8gCZlvKZLZN8jytSvWg","DocId":"0008849a3883a0925de26a73c6fc00","CommentId":"000c2a2fd2c870f25ee273abc61c","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FUnOvONvSM0c9UdHdrP9fnvUpgFdREoo5037jQYFx5W7o3hBtRwicUOlQ4vXHS1ZNXbbP3Tn47JCYEiarGLe47EwQ\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E在开放后台查看到了,辛苦更新文档\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739783566","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"賴翔","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FUnOvONvSM0f3iauEue5bSEBkgT6k6Rj7eXvJiahHiczNImIjBv4pjiceIsk0JcDexppE53joIXxgaOY\u002F0","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUsw0NU8gCZlvKZLZN8jytSvWg","DocId":"0008849a3883a0925de26a73c6fc00","CommentId":"000c2a2fd2c870f25ee273abc61c","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FUnOvONvSM0c9UdHdrP9fnvUpgFdREoo5037jQYFx5W7o3hBtRwicUOlQ4vXHS1ZNXbbP3Tn47JCYEiarGLe47EwQ\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E\u003Cp\u003E在开放后台查看到了,辛苦更新文档\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739783566","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"賴翔","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FUnOvONvSM0f3iauEue5bSEBkgT6k6Rj7eXvJiahHiczNImIjBv4pjiceIsk0JcDexppE53joIXxgaOY\u002F0","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw5-wAFFVAgdRO7m4xCnrRuU","DocId":"00040029dac448d25ce2996aa6bc00","CreateTime":"1739783026","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"如何区分用户账号是香港还是中国大陆?","QuestionCategory":"32","Content":"\u003Cp\u003E想请教一下各位!\u003C\u002Fp\u003E\u003Cp\u003E我们用到微信支付分这个产品,但是它目前仅支持中国大陆用户,而我们的业务存在香港用户,所以有没有办法能够判断用户类型,如果是香港用户,我们就提前屏蔽掉微信支付分的支付流程,避免用户多余操作的步骤\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Fg67P7FhvicsnZtxTqwKWBKicIdxLfJibzaTjYheZkhSejzMsp0q6nZU3ggNs3N9sa5FeVqsIkTHNChv575jic7ibx9Q\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","pv":"206","commentNum":"2","userCommentNum":"2","bestComment":{"OpenId":"sq_omvH50DIOyKL9YfbLRpNNkSYMhVc","DocId":"00040029dac448d25ce2996aa6bc00","CommentId":"000a26cd3c0c801355e2e3df1668","Content":"\u003Cp\u003E通过用户提交的信息判断\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739785278","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"CRMEB","headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Frc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA\u002F0?wx_fmt=png","isEnterprise":true,"authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"sq_omvH50DIOyKL9YfbLRpNNkSYMhVc","DocId":"00040029dac448d25ce2996aa6bc00","CommentId":"000a26cd3c0c801355e2e3df1668","Content":"\u003Cp\u003E通过用户提交的信息判断\u003C\u002Fp\u003E","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739785278","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"CRMEB","headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Frc6Xwk5dPN1bBOnhhUGwASPkEfQ2S0RIusMElQhic1vGQz2KN3shOfKN8CdBkMbvFHVWL36aPCSTE2o43QXqjaA\u002F0?wx_fmt=png","isEnterprise":true,"authority":[],"score":0},{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"00040029dac448d25ce2996aa6bc00","CommentId":"000846e3f94450b25ce28078b670","Content":"要区分用户账号是中国大陆还是香港,可以通过用户的手机号码归属地进行判断。中国大陆的手机号码通常以特定的号段开头,例如130-139、150-152、157-159、178、180-182、183、184、187-188、198等,而香港的手机号码则以5、6、9开头。你可以在用户注册或登录时,通过手机号码的前缀来判断其归属地。\n\n此外,微信小程序提供了获取用户位置的API接口,可以通过用户的地理位置信息来判断其是否在中国大陆。如果用户的地理位置信息显示在香港,则可以提前屏蔽掉微信支付分的支付流程。\n\n具体实现步骤如下:\n\n1. **获取用户手机号码**:在用户注册或登录时,获取用户的手机号码。\n2. **判断手机号码归属地**:通过手机号码的前缀来判断用户是否来自中国大陆。\n3. **获取用户地理位置**(可选):如果手机号码归属地判断不够准确,可以通过微信小程序的API接口获取用户的地理位置信息,进一步确认用户是否在中国大陆。\n4. **屏蔽微信支付分流程**:如果用户来自香港,则在展示微信支付分相关功能时进行屏蔽,避免用户进行多余操作。\n\n通过以上方法,可以有效区分用户账号的归属地,并根据用户类型调整相应的功能展示,提升用户体验。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739783061","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0}],"flowType":2},{"OpenId":"oCJUsw6Bjy8OBcKsvzW1Dcs_NpBc","DocId":"000aa2fce60c08b25ae2a845466000","CreateTime":"1739782502","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","BlockType":"1","Topic":"0","BlogAttr":"1","Title":"小程序视频号交易组件现在能不能使用,需要什么条件。 怎么开通?","QuestionCategory":"2","Content":"\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FpmYsel6z9A3rWZrNH4ltLrdS0bXQW5cibmo0l5VyUMA55E30uoBxuy5tibCP3A5RNiacww08q8sMMFN1OETo3vUfg\u002F0?wx_fmt=png\" \u002F\u003E\u003C\u002Fp\u003E","pv":"709","commentNum":"1","userCommentNum":"1","bestComment":{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"000aa2fce60c08b25ae2a845466000","CommentId":"0002e01cf20848a25ae29d3c0668","Content":"小程序视频号交易组件目前是可以使用的。要开通此组件,你需要满足以下条件:\n\n1. 拥有一个小程序账号,且该账号在半年内无严重违规行为。\n2. 小程序开发者应为国内非个人主体,即企业或个体工商户。\n\n开通流程如下:\n\n1. 登录微信公众平台,进入小程序管理后台。\n2. 在“交易组件”菜单中,选择标准版交易组件开通功能。\n3. 提交相关资料及证件进行审核。\n4. 审核通过后,按照指引完成开店任务。\n5. 将嵌入了组件相关代码的小程序进行发布。\n\n完成以上步骤后,你就可以在小程序中使用视频号交易组件了。该组件支持标准化接入视频号橱窗带货和直播卖货,并能实现商品展示、下单购买、订单管理等完整交易能力。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739782522","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0},"bestCommentsAggregated":[{"OpenId":"oCJUswzE28kq8tWF3z6P93jyg5pQ","DocId":"000aa2fce60c08b25ae2a845466000","CommentId":"0002e01cf20848a25ae29d3c0668","Content":"小程序视频号交易组件目前是可以使用的。要开通此组件,你需要满足以下条件:\n\n1. 拥有一个小程序账号,且该账号在半年内无严重违规行为。\n2. 小程序开发者应为国内非个人主体,即企业或个体工商户。\n\n开通流程如下:\n\n1. 登录微信公众平台,进入小程序管理后台。\n2. 在“交易组件”菜单中,选择标准版交易组件开通功能。\n3. 提交相关资料及证件进行审核。\n4. 审核通过后,按照指引完成开店任务。\n5. 将嵌入了组件相关代码的小程序进行发布。\n\n完成以上步骤后,你就可以在小程序中使用视频号交易组件了。该组件支持标准化接入视频号橱窗带货和直播卖货,并能实现商品展示、下单购买、订单管理等完整交易能力。","ReplyCount":"0","CommentAttr":"0","UpVote":"0","CreateTime":"1739782522","Selected":"","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"智能回答","headimgurl":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FhR-EEOJQ1oahCnk1ovtCzApKXdWZa1wiF7E0NrsuUakSAXES4TJOv8HBBpYcc_fi8qp-_MeHwWslCwZzaCn3ig","authority":[],"score":0}],"flowType":2}],"count":300},"auditList":[],"bugtrace":{"blogIssueList":[],"blogHomeIssueList":[{"Id":"490","Author":"binniexu","State":"已上线","IssueId":"5908","ProjectId":"28318","Issue":"28318#5908","UpdateTime":"1734422285","CreateTime":"1716194100","Content":"","Title":"Skyline:picker 组件 mode = multiSelector 时,bindcolumnchange 事件无法触发","Type":"0","AppVersion":"","ClientVersion":"","ToolVersion":"Nightly 1.06.2405172","Milestone":"","UpVote":"1","DownVote":"0","BlockType":"13","BlogCategory":"1048576","Flag":"0","DocId":"000c6ce4384fa0ced981b5b7c6b014","OpenId":"sq_oFkBjwdwuc3zHLIRw5YMte6bfgHU","System":"工具","IsRelease":"1","OutId":"452","Related":"000a6c8da08b80524151badf86a400|000284880307c091ab81bcefb66c00","IssueTags":"","title":"Skyline:picker 组件 mode = multiSelector 时,bindcolumnchange 事件无法触发","time":"12-17","type":"已完成"},{"Id":"454","Author":"binniexu","State":"已中止","IssueId":"1923","ProjectId":"433130","Issue":"433130#1923","UpdateTime":"1716193133","CreateTime":"1710746416","Content":"符合预期的行为,在 skyline 下 swiper 通过手势滑动是弹簧的物理模型,无法控制时间。 \n所以目前只有在 autoplay 时,duration 才生效。","Title":"Skyline:swiper 设置 duration 过渡时间不生效","Type":"0","AppVersion":"","ClientVersion":"8.0.47","ToolVersion":"","Milestone":"","UpVote":"0","DownVote":"0","BlockType":"13","BlogCategory":"1048576","Flag":"0","DocId":"000aaa5c0f8e604ae331ecb2568c14","OpenId":"sq_oFkBjwdwuc3zHLIRw5YMte6bfgHU","System":"安卓|iOS","IsRelease":"1","OutId":"416","Related":"00000855a3c4508f073145ebe65c00|000c0e99ebc29885c681c6c1061000","IssueTags":"","title":"Skyline:swiper 设置 duration 过渡时间不生效","time":"05-20","type":"已完成"},{"Id":"452","Author":"binniexu","State":"已上线","IssueId":"1909","ProjectId":"433130","Issue":"433130#1909","UpdateTime":"1714976489","CreateTime":"1710494849","Content":"","Title":"Skyline:transition 属性 var 支持问题","Type":"0","AppVersion":"","ClientVersion":"8.0.47","ToolVersion":"","Milestone":"8.0.49","UpVote":"1","DownVote":"0","BlockType":"13","BlogCategory":"1048576","Flag":"0","DocId":"000e0241d5c6d07fa931853ab6b814","OpenId":"sq_oFkBjwdwuc3zHLIRw5YMte6bfgHU","System":"安卓|iOS","IsRelease":"1","OutId":"414","Related":"000a6e5d708bd87d1d31c670f61c00","IssueTags":"","title":"Skyline:transition 属性 var 支持问题","time":"05-06","type":"已完成"},{"Id":"492","Author":"v_jahozheng","State":"进行中","IssueId":"0","ProjectId":"0","Issue":"#","UpdateTime":"1734941000","CreateTime":"1734941000","Content":"","Title":"camera 组件在 iPhone 近拍模糊不对焦","Type":"1","AppVersion":"","ClientVersion":"","ToolVersion":"","Milestone":"8.0.55","UpVote":"0","DownVote":"0","BlockType":"13","BlogCategory":"1048576","Flag":"0","DocId":"0004e08ed3c9f85be692bb01f61c14","OpenId":"sq_oFkBjwdwuc3zHLIRw5YMte6bfgHU","System":"ios","IsRelease":"1","OutId":"454","Related":"0002ced8ecc5e06df09f1c2ec56c00|000aca263483b073fd7180b566f400|0004a0c58fc800f27fdffea1256800|000a64023449f81bc63206e4561400|0002a467e44d00d403516e0bd6bc00","IssueTags":"","title":"camera 组件在 iPhone 近拍模糊不对焦","time":"12-23","type":"进行中"},{"Id":"468","Author":"binniexu","State":"进行中","IssueId":"1976","ProjectId":"433130","Issue":"433130#1976","UpdateTime":"1716531851","CreateTime":"1713340126","Content":"","Title":"Skyline:backdrop-filter 边缘渲染问题","Type":"0","AppVersion":"","ClientVersion":"8.0.48","ToolVersion":"","Milestone":"","UpVote":"0","DownVote":"0","BlockType":"13","BlogCategory":"1048576","Flag":"0","DocId":"00068cb6528590264161bcf296bc14","OpenId":"sq_oFkBjwdwuc3zHLIRw5YMte6bfgHU","System":"安卓|iOS","IsRelease":"1","OutId":"430","Related":"000ce42a938db86c7551bdc9f6b400|00000c1a820748d82a91084236bc00","IssueTags":"","title":"Skyline:backdrop-filter 边缘渲染问题","time":"05-24","type":"进行中"},{"Id":"491","Author":"binniexu","State":"进行中","IssueId":"2034","ProjectId":"433130","Issue":"433130#2034","UpdateTime":"1716197063","CreateTime":"1716197063","Content":"","Title":"Skyline:applyAnimatedStyle 修改 text 的 color 会导致微信APP崩溃","Type":"0","AppVersion":"","ClientVersion":"8.0.49","ToolVersion":"","Milestone":"","UpVote":"1","DownVote":"0","BlockType":"13","BlogCategory":"1048576","Flag":"0","DocId":"0006acd74e0b402fd4810170a66014","OpenId":"sq_oFkBjwdwuc3zHLIRw5YMte6bfgHU","System":"安卓|iOS|工具","IsRelease":"1","OutId":"453","Related":"000288f10647d8d0af81bb4176b000","IssueTags":"","title":"Skyline:applyAnimatedStyle 修改 text 的 color 会导致微信APP崩溃","time":"05-20","type":"进行中"}],"issueList":[],"issueListCount":0,"bugIssueList":[],"bugIssueListCount":0,"needIssueList":[],"needIssueListCount":0,"isUseBugtrace":false},"hideHeader":false,"showGlobalSearch":true,"hideFooter":false,"iframe":{"content":""},"useNewAskQuestion":"nouse","topicList":{"currentTopic":{},"rows":[],"count":0},"livestream":{},"course":{"info":{"Id":"2","BlockType":"1","CourseLink1":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fbusiness\u002Fcourse\u002F0002041cb6c570351a32f701a66c0d","CourseLink2":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fbusiness\u002Fcourse\u002F000606628dc2e86dc0ddcbb115940d","CourseLink3":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fbusiness\u002Fcourse\u002F000264e20a0dd8e69669b609451c0d","MoreLink":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fbusiness\u002FCategorySearch?cid=2","OutterImg":"1","UpdateTime":"1729151549","bannerImg":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FPxLPibq1ibyh1VvCxtMqDo8ssgZVdnlbLRO5dUr3gGx7lmiaDAuFdoX8kJp01sC74LTGbTuWKa8rlBGHWt1vnahzg\u002F0?wx_fmt=jpeg","bannerTitle":"多端应用开发系列课程","bannerIntroduce":"本课程从实践角度,从0开始完成多端应用的开发和上线过程,并介绍一些必要的细节指引,帮助开发者能够轻松开始,课程内容会根据产品演进持续更新。","bannerDocId":"0002041cb6c570351a32f701a66c0d","bannerLink":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fbusiness\u002Fcourse\u002F0002041cb6c570351a32f701a66c0d"},"list":[{"DocId":"000606628dc2e86dc0ddcbb115940d","Title":"小程序性能优化实践","Img":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FPxLPibq1ibyh0U4e0qLqNrULAUzW5UbWbicUN5GyJqd24GR0Ricg5q14VGGBWlicNca8x4xelvDrM1r0ibwAjAsR0bOA\u002F0?wx_fmt=jpeg","Introduce":"小程序性能优化课程基于实际开发场景,由资深开发者分享小程序性能优化的各项能力及应用实践,提升小程序性能表现,满足用户体验。","link":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fbusiness\u002Fcourse\u002F000606628dc2e86dc0ddcbb115940d"},{"DocId":"000264e20a0dd8e69669b609451c0d","Title":"小程序开发起步","Img":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002FGEWVeJPFkSEz7tgvlaTtv2MYO01RZr0y2lKyiby6STpicpYB2a46S17caRhHMDhotyz62xeNAwc5CibskvQH3eKwg\u002F0?wx_fmt=jpeg","Introduce":"学习 5 节课程,从 0 至 1 做第一个属于你的小程序,深入浅出了解小程序开发。本系列视频,由腾讯课堂 NEXT 学院、微信学堂联合出品。","link":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fbusiness\u002Fcourse\u002F000264e20a0dd8e69669b609451c0d"}],"OutterImg":"","Title":"","Introduce":""},"homepageSwiper":[],"homepageDynamicList":[],"homepageRecommendList":[],"homepageMixflowList":[],"weappExposureInfo":{"1":{"code":0,"success":true,"exposureInfo":{"Id":"3","BlockType":"1","WeappQRCode":"","WeappTitle":"","WeappDesc":"","WxworkGroupQRCode":"","WxworkGroupTitle":"","WxworkGroupDesc":"","UpdateTime":"1676955703"}}},"personal":{"openid":"","info":{"selfInfo":{},"userInfo":{"openid":""},"appreciateInfo":{"appreciateByCnt":0,"appreciateCnt":0},"userScore":{"level":1}},"getPersonInfoReady":false,"cnt":{},"caseList":[],"caseFetched":false,"question":{"list":[],"total":30},"answer":{"list":[],"total":30},"share":{"list":[],"total":30},"recommend":{"list":[],"total":30},"article":{"list":[],"total":10},"fav":{"list":[],"total":30},"follow":{"list":[],"total":30},"serviceList":[],"minishopOrderList":[],"minishopOrderCount":0,"serviceListLoading":false,"serviceListLoaded":false,"MiniProgramDevelopService":[],"CustomDevelopService":[],"PluginDevelopService":[],"ApiDevelopService":[],"MiniShopService":[],"currentServiceType":1,"servcieDesc":"针对行业、场景的小程序代开发服务,帮助企业快速搭建小程序","devAppInfo":null,"devAppInfoLoading":false},"serviceMarket":{"home":{"miniProgramDevelopService":[],"pluginService":[],"apiService":[],"mcnService":[]},"search":{"saasService":{"total":0,"limit":0,"start":0,"list":[]},"saasProvider":{"total":0,"limit":0,"start":0,"list":[]},"mcnAnchor":{"total":0,"limit":0,"start":0,"list":[]},"mcnAgency":{"total":0,"limit":0,"start":0,"list":[]},"mcnService":{"total":0,"limit":0,"start":0,"list":[]}},"tagConfig":{"info":{"saas":{"industry":[],"scene":[]},"mcn":{"area":[],"serviceIndustry":[]}},"relations":{"serviceType2Industry":{},"serviceType2Scene":{},"industry2Scene":{}},"searchFilters":{"saas":{"industryHome":[],"industry":[],"scene":[]}}},"tagConfigLoaded":false,"keyWord":"","selectTab":1,"service":{"list":[],"total":0,"page":1,"limit":6,"currentServiceType":[],"loading":false,"searchErr":"","funnelLabelList":[],"funnel":null,"currentIndustry":[],"currentApi":[],"currentReqTime":0},"serviceProvider":{"list":[],"total":0,"page":1,"limit":6,"loading":false,"searchErr":"","funnelLabelList":[],"funnel":null},"detail":{"enterpriseInfo":{},"relativeServiceList":[],"service":null,"caseImgList":[],"packageInfo":{},"ratingList":{"page":1,"limit":20,"count":0,"rows":[]},"ratingListSelf":{"count":0,"rows":[]},"sale":{"total":0},"asyncDataReady":false,"authorityServicePlatformType":0},"buyerServiceList":[],"orderList":[],"orderTotal":0,"orderListLoading":false,"orderDetail":{"pkg":{}},"orderId":"","buyPackage":null,"serviceOrderList":[],"serviceOrderTotal":0,"serviceOrderListLoading":false,"serviceOrderData":{"today":0,"history":0,"todayPrice":0,"historyPrice":0},"serviceData":{"servicePV":0,"orderCount":0,"orderPrice":0},"sellerAdmin":{"ratingList":{"page":1,"limit":20,"count":0,"rows":[]},"ratingListLoading":false,"dataStatsOverview":{},"dataQuotaOrderList":[],"dataQuotaOrderListLoading":false},"serviceDraft":{},"serviceDraftFull":{},"serviceAudit":{},"we":{"list":[]},"addPlugin":{"list":[],"availableStatus":1,"pluginCategory":{}},"currentBanner":[],"fund":{"verify":{"step":0,"skipRemit":0}}},"miniHome":{"list":{"list1":[{"ID":"1213301129006825473","BlockType":"1","Name":"Kbone解决方案","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27DppktIFqTCic5KA0G9fkKdEqAJsloAicVJZyZG6MwWo8VQ9yPsmBT9aZdPHtOBkFJJ21SEat0VrxzQS1w\u002F0?wx_fmt=png","CreateQuestionUrl":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fblog\u002Fcreate\u002F1?blocktype=1&questionCategory=32","FuncList":"article,question,announcement","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1213999125012856832","BlockType":"1","Name":"微信开发者工具","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcWvy2c81A03I6mfT0m1BF8gvl4oWVU1240TR5ibOwPOxPfwr4L000HxbBkSPS7iayC7YqMfcexbRu6A\u002F0?wx_fmt=png","CreateQuestionUrl":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fblog\u002Fcreate\u002F1?blocktype=1&questionCategory=8","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1216387783892418561","BlockType":"1","Name":"小程序直播","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27DppnHN915Br0w03KEj4IQWatAGaW1mW9KNldh8Av3vIzG7hPpwLtDt4miaqKTAWztxhllKmcCKbbgtRg\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"question,announcement,article,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1225494411287609345","BlockType":"1","Name":"微信客户端内测","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27DppmRiarDyCXAlcHRRnkYhUgpicxfhDibx3HhCPSUttkducymb6sSicgibbnuBMHU2dhlNzQeUvHlsVTEm0g\u002F0?wx_fmt=png","CreateQuestionUrl":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fblog\u002Fcreate\u002F1?blocktype=1&questionCategory=32","FuncList":"question,announcement","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1255396892104638464","BlockType":"1","Name":"微信小程序应用开发赛","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FUB2CE27DppnTIwIKfRVW4JlZWBPMA9hEXuzLQq7nfKafDD5djclqeLu4m2f1EN6TtIYoFtqQ7iclhFj2j4zvFUA\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1270016789551906817","BlockType":"1","Name":"服务号对话能力(原微信导购助手)","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27DppnHN915Br0w03KEj4IQWatAXcaPGebOonmk2Qer3WUqYSguItxDnicOOe9emWtNoWJU2fCzL8unfxQ\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1276293464824659971","BlockType":"1","Name":"微信公开课","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FUB2CE27DppmcCZMbD0may5A7QgXGCqsNUPGLYNjiaEOxcVtibic3jQBPERoyjJBk6duSJT1rCJTHuK864icJtehK1g\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1277775808983138305","BlockType":"1","Name":"公众号","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27DppnHN915Br0w03KEj4IQWatAncjLibpBy447Sl2rWb4J2sTQjIXg54DDApGIjDyPppAxe0E3MmCmficA\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"question,announcement,course,article","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1286298401038155776","BlockType":"1","Name":"微信云开发","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FibUWDzKf0qcWLuy195Foq7jMnxUwOtTicqCNEydGIN02jmKSaIC5jBKM1xSD8O5VpBUxCaSxiaZPibPA5Y3xRHseFg\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fcommunity\u002Fblog\u002Fcreate\u002F1?blocktype=1&isnew=1&questioncategory=1024","FuncList":"question,announcement,course,article","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":"https:\u002F\u002Fcloud.weixin.qq.com\u002Fcloudbase?utm_source=community"},{"ID":"1289051127652188162","BlockType":"1","Name":"微信OCR识别","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27Dppm1ictMt5ar7ce8pa4vreqfT9uiaFss8NInczCqu7aJW1gt5ArN5Kx6UVzgsofBnm3OT7pvyUDWTrGg\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1306122493748527104","BlockType":"1","Name":"智能对话","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27DppnHN915Br0w03KEj4IQWatAQb19e98Pr0ZttfgHpeCx9gRMn6Zg0wI15RkKsnHCArU6w84S0RKdng\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1351009109952512001","BlockType":"1","Name":"微信小商店","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FUB2CE27Dppk5HNpPkXxddPOXkxRYfAkJREykl80acQZLOYD7YZECpHicpWetSCQyBwY1v4vSUiaBVdRgicE5XzEhQ\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"question,announcement,article,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1355698687267438595","BlockType":"1","Name":"开放平台服务商专区","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FUB2CE27DppkEiap66eABnUxOphRibT85a6eAvmcOd5cphkMBQZhOlEbg4fDibfPB3P35JMUJHaSL5d8H9wBApUFfw\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"question,announcement,course,article","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1421119558135676931","BlockType":"1","Name":"微信人脸核身","OpenId":"oCJUsw-aDiD5q2J_05sq4oTPw0jg","Moderator":"oCJUsw-aDiD5q2J_05sq4oTPw0jg","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Fy7A0icJ4IJict801GNv3RLZSY68nOG7MINgIw3ic7ZuibY0ad4oy1PUzEFIOP0xBqvAsgQKTtaibmticS9SOvsJk0wtA\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"question,announcement,article,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1591986099080445956","BlockType":"1","Name":"安全中心","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcWUJMENP3LKfjun8GVnkVfySicoLgaUMCKPs5XYCtrLOmY3ibianEAuKCfpnakW3UMVk9Q5LeuYJZDQg\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"question,article,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1705397475903111172","BlockType":"1","Name":"服务号订阅通知","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcWxffkE7M25xOjSeD6pzzXlLecGc61ckTbL5O5ZgkkibfOKAheU0bOGrkNwTdGYTd6P6sHSUKpSbrA\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1757050144291684358","BlockType":"1","Name":"小程序联盟","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcWOPBMhMTCfF2nronNibVwEg0oPhKPhT4UFOkZDdvWft3aoKTPvA950UkmJJ2jqtMvyep7Wvlbiaibqg\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1792207662500118536","BlockType":"1","Name":"微信物流服务","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcX9ZFx43K65Ce0RibtWGkmbQ0hl5Asvu8YZibpicIiayJibichLicwEuq9P4nia0cqjzEwOJw2vYLVFg5MYmg\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1807982532018110467","BlockType":"1","Name":"视频号","OpenId":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","Moderator":"oCJUsw3-S1xx0pg52IUBAaBOA_zc","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcWfibp1eYN0L6eoMzBahx60T3eUficaDYPajDKagDGMTcibp7ia8Uqv1hsZFoRpRvbFbiaCjURUaC4nicLw\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1825647464540864513","BlockType":"1","Name":"We分析","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FibUWDzKf0qcU6IpKE0GzP6WO31SRibvy20pPff5YG2FEdyx8L4mEWURXEp7ADLPj464a7SrHVdXjq7LRPy3TQgLw\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1841304830498127872","BlockType":"1","Name":"微信大数据挑战赛","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002FibUWDzKf0qcWHn6ph1QTrALmXia4IPY4kLJD8eyNmUT9gjCMrKwgx0B0LhqXiaV9DBHibmBxyMZzVCiaicN3tTezI9OA\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question,announcement","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"1919566493118201863","BlockType":"1","Name":"微信云托管","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcXo2WkYnsapR31tic4UBRHNbS4gZicxJjaQMZ0YloDspIicWKBib05yf6wD4Axn0P6x9rwhyEic9PeAJ0g\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":"https:\u002F\u002Fcloud.weixin.qq.com\u002Fcloudrun?utm_source=community"},{"ID":"1929579418541178884","BlockType":"1","Name":"微信小店","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002FYUdMOMCYHAv9S9oWvVFOeWafwNNbTRNiaSInRwGyseib4N7VPQvB21Tm8bHKcrFSrrwRaJ2AAzc4MGz661unf3gA\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"2000625688088739840","BlockType":"1","Name":"小程序客服能力","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FWdDKjs4PbI5qEkxcJAy1bPz52Wo7IlTQYLRRDp9YfyBbPAADMI302q6H2v5QMYSzhFEvULyriaXwric2opwNmfibg\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"2300422336543784966","BlockType":"1","Name":"微搭低代码","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcX14ysRIbst6AzYB1eGh5Bwe54D5xTJ7RIN9WkEubbVgiaSsnicRic5xX9EX1xzEOeMeoOiak7YlPHwBg\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{\"BlockType\":\"1\",\"Name\":\"微搭低代码\",\"HeadImageUrl\":\"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcX14ysRIbst6AzYB1eGh5Bwe54D5xTJ7RIN9WkEubbVgiaSsnicRic5xX9EX1xzEOeMeoOiak7YlPHwBg\u002F0?wx_fmt=png\",\"CreateQuestionUrl\":\"\",\"FuncList\":\"article,question,announcement,course\",\"SourceURL\":\"\"}","SourceURL":""},{"ID":"2315318279491616771","BlockType":"1","Name":"小程序云测试","OpenId":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","Moderator":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Fnm27MmSkv26oBKx4y42gf8Fbz71G3dGMDLaGgdmsBSvibg0HczymxAnpHiaylkxLK9iaRMOmKQVLyAufIBpEiaRQkw\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"2351405025148862470","BlockType":"1","Name":"硬件服务","OpenId":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","Moderator":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Fnm27MmSkv26pOiaZrQNOK8Z8pOibb8QjtRq70h7NsbD6m4bGhYdyibYXsNCVTgExkicFroY6wb3U424zL7GpjtPB2g\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"2757364067488563201","BlockType":"1","Name":"TDesign 组件库","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcViabgrYzhUVicmybRnudp0hAVibHQc3JFdjDaOSIhqxuReQzn5urYodiahAez95sXsTuiaVuiclyqO6IPQ\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"2889188691586351105","BlockType":"1","Name":"小程序多端框架","OpenId":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","Moderator":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Fnm27MmSkv27Sc3ibdouRgzCGGOnVniaTL9sN7FEv55zPiabplYhB4A98E2HvvvIjwVZqwQ4oDrgEJ4xz3GW1IialsQ\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fplatform\u002Fminiapp"},{"ID":"3081976366428028932","BlockType":"1","Name":"Skyline渲染引擎","OpenId":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","Moderator":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_jpg\u002Fnm27MmSkv27JCJbnc7kO6F8h09wCpaQt10pXQY9crCGN5tVrsHficPow67mZTsdKMOdNvxVqE9z4ft2mFx69rfQ\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"3398116438949937159","BlockType":"1","Name":"小程序备案","OpenId":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","Moderator":"oCJUswxpk_M5Ats7DWDPGCDLqV4U","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002Fnm27MmSkv27X1iaSpqSiaYLVT3v8vHHicc3oxIfb4hPTap2bwM4o73Y8fFvkkQaCCaCFoGC6M4kiaJbzibq8AfwYgdw\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"3547573390494318594","BlockType":"1","Name":"TAPD项目管理工具","OpenId":"oCJUsw8atN_bEqew1J1jHyrUg3sU","Moderator":"oCJUsw8atN_bEqew1J1jHyrUg3sU","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz_png\u002FibUWDzKf0qcVSoRJzLwodsTmmBSwt66pgtCibdceXa1FXhBtazXVkyZUMkP1vGerxuAaoQqo5FLPrSYq4cs15ISw\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"3583332012141903877","BlockType":"1","Name":"小程序短剧","OpenId":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","Moderator":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002F7QwmBkKBvvbes59pPM1RdPs8ia2OhgodsFEcOiamB3kpYVxDwU2x0SyZbicsyUPpJdWBsyZHR9ntVVlSGBMMlwE8Q\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"3631365851346911237","BlockType":"1","Name":"小程序小说","OpenId":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","Moderator":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002F7QwmBkKBvvabUTGhiblNQRhLB6ia3J7DvmMN0n0qvNWGTQBEdmFJxouZJGX7pqIXY0yJZcY8EtSj5tcb8EFzj2TQ\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"3690550954962780162","BlockType":"1","Name":"PC小程序","OpenId":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","Moderator":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002F7QwmBkKBvvZpEzxh8Nx9mUx8Z3m62UEaOkBfpxAHLsKboEae3Kk2RDiblAcgdE2LaibqlULLzWpyiaP4UdabelGJA\u002F0?wx_fmt=jpeg","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""},{"ID":"3721056300659130376","BlockType":"1","Name":"Mini Program Global","OpenId":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","Moderator":"oCJUsw9SAo1L8oahU9iF1w0dHU-Q","HeadImageUrl":"http:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_png\u002F7QwmBkKBvvZR7MmPcCUw1vakQoVqyNfATiaeMhkOrKSvNpuHUBL71ia0DFW9NyFb9jXqXpwgr0ulpotEVR5m69FA\u002F0?wx_fmt=png","CreateQuestionUrl":"","FuncList":"article,question,announcement,course","Hide":"0","Flag":"0","AuditStatus":"1","AuditData":"{}","SourceURL":""}]},"detail":{},"favList":[],"caseList":[],"totalCases":0},"competition":{"id":611099,"nickname":"","headimg":"","gotoLogin":false,"gotoUpload":false,"timeline":[],"minigameTimeline":[],"team":{"teamInfo":{},"members":[],"union":[],"workInfo":{"file":[],"work":{}}},"user":{"MemberId":null,"Mobile":"","Name":"","IdentityType":"0","IdentityNo":"","Detail0":"","Detail1":"","Detail2":"","Detail3":"","whiteuin":0},"userRealMobile":"","teamConfig":[{},{"info":[{"name":""},{"name":""},{"name":""}],"max_member":4}],"schoolConfig":[]},"route":{"name":"MixFlowBlogList","path":"\u002Fcommunity\u002Fdevelop\u002Fmixflow","hash":"","query":{},"params":{},"fullPath":"\u002Fcommunity\u002Fdevelop\u002Fmixflow","meta":{"scrollTo":0},"from":{"name":null,"path":"\u002F","hash":"","query":{},"params":{},"fullPath":"\u002F","meta":{}}}};(function(){var s;(s=document.currentScript||document.scripts[document.scripts.length-1]).parentNode.removeChild(s);}());</script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/manifest.2e614345f6dc48ee1b59.js" defer></script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.ced71dd18bff17043692.js" defer></script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendor.23ee57865aaaa34cc4c6.js" defer></script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.81ba301c274a09b116f9.js" defer></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10