请选择联系人'; if ($customerId > 0) { $customerQuery = $conn->query("SELECT c.id, c.cs_code, c.cs_company FROM customer c WHERE c.id = " . $customerId); if ($customerQuery && $customerQuery->num_rows > 0) { $customerInfo = $customerQuery->fetch_assoc(); // 获取该客户的联系人列表,不再自动选择第一个联系人 $contactsQuery = $conn->query("SELECT id, contact_name FROM customer_contact WHERE customer_id = " . $customerId); if ($contactsQuery && $contactsQuery->num_rows > 0) { // 移除自动选择联系人的逻辑 while ($contact = $contactsQuery->fetch_assoc()) { $contactOptions .= ''; } } } } ?>