|
@@ -2,10 +2,10 @@
|
|
|
<el-dialog v-model="visibleDialog" class="le-dialog" title="历史版本" width="860" destroy-on-close :close-on-click-modal="false">
|
|
|
<!-- LeTable 组件使用 -->
|
|
|
<LeTable
|
|
|
- class="local_table"
|
|
|
v-model:searchParams="tableOpts.searchParams"
|
|
|
v-bind="tableOpts"
|
|
|
v-model:curRow="tableOpts.curRow"
|
|
|
+ class="local_table"
|
|
|
:columns="activeColumns"
|
|
|
>
|
|
|
<template #processIconSlot="scope">
|
|
@@ -18,9 +18,13 @@
|
|
|
|
|
|
<template #actionSlot="scope">
|
|
|
<el-tooltip content="签出" placement="bottom" effect="light">
|
|
|
- <el-icon class="ibt0" @click="checkoutHistoryEv(scope.row)">
|
|
|
- <Cherry />
|
|
|
- </el-icon>
|
|
|
+ <span>
|
|
|
+ <el-popconfirm title="确定签出 ?" @confirm="checkoutHistoryEv(scope.row)">
|
|
|
+ <template #reference>
|
|
|
+ <el-icon class="ibt0"><Cherry /></el-icon>
|
|
|
+ </template>
|
|
|
+ </el-popconfirm>
|
|
|
+ </span>
|
|
|
</el-tooltip>
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
<el-tooltip content="预览" placement="bottom" effect="light">
|