<wx-open-subscribe @success="success" @error="subError" :template="subTemplateId" id="subscribe-btn">
<script type="text/wxtag-template">
<style>
button{
border:none;
padding:0;
margin:0 auto;
outline:none;
}
button:focus{outline:0;}
.return-bottom1{
width: 100%;
height: 45px;
position: fixed;
bottom: 0;
left: 0;
background: #ff5454;
text-align: center;
line-height: 45px;
color: #fff;
font-size: 16px;
display:block;
}
</style>
<button class="return-bottom1">提交</button>
</script>
</wx-open-subscribe>
p这个提交事件@click加在button 上面没有反应,并想在提交时进行item每一项传参
在<wx-open-subscribe>标签外层加个节点然后将点击事件绑定到该节点上
用户点击取消的这个行为如何监测?
不能加在里面,加在<wx-open-subscribe>上试下 或者<wx-open-subscribe>外层套一个div在上面@click t如果你需要用户操作了后再进行与后端交互 就写在@success @error里面