diff --git a/src/views/Jyh/Version/Detail/VersionInfo.vue b/src/views/Jyh/Version/Detail/VersionInfo.vue index f88560b..8647e44 100644 --- a/src/views/Jyh/Version/Detail/VersionInfo.vue +++ b/src/views/Jyh/Version/Detail/VersionInfo.vue @@ -209,7 +209,7 @@ :style="{ width: '800px', height: '400px' }" @close="handleClose" > - + 社区哈希类型 @@ -219,13 +219,16 @@ 社区哈希值 - 23u4guj2i3hni32h2o34io234 + sha5123b831bee9d575a2729065f830a65f830a65f83a65f852... + + + 社区签名校验结果 - 通过 + 通过 @@ -253,6 +256,12 @@ + @@ -263,6 +272,8 @@ import { ref,defineEmits } from 'vue'; import { useRouter } from 'vue-router'; import { discussDetailType, userInfoType } from '@/api/discussion/types'; +import { Message } from 'vue-devui/message'; +import { useClipboard } from '@vueuse/core/index'; const emits = defineEmits(['changeTabs']); @@ -287,10 +298,59 @@ const gotoDetail = (row) => { }); }; +// 跳转 +const handleClose = (row) => { + visible.value = false +}; + +const { copy } = useClipboard(); +const handleCopy = event => { + event.stopPropagation(); + + copy(''); + Message.success('复制成功'); +}; +