36 lines
458 B
PHP
36 lines
458 B
PHP
<?php
|
|
|
|
namespace addon\alipay\shop\controller;
|
|
use app\shop\controller\BaseShop;
|
|
class Zmgopay extends BaseShop
|
|
{
|
|
|
|
public function lists(){
|
|
|
|
if(request()->isAjax()){
|
|
|
|
|
|
}
|
|
$this->forthMenu();
|
|
return $this->fetch('go/lists');
|
|
}
|
|
|
|
public function add(){
|
|
|
|
|
|
return $this->fetch('go/add');
|
|
}
|
|
|
|
|
|
public function edit(){
|
|
|
|
|
|
return $this->fetch('go/edit');
|
|
}
|
|
|
|
|
|
public function delete(){
|
|
|
|
|
|
}
|
|
} |