feat:完成生成打印纸的步骤

This commit is contained in:
2025-06-02 10:05:59 +08:00
parent 419818eb24
commit 82c55fece3
18 changed files with 726 additions and 46 deletions
@@ -4,7 +4,7 @@
// width: 324rpx;
height: 100rpx;
border-radius: 16rpx;
background-color: #EEFCFC;
background-color: #eefcfc;
align-items: center;
box-shadow: 0 2rpx 2rpx rgba(0, 0, 0, 0.35);
@@ -15,6 +15,21 @@
background-color: #ff0000;
margin-left: 20rpx;
border: 1rpx solid #141414;
position: relative;
&::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 200%;
border-radius: 50%;
border: 1px solid #141414;
transform: scale(0.5);
transform-origin: 0 0;
box-sizing: border-box;
}
}
.word-box {
@@ -31,7 +46,6 @@
font-size: 28rpx;
color: #141414;
text-align: center;
}
}
@@ -40,4 +54,4 @@
margin-right: 8rpx;
color: #141414;
}
}
}