vue + element table表格@row-click事件与el-switch冲突 怎么单独触发el-switch

发布于 2022-09-12 04:07:51 字数 2854 浏览 8 评论 0

H(EJU{0codeH0Y1XTU/codeUM`6EW4.png

<el-table
      v-loading="listLoading"
      :data="list1"
      element-loading-text="Loading"
      fit
      highlight-current-row
      @row-click="redirectClick"
    >
      <el-table-column label="广告主编号" show-overflow-tooltip>
        <template slot-scope="scope">
          <span class="managcus_table_color">{{ scope.row.customerNo }}</span>
        </template>
      </el-table-column>
      <el-table-column label="广告主名称" show-overflow-tooltip>
        <template slot-scope="scope">
          <span class="managcus_table_color">{{ scope.row.customerNo }}</span>
        </template>
      </el-table-column>
      <el-table-column label="公司主体名称" show-overflow-tooltip>
        <template slot-scope="scope">
          <span>{{ scope.row.customerNo }}</span>
        </template>
      </el-table-column>
      <el-table-column label="启用状态" show-overflow-tooltip>
        <template slot-scope="scope">
          <el-switch
            v-model="scope.row.customer55"
            active-color="#409EFF"
            inactive-color="#DCDFE6"
          >
          </el-switch>
        </template>
      </el-table-column>
      <el-table-column label="平台授权情况">
        <template slot-scope="scope">
          <span class="managcus_table_color">{{ scope.row.customerNo }}</span>
        </template>
      </el-table-column>
      <el-table-column label="联系人">
        <template slot-scope="scope">
          <span>{{ scope.row.customerNo }}</span>
        </template>
      </el-table-column>
      <el-table-column label="登录邮箱">
        <template slot-scope="scope">
          <span>{{ scope.row.customerNo }}</span>
        </template>
      </el-table-column>
      <el-table-column label="最后一次登录时间">
        <template slot-scope="scope">
          <span>{{ scope.row.customerNo }}</span>
        </template>
      </el-table-column>
      <el-table-column label="操作">
        <template slot-scope="scope">
          <el-link
            type="primary"
            :underline="false"
            @click.stop="rowClick(scope.row)"
          >
            管理
          </el-link>
          <el-link
            type="primary"
            :underline="false"
            style="margin-left: 5px"
            @click.stop="deleteCu(scope.$index, scope.row)"
          >
            重置密码
          </el-link>
        </template>
      </el-table-column>
    </el-table>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

分分钟 2022-09-19 04:07:51

在你的switch change事件中,加上停止事件的传播

<el-switch
    @change="switchChange"
    v-model="scope.row.customer55"
    active-color="#409EFF"
    inactive-color="#DCDFE6"
>
</el-switch>


switchChange() {
    event.stopPropagation()
}
我的奇迹 2022-09-19 04:07:51

典型的事件冒泡的问题。
el-switch包个父元素写@click.stop

何以心动 2022-09-19 04:07:51

可以给switch加个原生的阻止冒泡的点击事件

<el-switch
    v-model="scope.row.customer55"
    active-color="#409EFF"
    inactive-color="#DCDFE6"
    @click.native.stop
>
我一向站在原地 2022-09-19 04:07:51

阻止事件冒泡
image.png

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文