项目里使用了wx-open-launch-weapp 第一次进入对应的页面点击可以唤起进入小程序的弹窗, 取消后返回上一页再次进入页面后出现了点击按钮没反应。请问有没有大佬遇到过同样的问题
以下是我页面的使用的wx-open-launch-weapp
<View className={cx(styles['btn'], styles['btn1'])}>
<wx-open-launch-weapp
id="launch-btn"
username="gh_xxxxxxxxxx"
path={`pages/payResult/index.html?query=${newOrderMessage}&storeId=${storeId}&bizUserId=${bizUserId}&shopId=${shopId}×tamp=${new Date().getTime()}`}
env-version='develop'
style={{ width: '100%', height: '100%', display: 'block' }}
>
<script type="text/wxtag-template">
<Text className={styles['btnText']} style={{ fontSize: '14PX', color: '#FFFFFF', textAlign: 'center', lineHeight: '31.8PX', width: '100%', display: 'block' }}>{i18n.t('pay:pay.goPay', '前往付款')}</Text>
</script>
</wx-open-launch-weapp>
</View>