截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Bank.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. namespace app\shop\controller;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\JsonServer;
  5. use app\shop\logic\BankLogic;
  6. use app\shop\validate\BankValidate;
  7. use think\facade\View;
  8. class Bank extends ShopBase
  9. {
  10. /**
  11. * @Notes: 银行卡列表
  12. * @Author: 张无忌
  13. */
  14. public function lists()
  15. {
  16. if ($this->request->isAjax()) {
  17. $get = $this->request->get();
  18. $lists = BankLogic::lists($get, $this->shop_id);
  19. return JsonServer::success('获取成功', $lists);
  20. }
  21. return view();
  22. }
  23. /**
  24. * @Notes: 账号详细
  25. * @Author: 张无忌
  26. */
  27. public function detail()
  28. {
  29. $id = $this->request->get('id');
  30. View::assign('detail', BankLogic::detail($id));
  31. return view();
  32. }
  33. /**
  34. * @Notes: 新增银行卡
  35. * @Author: 张无忌
  36. */
  37. public function add()
  38. {
  39. if ($this->request->isAjax()) {
  40. (new BankValidate())->goCheck('add');
  41. $post = $this->request->post();
  42. $res = BankLogic::add($post, $this->shop_id);
  43. if ($res === false) {
  44. $error = BankLogic::getError() ?: '新增失败';
  45. return JsonServer::error($error);
  46. }
  47. return JsonServer::success('新增成功');
  48. }
  49. return view();
  50. }
  51. /**
  52. * @Notes: 编辑银行卡
  53. * @Author: 张无忌
  54. */
  55. public function edit()
  56. {
  57. if ($this->request->isAjax()) {
  58. (new BankValidate())->goCheck('edit');
  59. $post = $this->request->post();
  60. $res = BankLogic::edit($post);
  61. if ($res === false) {
  62. $error = BankLogic::getError() ?: '编辑失败';
  63. return JsonServer::error($error);
  64. }
  65. return JsonServer::success('编辑成功');
  66. }
  67. $id = $this->request->get('id');
  68. return view('', [
  69. 'detail' => BankLogic::detail($id)
  70. ]);
  71. }
  72. /**
  73. * @Notes: 删除银行卡
  74. * @Author: 张无忌
  75. */
  76. public function del()
  77. {
  78. if ($this->request->isAjax()) {
  79. (new BankValidate())->goCheck('id');
  80. $id = $this->request->post('id');
  81. $res = BankLogic::del($id);
  82. if ($res === false) {
  83. $error = BankLogic::getError() ?: '删除失败';
  84. return JsonServer::error($error);
  85. }
  86. return JsonServer::success('删除成功');
  87. }
  88. return JsonServer::error('异常');
  89. }
  90. }