政府单位可在微信的H5门户中通过微信的开放标签配置「居民上报」小程序跳转入口,居民点击后进入「居民上报」小程序反馈问题。点击查看开放标签跳转小程序的使用方法,再按以下说明往开放标签传入对应的参数,即可完成跳转。
请求参数
参数 | 必须 | 说明 |
---|---|---|
username | 是 | 固定填企业微信居民上报小程序username: gh_57702a7fcb71 |
path | 是 | 跳转到小程序的路径,路径格式固定为:pages/feedback/feedback?strcorpid=${strcorpid}&userid=${userid} |
strcorpid | 是 | 企业corpid |
userid | 是 | 企业成员的userid |
调用示例
<wx-open-launch-weapp
id="launch-btn"
username="gh_57702a7fcb71"
path="pages/feedback/feedback?strcorpid=${strcorpid}&userid=${userid}">
<template>
<style>.btn { padding: 12px }</style>
<button class="btn">进入直播间</button>
</template>
</wx-open-launch-weapp>
<script>
var btn = document.getElementById('launch-btn');
btn.addEventListener('launch', function (e) {
console.log('success');
});
btn.addEventListener('error', function (e) {
console.log('fail', e.detail);
});
</script>