当前位置:   article > 正文

[vue]v-for循环出的列表如何实现每一项单独展开收起_vue循环展开

vue循环展开

展开收起最后一项的内容,展开收起的图标和信息改变
在这里插入图片描述

每次只能展开一个,点击第二个先收起第一个再展开第二个(类似手风琴)

HTML代码

<div class="content" v-for="(t,index) in List" :key="t.id">
        <div class="desc">
          <span 
            class="btn" 
            :style="{'color': (thisIndex===index? '#0195ff':'#999999')}" 
            @click="show(index)"
          >{{thisIndex===index ? '收起' : '展开'}}</span>
          <i 
            :class="thisIndex===index?'el-icon-d-arrow-left':'el-icon-d-arrow-right'" 
            :style="{'color': (thisIndex===index? '#0195ff':'#999999')}"
          ></i>
          <div class="content" v-show="thisIndex===index">{{t.content}}</div>
        </div>
      </div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

javasript
data中声明要循环的数据、当前的下标(string类型)

data() {
    return{
      thisIndex: nullList:[]
    }  
  },
  methods: {
    open(index) {
      if(this.thisIndex==null){
        this.thisIndex=index  
      }else{
        this.thisIndex=null
      }
    }
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

可以同时展开多个各个互不影响

在这里插入图片描述

data中声明要循环的数据、当前的下标数组类型(array)
思路:判断当年下标是否在数组下标中来控制展开收起,不存在就将该下标加入数组,再点击一次这个下标则删去,数组中无该下标就显示收起。
HTML

<div class="content" v-for="(t,index) in List" :key="t.id">
        <div class="desc">
          <span 
            class="btn" 
            :style="{'color': (thisIndex.indexOf (index)!=-1? '#0195ff':'#999999')}" 
            @click="show(index)"
          >{{thisIndex.indexOf (index)!=-1 ? '收起' : '展开'}}</span>
          <i 
            :class="thisIndex.indexOf (index)!=-1?'el-icon-d-arrow-left':'el-icon-d-arrow-right'" 
            :style="{'color': (thisIndex.indexOf (index)!=-1? '#0195ff':'#999999')}"
          ></i>
          <div class="content" v-show="thisIndex.indexOf (index)!=-1">{{t.content}}</div>
        </div>
      </div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

js

data() {
    return{
     List:[],
      thisIndex: []
    }  
  },
  methods: {
    show(index) {
      if(this.thisIndex.indexOf(index) == -1){
        this.thisIndex.push(index)
      }else{
        this.thisIndex = this.thisIndex.filter(item => item != index)
      }
    }
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/77089
推荐阅读
相关标签
  

闽ICP备14008679号