feat: 调试上传问题

This commit is contained in:
kenny
2025-10-16 19:52:51 +08:00
parent 728dc5e559
commit d2ce2bd4ea
+48
View File
@@ -51,6 +51,12 @@
<view class="btn-bottom">
<button class="next-btn" @tap="nextStep">下一步</button>
</view>
<div class="dialog" v-if="false">
<div class="dialog-main">
<input class="next-input" type="file" />
</div>
</div>
</view>
</template>
@@ -597,5 +603,47 @@
font-size: 32rpx;
}
}
.dialog {
position: fixed;
inset: 0;
z-index: 100;
background-color: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
.dialog-main {
height: 80rpx;
border-radius: 16rpx;
background-color: #0d232c;
color: white;
font-size: 32rpx;
.next-input {
height: 80rpx;
border-radius: 16rpx;
background-color: #0d232c;
color: white;
font-size: 32rpx;
position: relative;
// &:after {
// content: '点击上传头像';
// position: absolute;
// left: 50%;
// top: 50%;
// color: white;
// font-size: 28rpx;
// transform: translate(-50%, -50%);
// font-weight: bolder;
// }
}
}
}
}
</style>