在线等 vue 控制显示隐藏

<div class="section_content_coupon_right_btn" :data-id="row1.id" >

                <span  v-bind:class="{active:arr[index]}" 
                    v-if="!isactive[index]" 
                    @click="getcoupons(index,$event)" 
                    :data-id="row1.id">{{btntext}}</span>
                <span   v-if="isactive[index]">{{btntext1}}</span>
            </div>
            

上面是页面代码
下面是JS 方法

    getcoupons:function(index,event){
        //this.$set(app.isActive[index], index, true);
        console.log(app.isactive)
        console.log(index)
        let e=event;
        console.log(e);
        app.isactive[index]=[];
        app.isactive[index]=true;
        console.log(app.isactive)
        if(app.phone===""||app.email===""){
            app.getzz = true;
            app.getThisPath1 = true;
            let workId = e.currentTarget.dataset.id;
             app.workId=workId;
             return;
        }else if(app.phone!==""&&app.email!==""){
            app.getzz = false;
            app.getThisPath1 = false;
            let workId = e.currentTarget.dataset.id;
             app.workId=workId;
             /*app.isactive[index]=true;*/
             app.query1(e);
             return;
        }
    },

这样写不行啊 有大神帮改改吗

阅读 1.7k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题