子组件:
{aaa:‘aaa’} 定义一个方法名字:后面是需要传的值 ;
parentComponentFunction 方法名字;
let item = {aaa:'aaa'}//要传给父组件的参数
this.triggerEvent('parentComponentFunction',item) //通过triggerEvent将参数传给父组件
父组件:
AddGoodsList是引用子组件的文件名;
bind:parentComponentFunction=“parentComponentFunction” 子组件调用父组件的方法
AddGoodsList=“{{AddGoodsList}}” 传给子组件的值
wxml:
<AddGoodsList bind:parentComponentFunction="parentComponentFunction" AddGoodsList="{{AddGoodsList}}"></AddGoodsList>
js:
parentComponentFunction父组件的方法名
e.detail里面存放的是子组件传过来的值
parentComponentFunction(e){
this.data.subpageItem = e.detail
this.data.type = e.detail.type
this.data.sort = e.detail.sort
},