3 changed files with 24 additions and 3 deletions
@ -0,0 +1,17 @@ |
|||
<template> |
|||
<div style="position: absolute; bottom: 50px;right:0;display: flex; flex-direction: column;align-items: flex-end;"> |
|||
<div style="position: relative;" v-show="showCode"> |
|||
<Icon icon="ep:close" style="position: absolute;right: 5px;top: 5px" @click="handleClose"/> |
|||
<img alt="" style="margin-bottom: 10px;" width="120" height="120"/> |
|||
</div> |
|||
<el-button type="primary" link @click="handleClose">PDA按照程序下载链接</el-button> |
|||
</div> |
|||
</template> |
|||
<script setup lang="ts"> |
|||
|
|||
const showCode = ref(false) |
|||
const handleClose = ()=>{ |
|||
showCode.value = !showCode.value |
|||
} |
|||
</script> |
|||
<style lang="scss" scoped></style> |
Loading…
Reference in new issue