Userwallet.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use app\common\model\wallet;
  6. /**
  7. * 用户钱包
  8. *
  9. * @icon fa fa-circle-o
  10. */
  11. class Userwallet extends Backend
  12. {
  13. /**
  14. * Userwallet模型对象
  15. * @var \app\admin\model\Userwallet
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\Userwallet;
  22. $this->view->assign("statusList", $this->model->getStatusList());
  23. }
  24. public function import()
  25. {
  26. parent::import();
  27. }
  28. /**
  29. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  30. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  31. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  32. */
  33. /**
  34. * 查看
  35. */
  36. public function index()
  37. {
  38. //当前是否为关联查询
  39. $this->relationSearch = true;
  40. //设置过滤方法
  41. $this->request->filter(['strip_tags', 'trim']);
  42. if ($this->request->isAjax()) {
  43. //如果发送的来源是Selectpage,则转发到Selectpage
  44. if ($this->request->request('keyField')) {
  45. return $this->selectpage();
  46. }
  47. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  48. $list = $this->model
  49. ->with(['user'])
  50. ->where($where)
  51. ->order($sort, $order)
  52. ->paginate($limit);
  53. foreach ($list as $row) {
  54. $row->getRelation('user')->visible(['username']);
  55. }
  56. $result = array("total" => $list->total(), "rows" => $list->items());
  57. return json($result);
  58. }
  59. return $this->view->fetch();
  60. }
  61. /**
  62. * 充值金币
  63. */
  64. public function updatemoney(){
  65. $id = input('id');
  66. $info = Db::name('user_wallet')
  67. ->where('id',$id)
  68. ->find();
  69. if ($this->request->isPost()) {
  70. $user_id = input('user_id');
  71. $gold = input('gold');
  72. $remark = input('remark','后台调节');
  73. Db::startTrans();
  74. $rs = model('wallet')->lockChangeAccountRemain($user_id,'gold',$gold,1,$remark);
  75. if($rs['status'] === false){
  76. Db::rollback();
  77. $this->error($rs['msg']);
  78. }
  79. Db::commit();
  80. $this->success('充值完成');
  81. }
  82. $this->assign('row',$info);
  83. return $this->view->fetch();
  84. }
  85. /**
  86. * 收益金币
  87. */
  88. public function updatejewel(){
  89. $id = input('id');
  90. $info = Db::name('user_wallet')
  91. ->where('id',$id)
  92. ->find();
  93. if ($this->request->isPost()) {
  94. $user_id = input('user_id');
  95. $jewel = input('jewel');
  96. $remark = input('remark','后台调节');
  97. Db::startTrans();
  98. $rs = model('wallet')->lockChangeAccountRemain($user_id,'jewel',$jewel,2,$remark);
  99. if($rs['status'] === false){
  100. Db::rollback();
  101. $this->error($rs['msg']);
  102. }
  103. Db::commit();
  104. $this->success('充值完成');
  105. }
  106. $this->assign('row',$info);
  107. return $this->view->fetch();
  108. }
  109. /**
  110. * 充值VIP
  111. */
  112. public function updatevip(){
  113. $id = input('id');
  114. $info = Db::name('user_wallet')->where('id',$id)->find();
  115. if ($this->request->isPost()) {
  116. $user_id = input_post('user_id');
  117. $vip_endtime = strtotime(input_post('vip_endtime'));
  118. Db::startTrans();
  119. $info = Db::name('user_wallet')->where('user_id',$user_id)->update(['vip_endtime'=>$vip_endtime]);
  120. if($info === false){
  121. Db::rollback();
  122. $this->error('修改失败');
  123. }
  124. Db::commit();
  125. $this->success('充值完成');
  126. }
  127. $this->assign('row',$info);
  128. return $this->view->fetch();
  129. }
  130. }