feat(fittingRoom): 添加 Clothespic 组件并集成到试衣间页面
- 创建 Clothespic.vue 组件,包含试穿按钮和样式 - 在 fittingRoom/index.vue 中引入并使用 Clothespic 组件- 调整组件导入顺序以优化代码结构- 添加 uv-button 和 uv-loading-icon 组件模块及相关配置 - 更新组件 changelog、package.json、props.js 和 readme.md 文件 - 实现按钮和加载图标的基础样式与功能配置
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
</template>
|
||||
</hbxw-stack-carousel>
|
||||
<s-select-mote />
|
||||
<Clothespic />
|
||||
</view>
|
||||
<uv-sticky :customNavHeight="0" :offset-top="0">
|
||||
<s-tabs />
|
||||
@@ -30,13 +31,13 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { computed, reactive, onMounted } from 'vue';
|
||||
import { computed, onMounted, reactive } from 'vue';
|
||||
import { onLoad, onPageScroll, onPullDownRefresh } from '@dcloudio/uni-app';
|
||||
import sheep from '@/sheep';
|
||||
import SSelectMote from './components/s-select-mote.vue';
|
||||
import STabs from './components/STabs.vue';
|
||||
import SGridClothes from './components/s-grid-clothes.vue';
|
||||
import FittingRoomApi from '../../sheep/api/fittingRoom'; // 隐藏原生tabBar
|
||||
import Clothespic from './components/Clothespic.vue'; // 隐藏原生tabBar
|
||||
|
||||
const fittingRoomStore = sheep.$store('fittingRoom');
|
||||
uni.setStorageSync('token', '42be01f1a6c54ea591c991b5da0977c0');
|
||||
|
||||
Reference in New Issue
Block a user