el-table單擊行row-click與個別列的按鈕操作衝突

row-click和cell-click都一樣。
如果是原生標籤,就直接給click事件加.stop 
如果是el標籤,需要加.native.stop 
下面是我的demo,可以參考下↓
        <el-table
          title="雙擊查看詳情"
          @sort-change="handleSortChange"
          ref="singleTable"
          :data="tableData"
          style="cursor: pointer;font-size: 12px;"
          @row-click="handleRowChange"
          :row-class-name="tableRowClassName">
          <el-table-column
            align="center"
            show-overflow-tooltip>
            <!-- eslint-disable-next-line -->
            <template slot="header" slot-scope="scope">
              <el-select v-model="targets" placeholder="請選擇" size="mini">
                <el-option
                  v-for="item in targetArr"
                  :key="item.id"
                  :label="item.name"
                  :value="item.id">
                </el-option>
              </el-select>
            </template>
            <!-- eslint-disable-next-line -->
            <template slot-scope="scope">
              <img
                  @click.stop="mark(scope.row)"
                  v-if="scope.row.is_mark == '0'"
                  width="16"
                  alt=""
                  src="../../assets/image/machineAnalysis/unmark.png"
                  style="cursor: pointer;"/>
              <img
                  @click.stop="mark(scope.row)"
                  v-if="scope.row.is_mark == '1'"
                  width="16"
                  alt=""
                  src="../../assets/image/machineAnalysis/marked.png"
                  style="cursor: pointer;"/>
            </template>
          </el-table-column>
          <el-table-column
            label="操作"
            :show-overflow-tooltip="true"
            align="center"
            width="210"
            >
            <!-- eslint-disable-next-line -->
            <template slot-scope="scope">
              <el-button
                size="mini"
                @click.native.stop="handleEdit(scope.row.task_id)">編輯數據</el-button>
            </template>
          </el-table-column>
        </el-table>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章