From 9f2b6dada7304026de555b3e751b17a5a65e6d7a Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Wed, 26 Nov 2025 14:36:05 +0800
Subject: [PATCH] 1、修复会长小程序端编辑获取信息报错和选择了活动时间但还是提示请选择活动时间 2、修复小程序添加分会成员选择会员时无法下拉问题

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

diff --git a/mobile/pages/plus/business/list.vue b/mobile/pages/plus/business/list.vue
index bae3dd5..c1d64a0 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 || '支付失败');
@@ -748,10 +748,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 +765,8 @@
 					}
 
 					.card-info {
+						width: calc(100% - 270rpx);
+						margin-left: 10rpx;
 						.card-header {
 							margin-bottom: 12rpx;
 
@@ -818,10 +822,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 +935,7 @@
 						color: #333;
 
 						&.active {
-							color: #37bde6;
+							color: #D41003;
 						}
 
 						.icon-check {
@@ -962,7 +965,7 @@
 
 					.confirm-btn {
 						color: #fff;
-						background-color: #37bde6;
+						background-color: #D41003;
 					}
 				}
 			}

--
Gitblit v1.9.2