作者 sgj
1 个管道 的构建 通过 耗费 1 秒

后台积分处理

@@ -99,6 +99,34 @@ class AdminIndexController extends AdminBaseController @@ -99,6 +99,34 @@ class AdminIndexController extends AdminBaseController
99 return $this->fetch(); 99 return $this->fetch();
100 } 100 }
101 101
  102 + /**
  103 + * 积分管理
  104 + * @adminMenu(
  105 + * 'name' => '积分管理',
  106 + * 'parent' => 'default1',
  107 + * 'display'=> true,
  108 + * 'hasView'=> true,
  109 + * 'order' => 10000,
  110 + * 'icon' => '',
  111 + * 'remark' => '用户积分管理',
  112 + * 'param' => ''
  113 + * )
  114 + */
  115 + public function scorePost(){
  116 + $data=input();
  117 + if ($data['num']<=0){
  118 + $this->error('积分输入有误');
  119 + }
  120 + $result=addScore($data['user_id'],$data['num'],'后台积分发放');
  121 + if ($result==1){
  122 + $this->success('积分发送成功!');
  123 + }else{
  124 + $this->error('积分发放失败!');
  125 + }
  126 + }
  127 +
  128 +
  129 +
102 130
103 /** 131 /**
104 * 本站用户拉黑 132 * 本站用户拉黑
@@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
5 <ul class="nav nav-tabs"> 5 <ul class="nav nav-tabs">
6 <li class="active"><a>积分管理</a></li> 6 <li class="active"><a>积分管理</a></li>
7 </ul> 7 </ul>
8 - <form method="post" class="form-horizontal js-ajax-form margin-top-20" action="{:url('user/scorePost')}"> 8 + <form method="post" class="form-horizontal js-ajax-form margin-top-20" action="{:url('scorePost')}">
9 <div class="form-group"> 9 <div class="form-group">
10 <label for="input-user_login" class="col-sm-2 control-label"><span class="form-required">*</span>用户名</label> 10 <label for="input-user_login" class="col-sm-2 control-label"><span class="form-required">*</span>用户名</label>
11 <div class="col-md-6 col-sm-10"> 11 <div class="col-md-6 col-sm-10">