InquiryHandle.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. namespace App\Admin\Actions\Tools;
  3. use App\Admin\Repositories\DistInquiry;
  4. use Dcat\Admin\Grid\Tools\AbstractTool;
  5. use Dcat\Admin\Widgets\Modal;
  6. use Illuminate\Http\Request;
  7. class InquiryHandle extends AbstractTool
  8. {
  9. protected $style = 'btn btn-success';
  10. /**
  11. * 按钮文本
  12. *
  13. * @return string|void
  14. */
  15. public function title()
  16. {
  17. return admin_trans_label('process');
  18. }
  19. /**
  20. * 确认弹窗,如果不需要则返回空即可
  21. *
  22. * @return array|string|void
  23. */
  24. public function confirm()
  25. {
  26. // 只显示标题
  27. // return '您确定要发送新的提醒消息吗?';
  28. // 显示标题和内容
  29. $msg = admin_trans_label('confirm_process_inquiry');
  30. return [$msg, ''];
  31. }
  32. /**
  33. * 处理请求
  34. * 如果你的类中包含了此方法,则点击按钮后会自动向后端发起ajax请求,并且会通过此方法处理请求逻辑
  35. *
  36. * @param Request $request
  37. */
  38. public function handle(Request $request)
  39. {
  40. $keys = $request->input('_key');
  41. if (is_array($keys) && count($keys) > 0) {
  42. $result = DistInquiry::distSetStatusProcessed($keys);
  43. if ($result === false) {
  44. return $this->response()->error('Failed to process!')->refresh();
  45. }
  46. return $this->response()->success(admin_trans_label('update_success'))->refresh();
  47. } else {
  48. return $this->response()->error('No data selected!')->refresh();
  49. }
  50. // 你的代码逻辑
  51. }
  52. public function actionScript(){
  53. $warning = admin_trans_label('no_selected_data');
  54. return <<<JS
  55. function (data, target, action) {
  56. try {
  57. var key = {$this->getSelectedKeysScript()}
  58. if (key.length === 0) {
  59. Dcat.warning('{$warning}');
  60. return false;
  61. }
  62. // 设置主键为复选框选中的行ID数组
  63. action.options.key = key;
  64. } catch (e) {
  65. Dcat.warning('{$warning}');
  66. return false;
  67. }
  68. }
  69. JS;
  70. }
  71. public function getSelectedKeysScript()
  72. {
  73. return "Dcat.grid.selected('{$this->parent->getName()}')";
  74. }
  75. }