@@ -56,6 +56,8 @@
</view>
+ <!-- 店员代开单不走客户限购价,避免误以为已按特价计 -->
+ <view v-if="Number(item.limitBuy) > 0" class="limit-buy-staff-tip">帮客户开单,客户不享受限购价,客户自己下单才有</view>
</template>
@@ -1452,6 +1454,7 @@ export default {
padding: 20upx;
.commodity-item {
display: flex;
+ flex-wrap: wrap;
margin-bottom: 20upx;
.item-icon {
flex-shrink: 0;
@@ -1522,6 +1525,13 @@ export default {
}
+ .limit-buy-staff-tip {
+ width: 100%;
+ margin-top: 8upx;
+ font-size: 26upx;
+ color: #e67e22;
+ line-height: 1.4;
+ }
.summary-bar {