Commit e945e427 authored by chenqikuai's avatar chenqikuai

fix

parent f565b896
...@@ -52,7 +52,9 @@ ...@@ -52,7 +52,9 @@
}) })
" "
> >
{{ props.name }} <syToolTip :content="props.name">
{{ props.name }}
</syToolTip>
</div> </div>
<div <div
v-if="props.index.$index === expandTheListIndex" v-if="props.index.$index === expandTheListIndex"
...@@ -61,7 +63,9 @@ ...@@ -61,7 +63,9 @@
class="notFirstLineCell cursor-pointer overflow-ellipsis overflow-hidden whitespace-nowrap" class="notFirstLineCell cursor-pointer overflow-ellipsis overflow-hidden whitespace-nowrap"
@click="enterDetails(item2, props, props.index.$index)" @click="enterDetails(item2, props, props.index.$index)"
> >
{{ item2.name }} <syToolTip :content="item2.name">
{{ item2.name }}
</syToolTip>
</div> </div>
</template> </template>
<template #date="props"> <template #date="props">
...@@ -329,6 +333,7 @@ import { ...@@ -329,6 +333,7 @@ import {
openChainBrowser, openChainBrowser,
GO_URLS, GO_URLS,
syCommonDialog, syCommonDialog,
syToolTip,
} from "cqk-sy-ui"; } from "cqk-sy-ui";
import { ElMessage, ElButton } from "element-plus"; import { ElMessage, ElButton } from "element-plus";
import { ref, watch } from "vue"; import { ref, watch } from "vue";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment