From a4b3ee325c7354579d495bc74a777e494e5ec38c Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Fri, 06 Feb 2026 18:18:44 +0800
Subject: [PATCH] 商品可以价格面议 选择走访时显示输入走访企业名 分会添加活动时要总会审核 分类添加人数限制,添加活动选择了填写人数限制的分类时活动名额下显示该分类人数限制为15 同一个企业30天内只能走访一次,在30天内走访同一个企业时提示该企业已被走访xx天后才可以从新走访

---
 mobile/pages/plus/business/list.vue |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/mobile/pages/plus/business/list.vue b/mobile/pages/plus/business/list.vue
index bae3dd5..969bae9 100644
--- a/mobile/pages/plus/business/list.vue
+++ b/mobile/pages/plus/business/list.vue
@@ -534,7 +534,7 @@
 					if (res.code === 1) {
 						// 跳转到收银台支付
 						uni.redirectTo({
-							url: '/pages/order/cashier?order_id=' + res.data.order_id + '&order_type=100'
+							url: '/pages/plus/business/cashier?order_id=' + res.data.order_id + '&order_type=100'
 						});
 					} else {
 						this.showError(res.msg || '支付失败');
@@ -739,6 +739,7 @@
 
 		.card-list {
 			width: calc(100% - 40rpx);
+			height: calc(100vh - 94rpx - 80rpx);
 			padding: 0 20rpx 20rpx;
 
 			.card-item {
@@ -748,10 +749,12 @@
 				overflow: hidden;
 
 				.card-main {
+					display: flex;
+					align-items: center;
 					padding: 20rpx;
 
 					.card-image {
-						width: 100%;
+						width: 260rpx;
 						border-radius: 8rpx;
 						overflow: hidden;
 						margin-bottom: 16rpx;
@@ -763,6 +766,8 @@
 					}
 
 					.card-info {
+						width: calc(100% - 270rpx);
+						margin-left: 10rpx;
 						.card-header {
 							margin-bottom: 12rpx;
 
@@ -818,10 +823,9 @@
 
 					.action-btn {
 						padding: 10rpx 32rpx;
-						background-color: #37bde6;
+						background-color: #D41003;
 						color: #fff;
 						border-radius: 20rpx;
-						font-size: 28rpx;
 
 						&.purchased {
 							background-color: #e0e0e0;
@@ -932,7 +936,7 @@
 						color: #333;
 
 						&.active {
-							color: #37bde6;
+							color: #D41003;
 						}
 
 						.icon-check {
@@ -962,7 +966,7 @@
 
 					.confirm-btn {
 						color: #fff;
-						background-color: #37bde6;
+						background-color: #D41003;
 					}
 				}
 			}

--
Gitblit v1.9.2