Customer.php 329 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\admin\controller;
  3. use app\BaseController;
  4. use think\App;
  5. class Customer extends BaseController
  6. {
  7. public $post = "";
  8. public function __construct(App $app)
  9. {
  10. parent::__construct($app);
  11. $this->post = $this->request->post();
  12. }
  13. /*列表*/
  14. public function list(){
  15. }
  16. }