1234567891011121314151617181920 |
- <?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
- $result = $conn->query("SELECT id, em_code, em_user FROM employee ORDER BY em_code ASC");
- while ($row = $result->fetch_assoc()) {
- echo "<option value=\"t{$row['id']}\">转给" . htmlspecialcharsFix($row['em_user']) . "(" . htmlspecialcharsFix($row['em_code']) . ")</option>";
- }
- ?>
- </select>
- <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
- </div>
|