Vehicle.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. namespace catchAdmin\yunying\controller;
  3. use catchAdmin\permissions\controller\User;
  4. use catcher\base\CatchRequest as Request;
  5. use catcher\CatchResponse;
  6. use catcher\base\CatchController;
  7. use catchAdmin\permissions\model\Users;
  8. use catchAdmin\device\model\Device;
  9. use catchAdmin\yunying\model\Vehicle as vehicleModel;
  10. use catchAdmin\permissions\model\Department;
  11. use catchAdmin\yunying\model\VehicleBrand;
  12. use catchAdmin\yunying\model\VehicleColor;
  13. use catchAdmin\yunying\model\StolenVehicle;
  14. use catchAdmin\yunying\model\VehiclePhoto;
  15. use catcher\library\excel\Excel;
  16. use catchAdmin\yunying\excel\VehiclesExport;
  17. use catcher\Utils;
  18. class Vehicle extends CatchController
  19. {
  20. protected $vehicleModel;
  21. public function __construct(VehicleModel $vehicleModel)
  22. {
  23. $this->vehicleModel = $vehicleModel;
  24. }
  25. /**
  26. * 列表
  27. * @time 2022年01月20日 10:42
  28. * @param Request $request
  29. */
  30. public function index(Request $request) : \think\Response
  31. {
  32. $field = $request->get('field')?:'id';
  33. $order = $request->get('order')?:'desc';
  34. return CatchResponse::paginate($this->vehicleModel->getVehicleList($field,$order));
  35. }
  36. /**
  37. * 保存信息
  38. * @time 2022年01月20日 10:42
  39. * @param Request $request
  40. */
  41. public function save(Request $request) : \think\Response
  42. {
  43. return CatchResponse::success($this->vehicleModel->storeBy($request->post()));
  44. }
  45. /**
  46. * 读取
  47. * @time 2022年01月20日 10:42
  48. * @param $id
  49. */
  50. public function read($id) : \think\Response
  51. {
  52. $data = $this->vehicleModel->findBy($id)->toArray();
  53. $data['department_id'] = (new Department())->where('id',$data['department_id'])->value('department_name');
  54. $data['brand_id'] = (new VehicleBrand())->where('id',$data['brand_id'])->value('name');
  55. $data['color_id'] = (new VehicleColor())->where('id',$data['color_id'])->value('name');
  56. // 被盗情况
  57. $stolen_info = (new StolenVehicle())->where('vehicle_id', $id)->find();
  58. if (!$stolen_info || in_array($stolen_info['result'], [2, 4])) { //0-待处理 1-已受理 2-已找回 3-已理赔 4-误报
  59. $data['status'] = '<font style="color:green">正常</font>';
  60. } else {
  61. $data['status'] = '<font style="color:red">被盗</font>';
  62. }
  63. //车主信息
  64. $data['chezhu'] = (new Users())->where('id',$data['user_id'])->field('realname,phone,idcard')->find();
  65. //身份证隐藏中间8位
  66. $data['chezhu']['idcard'] = $data['chezhu']['idcard']?substr($data['chezhu']['idcard'],0,6)."****".substr($data['chezhu']['idcard'],14,4):'';
  67. //车辆照片
  68. $data['photos'] = (new VehiclePhoto())->where('vehicle_id',$id)->field('url,type')->select();
  69. //车辆标签
  70. $data['labels'] = (new Device())->where('bind_id',$id)->field('imei,rfid,online_time')->select();
  71. // var_dump($data);
  72. return CatchResponse::success($data);
  73. }
  74. /**
  75. * 更新
  76. * @time 2022年01月20日 10:42
  77. * @param Request $request
  78. * @param $id
  79. */
  80. public function update(Request $request, $id) : \think\Response
  81. {
  82. return CatchResponse::success($this->vehicleModel->updateBy($id, $request->post()));
  83. }
  84. /**
  85. * 删除
  86. * @time 2022年01月20日 10:42
  87. * @param $id
  88. */
  89. public function delete($id) : \think\Response
  90. {
  91. return CatchResponse::success($this->vehicleModel->deleteBy($id));
  92. }
  93. /**
  94. * 导出
  95. *
  96. * @time 2022年01月22日
  97. * @param Excel $excel
  98. * @param VehicleExport $vehicleExport
  99. * @throws \PhpOffice\PhpSpreadsheet\Exception
  100. * @return \think\response\Json
  101. */
  102. public function export_vehicle(Excel $excel, VehiclesExport $VehicleExport)
  103. {
  104. // var_dump(Utils::publicPath('export/users'));//导出路径
  105. return CatchResponse::success($excel->save($VehicleExport, Utils::publicPath('export/vehicles'), 'local', '车辆列表'));
  106. }
  107. }