表单组件change事件函数里,怎样读取其他表单组件value?
<form>
<radio-group name="cata" bindchange="changecata">
<radio wx:for="{{cata}}" wx:key="" value="{{item.id}}" checked="{{item.id==selcata}}">{{item.title}}</radio>
</radio-group>
<checkbox-group name="padn" bindchange="changepadn">
<checkbox wx:for="{{padn}}" wx:key="" value="{{item.id}}">{{item.title}}</checkbox>
</checkbox-group>
<input name="patit" bindchange="changepatit" value="{{patit}}" type="text"/>
</form>
changecata: function (e) {
console.log(e);
这里只有cata的value,怎样直接访问padn和patit的value?
},