文件传输助手

This commit is contained in:
2026-09-23 17:54:51 +08:00
parent 08d8231671
commit 201d0086a4
5 changed files with 120 additions and 10 deletions
+50
View File
@@ -0,0 +1,50 @@
<template>
<view class="box">
<view class="sheet">
<view class="fold" />
<view class="line" />
<view class="line short" />
</view>
</view>
</template>
<script>
export default { name: 'FyFileMark' }
</script>
<style scoped>
.box {
width: 100%;
height: 100%;
background: #1677FF;
display: flex;
align-items: center;
justify-content: center;
}
.sheet {
width: 44%;
height: 54%;
background: #fff;
border-radius: 6rpx;
position: relative;
}
.fold {
position: absolute;
right: 0;
top: 0;
width: 32%;
height: 28%;
background: #D6E8FF;
border-bottom-left-radius: 6rpx;
}
.line {
position: absolute;
left: 16%;
right: 16%;
top: 50%;
height: 3rpx;
background: #1677FF;
border-radius: 3rpx;
}
.line.short { top: 66%; right: 38%; }
</style>