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