Compare commits

..

5 Commits

Author SHA1 Message Date
赵毅
79292aa1f3 修改购物车图标样式 2025-11-18 16:49:03 +08:00
赵毅
29a85527ef 修改购物车图标样式 2025-11-18 15:52:01 +08:00
赵毅
3a19012532 修改入驻提示信息 2025-11-18 14:41:06 +08:00
赵毅
af5dc6d4a8 修改易购立即购买报错 2025-11-18 11:49:21 +08:00
赵毅
2844894d03 修改商家入驻的提示信息 2025-11-18 11:49:04 +08:00
8 changed files with 57 additions and 31 deletions

View File

@ -185,23 +185,30 @@
/* 购物车按钮 */
.shop_car {
width: 140rpx;
height: 140rpx;
position: fixed;
right: 33rpx;
bottom: 80rpx;
width: 80rpx;
height: 80rpx;
position: absolute;
bottom: 150rpx;
right: 30rpx;
z-index: 10;
border-radius: 50%;
background-color: #ffffff;
padding: 10rpx;
display: flex;
align-items: center;
justify-content: center;
}
.shop_car image {
width: 100%;
height: 100%;
width: 60rpx;
height: 60rpx;
}
.u-badge {
position: absolute;
right: 0;
top: -10rpx;
right: 0rpx;
top: -6rpx;
z-index: 11;
}
/* 规格标签样式 */

View File

@ -34,7 +34,7 @@
<!-- 购物车按钮 -->
<view class="shop_car" @click="shopCar">
<u-badge numberType="limit" type="error" max="99" :value="carNum"></u-badge>
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car_num.png"></image>
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1564.png"></image>
</view>
</view>
</template>

View File

@ -811,7 +811,7 @@ export default {
order_cate: 1,
goods_list: [{
supplier_id: this.info.supplier_id,
supplier_name: this.currentGG.supplier_name || '',
supplier_name: this.info.merchant_info.merchant_name || '',
is_same_day: this.currentGG.is_same_day,
receiving_name: this.defAddress.name,
receiving_phone: this.defAddress.phone,

View File

@ -206,23 +206,30 @@
/* 购物车按钮 */
.shop_car {
width: 140rpx;
height: 140rpx;
position: fixed;
right: 33rpx;
bottom: 80rpx;
width: 80rpx;
height: 80rpx;
position: absolute;
bottom: 150rpx;
right: 30rpx;
z-index: 10;
border-radius: 50%;
background-color: #ffffff;
padding: 10rpx;
display: flex;
align-items: center;
justify-content: center;
}
.shop_car image {
width: 100%;
height: 100%;
width: 60rpx;
height: 60rpx;
}
.u-badge {
position: absolute;
right: 0;
top: -10rpx;
right: 0rpx;
top: -6rpx;
z-index: 11;
}
/* 规格标签样式 */

View File

@ -100,7 +100,7 @@
<!-- 购物车按钮 -->
<view class="shop_car" @click="shopCar">
<u-badge numberType="limit" type="error" max="99" :value="carNum"></u-badge>
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car_num.png"></image>
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1564.png"></image>
</view>
</view>
</template>

View File

@ -577,24 +577,29 @@ page {
}
.shop_car {
width: 140rpx;
height: 140rpx;
width: 80rpx;
height: 80rpx;
position: absolute;
bottom: 100rpx;
right: 10rpx;
bottom: 150rpx;
right: 30rpx;
z-index: 10;
border-radius: 50%;
background-color: #ffffff;
padding: 10rpx;
display: flex;
align-items: center;
justify-content: center;
}
.shop_car image {
width: 100%;
height: 100%;
width: 60rpx;
height: 60rpx;
}
.u-badge {
position: absolute;
right: 70rpx;
/* 调整角标位置,使其在隐藏状态下也能看到 */
top: -10rpx;
right: 0rpx;
top: -6rpx;
z-index: 11;
}

View File

@ -210,7 +210,7 @@
<view class="shop_car" @click="shopCar">
<u-badge numberType="limit" type="error" max="99" :value="carNum"></u-badge>
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car_num.png"></image>
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1564.png"></image>
<!-- <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car_empty.png"></image> -->
</view>
</view>

View File

@ -376,6 +376,13 @@ export default {
that.imgList6 = []
that.confirmClassify = ''
NavgateTo("../sucess/index")
}).catch(res => {
if(res.message.includes("agent_nil")) {
uni.showToast({
title: '未找到对应的代理商信息',
icon: 'none',
});
}
})
},