12 lines
140 B
PHP
12 lines
140 B
PHP
<?php
|
|
namespace app\controller;
|
|
|
|
use think\facade\View;
|
|
|
|
class Pay
|
|
{
|
|
public function index()
|
|
{
|
|
return View::fetch();
|
|
}
|
|
} |