ApiController.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace App\Admin\Controllers;
  3. use App\Admin\Repositories\DistAdminDistributor;
  4. use Illuminate\Http\Request;
  5. use Illuminate\Routing\Controller;
  6. class ApiController extends Controller
  7. {
  8. /**
  9. * dist 分销商
  10. */
  11. public function dist(Request $request)
  12. {
  13. $q = $request->get('q');
  14. if ($q != null) {
  15. // 模糊搜索
  16. $obj = new DistAdminDistributor();
  17. return $obj->model()->where('client_code', 'like', "%$q%")->paginate(null, ['id', 'client_code as text']);
  18. } else {
  19. // 获取最新的N个
  20. $selectOptionsNew = DistAdminDistributor::selectOptionsNew();
  21. return $this->changeOptions($selectOptionsNew);
  22. }
  23. }
  24. /*
  25. * 把数据转换成select需要的格式
  26. */
  27. private function changeOptions($data) {
  28. // 初始化结果数组
  29. $result = [];
  30. // 遍历原始数据并转换格式
  31. foreach ($data as $id => $text) {
  32. $result[] = [
  33. 'id' => (int)$id, // 将字符串转换为整数
  34. 'text' => $text
  35. ];
  36. }
  37. return $result;
  38. }
  39. }