UI流程完善

This commit is contained in:
kron
2025-05-10 16:57:36 +08:00
parent a8834ad899
commit 0ce3b77f0a
32 changed files with 896 additions and 68 deletions

View File

@@ -1,8 +1,8 @@
<script setup>
defineProps({
title: {
type: String,
default: "",
tall: {
type: Boolean,
default: false,
},
});
</script>
@@ -11,7 +11,12 @@ defineProps({
<view class="container">
<image src="../static/shooter.png" mode="widthFix" />
<view>
<image src="../static/long-bubble.png" mode="widthFix" />
<image
:src="
tall ? '../static/long-bubble-tall.png' : '../static/long-bubble.png'
"
mode="widthFix"
/>
<slot />
</view>
</view>