37 lines
932 B
PHP
Executable File
37 lines
932 B
PHP
Executable File
<?php
|
|
defined('WXAPP_ITEMS') OR exit('No direct script access allowed');
|
|
ini_set('display_errors', 'On');
|
|
error_reporting(E_ERROR);
|
|
|
|
require_once APPPATH . 'controllers/wxapp/Wxapp.php';
|
|
|
|
/**
|
|
* Notes:佣金明细
|
|
* Created on: 2020/6/29 15:16
|
|
* Created by: dengbw
|
|
*/
|
|
class Commission extends Wxapp
|
|
{
|
|
private $uid;
|
|
|
|
function __construct($inputs, $app_key)
|
|
{
|
|
parent::__construct($inputs, $app_key);
|
|
$this->login_white = '';//
|
|
$this->check_status = array();//用户状态校验
|
|
$this->check_mobile = array();//需要手机号
|
|
$this->check_headimg = array();//授权微信信息
|
|
$this->majia_white = array('get');//超级管理员披上马甲可操作权限
|
|
$this->uid = $this->session['uid'];
|
|
}
|
|
|
|
/**
|
|
* Notes:佣金明细
|
|
* Created on: 2020/6/30 11:47
|
|
* Created by: dengbw
|
|
* @return array
|
|
*/
|
|
protected function get(){
|
|
}
|
|
}
|