element-ui 列表 type="selection"设置默认选中

进入模块后的效果图

 element-ui 列表 type=

列表html代码

这里需要注意的是el-table一定要有ref属性,比如ref="table"

  

methods中的代码

请求完列表后进行回调操作,this.$refs.table.toggleRowSelection(this.lists[i],true) 是官网中给出的方法,第一个参数是需要被勾选的行组成的列表,第二个参数为true,必须要传。

getList(){
            let data={
                pageModel:{
                    pageNo:this.pageNo,
                    pageSize:this.limit
                },
                shop:{
                    style:this.radio
                }
            }
            listShop(data).then(res =>{
                this.total = res.data.data.total
                this.lists = res.data.data.rows.filter(res=>{
                    return res.isdelete == '0'
                })
            })
            //请求完列表后,回调,过滤需要被勾选的
            .then(()=>{
                for(let i=0;i

 

你可能感兴趣的:(vue)