ConfigRemittance.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use logicmodel\WalletLogic;
  5. /**
  6. *
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class ConfigRemittance extends Backend
  11. {
  12. /**
  13. * ConfigRemittance模型对象
  14. * @var \app\admin\model\ConfigRemittance
  15. */
  16. protected $model = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. $this->model = new \app\admin\model\ConfigRemittance;
  21. $this->view->assign("isShowList", $this->model->getIsShowList());
  22. }
  23. public function import()
  24. {
  25. parent::import();
  26. }
  27. /**
  28. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  29. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  30. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  31. */
  32. /**
  33. * 查看
  34. */
  35. public function index()
  36. {
  37. //当前是否为关联查询
  38. $this->relationSearch = true;
  39. //设置过滤方法
  40. $this->request->filter(['strip_tags', 'trim']);
  41. if ($this->request->isAjax()) {
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField')) {
  44. return $this->selectpage();
  45. }
  46. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  47. $list = $this->model
  48. ->with(['currency'])
  49. ->where($where)
  50. ->order($sort, $order)
  51. ->paginate($limit);
  52. foreach ($list as $row) {
  53. $row->visible(['id','currency_id','pooling_address','fee_address',]);
  54. $row->visible(['currency']);
  55. $row->getRelation('currency')->visible(['name']);
  56. }
  57. $result = array("total" => $list->total(), "rows" => $list->items());
  58. return json($result);
  59. }
  60. return $this->view->fetch();
  61. }
  62. public function edit($ids = null)
  63. {
  64. if(request()->isPost()){
  65. $data = input('post.');
  66. $data = $data['row'];
  67. if(!empty($data['fee_address_key'])){
  68. if(strlen($data['fee_address_key']) != 64) return json(['code'=>0,'msg'=>'私钥格式错误']);
  69. $fee_address = (new WalletLogic())->importPrivateKey($data['fee_address_key']);
  70. if($fee_address == false) return json(['code'=>0,'msg'=>'私钥格式不合法,请重新输入']);
  71. $data['fee_address'] = $fee_address;
  72. }
  73. unset($data['fee_address_key']);
  74. $this->model->where(['id'=>$ids])->update($data);
  75. return json(['code'=>1,'msg'=>'编辑成功']);
  76. }
  77. $row = $this->model->find($ids);
  78. $this->assign('row',$row);
  79. return $this->fetch();
  80. }
  81. }