customers.php 281 B

12345678910111213141516
  1. <?php
  2. namespace WY\app\controller;
  3. use WY\app\libs\Controller;
  4. if (!defined('WY_ROOT')) {
  5. exit;
  6. }
  7. class customers extends Controller
  8. {
  9. public function index()
  10. {
  11. $data = array('title' => '消费者协议');
  12. $this->put('customers.php', $data);
  13. }
  14. }
  15. ?>