vue表格中的多选框数据收集

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_33896101/article/details/81907915
<v-table
   :url="url"
   :searchParams="searchParams"
   :checkbox="checkbox"
   :operationsShow="operationsShow"
   :fields="fields"
   ref="table"
   @handleSelection="handleSelectionChange"
>
</v-table>



handleSelectionChange(val) {

    this.multipleSelection = [];
    val.forEach( (item, index) => {
    this.multipleSelection.push(item.member_id);
  });
},

猜你喜欢

转载自blog.csdn.net/qq_33896101/article/details/81907915