feat(fittingRoom): 优化上传功能并调整 UI

- 在 fittingRoom.js 中添加 disableTabs 数组,用于控制不允许上传的分类- 修改 canUpload getter,使用 disableTabs 判断是否允许上传
- 更新 s-grid-clothes.vue 和 s-select-mote.vue 组件,增加上传功能
- 调整上传按钮样式和布局
This commit is contained in:
guigongli
2025-09-19 22:43:03 +08:00
parent 4ea873c1bd
commit 657631f5bf
3 changed files with 49 additions and 7 deletions
@@ -1,8 +1,8 @@
<!--
* @Author: liguigong liguigong@shopline.com
* @Date: 2025-09-19 16:26:36
* @LastEditors: liguigong liguigong@shopline.com
* @LastEditTime: 2025-09-19 19:17:22
* @LastEditors:
* @LastEditTime: 2025-09-19 22:34:40
* @FilePath: pages/fittingRoom/components/s-grid-clothes.vue
* @Description: 这是默认设置,可以在设置工具File Description中进行配置
-->
@@ -32,9 +32,9 @@
limit="1"
mode="grid"
@select="selectPic"
>选择</uni-file-picker
></template
>
>选择
</uni-file-picker>
</template>
<image v-else class="clothes" mode="aspectFill" src="/static/yifu1.png"></image>
</view>
</uni-grid-item>
@@ -43,6 +43,7 @@
</template>
<script setup>
import sheep from '@/sheep';
const fittingRoom = sheep.$store('fittingRoom');
function selectPic(...data) {
@@ -73,10 +74,12 @@
overflow: hidden;
position: relative;
}
.clothes {
width: 100%;
height: 100%;
}
.upload {
top: 0;
left: 0;
@@ -85,6 +88,7 @@
position: absolute;
opacity: 0;
}
.inUse {
position: absolute;
top: 0;
@@ -93,6 +97,7 @@
bottom: 0;
background: rgba(0, 0, 0, 0.1);
z-index: 3;
.edit {
color: #000;
right: 14rpx;
+36 -1
View File
@@ -7,8 +7,20 @@
</view>
<view class="item">
<image class="shangchuan" mode="heightFix" src="/static/shangchuan.png"></image>
<uni-file-picker
:auto-upload="false"
:del-icon="false"
:disable-preview="true"
:image-styles="imageStyle"
:sizeType="sizeType"
class="upload"
limit="1"
mode="grid"
@select="selectPic"
>选择
</uni-file-picker>
</view>
<view class="item">
<view class="item" @click="switchModels">
<view class="item-text"></view>
<image class="item-image" mode="widthFix" src="/static/mote.png"></image>
</view>
@@ -16,9 +28,24 @@
</template>
<script setup>
import sheep from '../../../sheep';
const sizeType = ['original'];
const imageStyle = {
width: 200,
height: 200,
};
const fittingRoom = sheep.$store('fittingRoom');
function selectPic(...data) {
console.log(fittingRoom.tab);
console.log('🚀 ~ selectPic 🐶47 ~ data: ', data);
}
function switchModels() {
console.log("🚀 ~ ~ fittingRoom: ", 12);
}
console.log('🚀 ~ 🐶9 ~ fittingRoom: ', fittingRoom);
function expansion(e) {
@@ -72,6 +99,14 @@
height: 76rpx;
}
.upload {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.item-image {
width: 100%;
height: 100%;
+3 -1
View File
@@ -8,13 +8,15 @@ const fittingRoom = defineStore({
type: true, // true: 我的衣橱, false: 衣服库
tab: 0, // 对应下面tabs的序号
tabs: ['全部', '上衣', '下装', '连衣裙', '外套', '发型'],
disableTabs: [5], // 不允许上传图的tab索引
currentClothes: [], // 当前选的衣服
}),
getters: {
// 能上传图片的场景
canUpload(state) {
console.log(this.type, this.tab, state.type, '123');
return this.type && this.tab > 0;
// 除了发型其他都能上传
return this.type && !this.disableTabs.includes(this.tab);
},
},
actions: {