feat(fittingRoom): 实现试穿结果展示与衣服上传编辑功能
- 新增试穿结果获取与展示逻辑,支持模特切换 - 实现衣服上传和编辑功能,包括分类和长度选择 - 优化上传页面UI布局,增加确认和删除操作按钮- 调整轮播组件数据源,使用试穿结果列表 - 修复上传接口调用逻辑,支持文件上传与数据提交 - 更新请求超时时间,提升接口稳定性 - 优化分类标签显示逻辑,修复索引映射问题 - 支持从衣橱进入编辑模式,传递文件URL和ID参数 - 移除旧版图片选择器,统一使用新上传逻辑 - 修复组件间数据传递与事件绑定问题
This commit is contained in:
@@ -3,10 +3,10 @@
|
||||
<view class="uni-margin-wrap">
|
||||
<!-- https://ext.dcloud.net.cn/plugin?id=22930-->
|
||||
<hbxw-stack-carousel
|
||||
:key="state.info"
|
||||
:key="fittingRoomStore.testResults"
|
||||
:height="680"
|
||||
:interval="15000"
|
||||
:list="state.info"
|
||||
:list="fittingRoomStore.testResults"
|
||||
:width="430"
|
||||
indicatorStyle="line"
|
||||
loop
|
||||
@@ -15,7 +15,7 @@
|
||||
>
|
||||
<template #default="{ item, index }">
|
||||
<view class="custom-item">
|
||||
<image :src="item.image" class="swiper-image" mode="aspectFill" />
|
||||
<image :src="item.tryOnResultUrl" class="swiper-image" mode="aspectFill" />
|
||||
</view>
|
||||
</template>
|
||||
</hbxw-stack-carousel>
|
||||
|
||||
Reference in New Issue
Block a user