ant-design-vue 中table行 绑定点击事件

目前在学习使用antd中,需求双击表格行显示pdf,在table中给customRow设置行属性
ant-design-vue 中table行 绑定点击事件_第1张图片

    
      
        {{ sex == 1 ? "男" : sex == 0 ? "女" : "/" }}
      
      
        {{ status == 1 ? "已打印" : "未打印" }}
      
    

methods中

    Rowclick(record, index) {
      return {
        on: {
          click: () => {},
          dblclick: () => {
            console.log(record, index, 2222);
            this.showPdf = true;
            let url = "demo.pdf";
            this.pSrc = "/static/pdf/web/viewer.html?file=" + url;
            // window.open("/static/pdf/web/viewer.html?file=" + url);
          }
        }
      };
    },

你可能感兴趣的:(个人笔记,vue)