diff --git a/src/components/BubbleTip.vue b/src/components/BubbleTip.vue index e357bd4..4fdfdb6 100644 --- a/src/components/BubbleTip.vue +++ b/src/components/BubbleTip.vue @@ -30,10 +30,10 @@ const props = defineProps({ } .normal { background-image: url("../static/bubble-tip.png"); - width: 190rpx; + width: 157rpx; height: 105rpx; - padding-top: 5px; - padding-left: 49rpx; + padding-top: 10px; + padding-left: 30rpx; } .normal2 { background-image: url("../static/bubble-tip4.png"); diff --git a/src/components/Container.vue b/src/components/Container.vue index fe4f3c2..f34e862 100644 --- a/src/components/Container.vue +++ b/src/components/Container.vue @@ -41,6 +41,10 @@ const props = defineProps({ type: Boolean, default: true, }, + showBottom: { + type: Boolean, + default: true, + }, }); const isIOS = uni.getDeviceInfo().osName === "ios"; const showHint = ref(false); @@ -158,7 +162,7 @@ const goCalibration = async () => { :show-scrollbar="false" :style="{ height: `calc(100vh - ${capsuleHeight + (isHome ? 0 : 50)}px - ${ - $slots.bottom ? (isIOS ? '85px' : '65px') : '0px' + $slots.bottom && showBottom ? (isIOS ? '85px' : '65px') : '0px' })`, }" > @@ -166,7 +170,7 @@ const goCalibration = async () => { diff --git a/src/pages/first-try.vue b/src/pages/first-try.vue index 315e2de..9bad64a 100644 --- a/src/pages/first-try.vue +++ b/src/pages/first-try.vue @@ -153,7 +153,7 @@ const onClose = () => {