|
@@ -40,15 +40,14 @@
|
|
|
<dg-table-column label="操作" align="center" v-if="tableOptList.length" :width="optColumnWidth">
|
|
|
<template slot-scope="{ row }">
|
|
|
<div class="u-table__operation">
|
|
|
- <el-tooltip
|
|
|
+ <span
|
|
|
v-for="(item, index) in tableOptList"
|
|
|
:key="index"
|
|
|
- :content="item"
|
|
|
- effect="dark"
|
|
|
- placement="top-end"
|
|
|
+ style="margin-right: 5px;font-size: 14px;"
|
|
|
+ @click="handleEvent(item, row)"
|
|
|
>
|
|
|
- <i :class="item | optIcon" @click="handleEvent(item, row)"></i>
|
|
|
- </el-tooltip>
|
|
|
+ {{ item }}
|
|
|
+ </span>
|
|
|
</div>
|
|
|
</template>
|
|
|
</dg-table-column>
|