feat: 门票组件封装

This commit is contained in:
duanshuwen
2025-07-15 16:48:32 +08:00
parent b31b04f2e2
commit 591287e757
40 changed files with 420 additions and 50 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -2,14 +2,14 @@
<view class="stepper-wrapper">
<image
class="stepper-btn stepper-btn-minus"
src="./images/icon_minus.webp"
src="./images/icon_minus.png"
mode="aspectFill"
@click="decrease"
></image>
<text class="stepper-text">{{ value }}</text>
<image
class="stepper-btn stepper-btn-plus"
src="./images/icon_plus.webp"
src="./images/icon_plus.png"
mode="aspectFill"
@click="increase"
></image>

View File

@@ -6,6 +6,7 @@
.stepper-btn {
width: 24px;
height: 24px;
border-radius: 50px;
cursor: pointer;
}