fix(fittingRoom): 修复试衣间页面交互与样式问题

- 统一代码风格,修复缺少分号问题-优化试衣结果图片加载逻辑,添加默认loading图
- 修复上传衣物页面容器样式问题
- 调整模特切换逻辑,增加可见性控制- 更新README文档,添加试衣间相关链接
-优化上传衣物选择器样式与交互细节
This commit is contained in:
liguigong
2025-09-28 16:20:51 +08:00
parent 17dc7cf9c8
commit b9d19508ca
7 changed files with 31 additions and 18 deletions
+6 -2
View File
@@ -1,5 +1,5 @@
<template>
<view v-if="template">
<view class="container-box">
<SelectPic v-if="!imageUrl" @onChange="onChange" />
<template v-if="imageUrl">
<view class="clothes-box">
@@ -81,7 +81,7 @@
function deleteClothes() {
FittingRoomApi.deleteCloth({ id: clothesId.value }).then((res) => {
fittingRoomStore.currentClothes = []
fittingRoomStore.currentClothes = [];
sheep.$router.go('/pages/fittingRoom/index');
});
}
@@ -147,11 +147,15 @@
</script>
<style lang="scss" scoped>
.container-box {
padding-bottom: 200rpx;
}
.operating {
display: flex;
justify-content: space-around;
margin-top: 200rpx;
padding: 0 20rpx;
margin-bottom: 200rpx;
}
.delete {
width: 250rpx;