NEZ-2435 fix: 禁止表格双击事件的传播

This commit is contained in:
zhangyu
2022-11-29 18:17:13 +08:00
parent 2c692d580b
commit 5db34c3dac

View File

@@ -66,12 +66,12 @@
</el-tooltip>
</template>
<template v-else-if="item.prop === 'cmdNum'">
<div style="cursor: pointer" @click="showBottomBox('cmdTab', scope.row)">
<div style="cursor: pointer" @click.stop="showBottomBox('cmdTab', scope.row)" @dblclick.stop="">
{{scope.row[item.prop] ? scope.row[item.prop] : '-'}}
</div>
</template>
<template v-else-if="item.prop === 'sftpNum'">
<div style="cursor: pointer" @click="showBottomBox('sftpTab', scope.row)">
<div style="cursor: pointer" @click.stop="showBottomBox('sftpTab', scope.row)" @dblclick.stop="">
{{scope.row[item.prop] ? scope.row[item.prop] : '-'}}
</div>
</template>