<el-dropdown-item
:title="!bugCopyable(tableBatchSelectedRows[0]) ? $t('You are NOT authorized to copy bugs.') : ''"
@click.native="openBatchCopy(tableBatchSelectedRows)"
:disabled="!bugCopyable(tableBatchSelectedRows[0])"
>
{{ $t('Batch Copy') }}
</el-dropdown-item>
@selectRowsObject="onSelectRowsObject"
:field-ype="fieldType"
//传递props
// 或者用eventBus传递
this.$EventBus.$emit('tableEditable', selectedRows[0]);
this.$EventBus.$on('tableEditable', selectedRows[0]);