|
|
@ -129,7 +129,7 @@ |
|
|
|
<!-- <text class="panel-item-name">{{ item.name }}</text> --> |
|
|
|
<!-- <text class="panel-item-desc" v-if="item.brandName && item.styleName">品牌:{{ item.brandName }} | 款式:{{ item.styleName }}</text> --> |
|
|
|
<text class="panel-item-name">{{ item.brandName || item.name }}</text> |
|
|
|
<text class="panel-item-desc" v-if="item.styleName">{{ item.styleName }}</text> |
|
|
|
<text class="panel-item-desc" v-if="item.styleName">{{ item.name }} | {{ item.styleName }}</text> |
|
|
|
<text class="panel-item-desc" v-else>{{ item.service }}</text> |
|
|
|
<text class="panel-item-price" v-if="!item.maxPrice || item.maxPrice == item.price">¥{{ item.price }}/{{ |
|
|
|
item.unit || '件' }}</text> |
|
|
@ -163,7 +163,7 @@ |
|
|
|
|
|
|
|
<!-- 添加衣物浮窗按钮 --> |
|
|
|
<view class="floating-add-btn" @click="addMoreItems"> |
|
|
|
<text class="floating-btn-text">添加衣物</text> |
|
|
|
<text class="floating-btn-text">继续添加衣物</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -2033,7 +2033,7 @@ export default { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: flex-start; |
|
|
|
padding: 24rpx 0; |
|
|
|
padding: 32rpx 0; |
|
|
|
border-bottom: 1px solid #f0f0f0; |
|
|
|
cursor: pointer; |
|
|
|
|
|
|
@ -2044,9 +2044,9 @@ export default { |
|
|
|
|
|
|
|
.panel-img-container { |
|
|
|
position: relative; |
|
|
|
width: 100rpx; |
|
|
|
height: 100rpx; |
|
|
|
margin-right: 20rpx; |
|
|
|
width: 120rpx; |
|
|
|
height: 120rpx; |
|
|
|
margin-right: 24rpx; |
|
|
|
flex-shrink: 0; |
|
|
|
} |
|
|
|
|
|
|
@ -2221,8 +2221,8 @@ export default { |
|
|
|
position: absolute; |
|
|
|
left: 50%; |
|
|
|
transform: translateX(-50%); |
|
|
|
bottom: 210rpx; |
|
|
|
width: 160rpx; |
|
|
|
bottom: calc(120rpx + env(safe-area-inset-bottom)); |
|
|
|
width: 220rpx; |
|
|
|
height: 80rpx; |
|
|
|
background: linear-gradient(to right, #ffd01e, #ff8917); |
|
|
|
border-radius: 40rpx; |
|
|
|