| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace app\admin\controller\ump;
- use app\admin\controller\AuthController;
- use service\UtilService as Util;
- use app\admin\model\user\UserPoint AS UserPointModel;
- use think\Url;
- use service\JsonService;
- use app\admin\model\user\UserBill;
- /**
- * 优惠券控制器
- * Class StoreCategory
- * @package app\admin\controller\system
- */
- class UserPoint extends AuthController
- {
- /**
- * @return mixed
- */
- public function index()
- {
- $this->assign([
- 'is_layui'=>true,
- 'year'=>getMonth('y'),
- ]);
- return $this->fetch();
- }
- /**
- * @return mixed
- */
- public function create()
- {
- $this->assign(['title'=>'添加优惠券','action'=>Url::build('save'),'rules'=>$this->rules()->getContent()]);
- return $this->fetch('public/common_form');
- }
- //异步获取积分列表
- public function getponitlist(){
- $where = Util::getMore([
- ['start_time',''],
- ['end_time',''],
- ['nickname',''],
- ['page',1],
- ['limit',10],
- ]);
- return JsonService::successlayui(UserPointModel::getpointlist($where));
- }
- //导出Excel表格
- public function export(){
- $where = Util::getMore([
- ['start_time',''],
- ['end_time',''],
- ['nickname',''],
- ]);
- UserPointModel::SaveExport($where);
- }
- //获取积分日志头部信息
- public function getuserpointbadgelist(){
- $where = Util::getMore([
- ['start_time',''],
- ['end_time',''],
- ['nickname',''],
- ]);
- return JsonService::successful(UserPointModel::getUserpointBadgelist($where));
- }
- }
|