|
@@ -98,8 +98,9 @@
|
|
|
cursor: pointer;
|
|
|
"
|
|
|
color="#cacaca"
|
|
|
- ><DArrowLeft
|
|
|
- /></el-icon>
|
|
|
+ >
|
|
|
+ <DArrowLeft />
|
|
|
+ </el-icon>
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
<div class="btn_div">
|
|
@@ -111,9 +112,11 @@
|
|
|
transform: translate(-50%, -50%);
|
|
|
cursor: pointer;
|
|
|
"
|
|
|
+ @click="() => copyurl(item.text)"
|
|
|
color="#cacaca"
|
|
|
- ><CopyDocument
|
|
|
- /></el-icon>
|
|
|
+ >
|
|
|
+ <CopyDocument />
|
|
|
+ </el-icon>
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -123,6 +126,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
+import { copyurl } from '@/utils/tool.js';
|
|
|
import { image_base64 } from './data.js';
|
|
|
import { CircleClose, CirclePlus } from '@element-plus/icons-vue';
|
|
|
import { ref, defineEmits } from 'vue';
|
|
@@ -247,6 +251,7 @@ const get = p => {
|
|
|
.btn_group {
|
|
|
padding-right: 1em;
|
|
|
}
|
|
|
+
|
|
|
.bottom-content-safe-tip {
|
|
|
display: -webkit-box;
|
|
|
display: -ms-flexbox;
|
|
@@ -258,16 +263,19 @@ const get = p => {
|
|
|
width: 100%;
|
|
|
zoom: 0.83;
|
|
|
}
|
|
|
+
|
|
|
.bottom-content-safe-tip .content-safe-tip-icon {
|
|
|
width: 15px;
|
|
|
height: 15px;
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
+
|
|
|
.bottom-content-safe-tip .content-safe-tip-text {
|
|
|
font-size: 12px;
|
|
|
line-height: 15px;
|
|
|
color: #cacaca;
|
|
|
}
|
|
|
+
|
|
|
.item {
|
|
|
width: 100%;
|
|
|
min-height: 45px;
|