postchkbox.php 878 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Post checkbox component for customer management
  4. * Displays action selection dropdown and execute button
  5. */
  6. ?>
  7. <div class="postchkbox">
  8. <select id="chkact" name="chkact">
  9. <option value="0">无响应</option>
  10. <option value="1">背景调查</option>
  11. <option value="2">明确需求</option>
  12. <?php
  13. // Get team members that current user can transfer customers to
  14. $stmt = $conn->prepare("SELECT id, em_user FROM employee WHERE em_role = ?");
  15. $stmt->bind_param("i", $_SESSION['employee_id']);
  16. $stmt->execute();
  17. $result = $stmt->get_result();
  18. while ($row = $result->fetch_assoc()) {
  19. echo "<option value=\"t{$row['id']}\">转给{$row['em_user']}</option>";
  20. }
  21. ?>
  22. </select>
  23. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  24. </div>