登录添加手机号

This commit is contained in:
kron
2025-12-03 15:19:17 +08:00
parent f9548f1373
commit d9ac803902
8 changed files with 101 additions and 54 deletions

View File

@@ -7,7 +7,7 @@ const props = defineProps({
},
height: {
type: String,
default: "260px",
default: "630rpx",
},
onClose: {
type: Function,
@@ -56,12 +56,9 @@ watch(
>
<image
v-if="!noBg"
src="https://static.shelingxingqiu.com/attachment/2025-08-05/dbuaf19pf7qd8ps0uh.png"
src="https://static.shelingxingqiu.com/attachment/2025-12-03/deocxa1dgzebjc0hvo.png"
mode="widthFix"
/>
<view class="close-btn" @click="onClose" v-if="!noBg">
<image src="../static/close-yellow.png" mode="widthFix" />
</view>
<slot></slot>
</view>
</view>
@@ -94,14 +91,4 @@ watch(
position: absolute;
z-index: -1;
}
.close-btn {
display: flex;
justify-content: flex-end;
position: absolute;
right: 0;
}
.close-btn > image {
width: 40px;
height: 40px;
}
</style>