Account.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. /**
  3. *------Create thems Controller------
  4. *------SCWPHP Version 1.0.0------
  5. *------Dev Model Jions------
  6. *------Create Time 2017-06-08 10:07:19------
  7. */
  8. namespace App\Home\Controller;
  9. class Account extends BaseController {
  10. /**
  11. * 用户会员中心->用户资料
  12. */
  13. public function Index() {
  14. lm ('UserGrade', 'Api')->upgrade($_SESSION['uinfo']);
  15. $this->display();
  16. }
  17. /**
  18. * 修改用户密码页面
  19. */
  20. public function AccountPasswordIndex() {
  21. $this->display();
  22. }
  23. /**
  24. * 修改支付密码页面
  25. */
  26. public function PayPasswordIndex() {
  27. $this->display();
  28. }
  29. /**
  30. * 提现功能页面
  31. */
  32. public function AccountGetCash() {
  33. $this->display();
  34. }
  35. /**
  36. * 意见反馈
  37. */
  38. public function Faceback() {
  39. $this->display();
  40. }
  41. /**
  42. * 设置赔率
  43. */
  44. public function SetOdds() {
  45. $apiAccount = new \App\Api\Controller\Account();
  46. $gameSettings = $apiAccount->getSettings();
  47. $this->assign('game', $_GET['game']);
  48. $this->assign('settings', $gameSettings);
  49. $this->display();
  50. }
  51. /***
  52. * 消息中心
  53. */
  54. public function myMesg(){
  55. $this->display();
  56. }
  57. //具体消息
  58. public function messge(){
  59. $this->display();
  60. }
  61. //具体消息
  62. public function myMesgone(){
  63. $this->display();
  64. }
  65. public function UserShare(){
  66. $settings = lm('settings', 'Commons')->first();
  67. $this->assign('setting', $settings);
  68. $this->display();
  69. }
  70. }