25 lines
412 B
PHP
25 lines
412 B
PHP
<?php
|
|
namespace addon\cashier\shop\controller;
|
|
use app\shop\controller\BaseShop;
|
|
class Cashier extends BaseShop
|
|
{
|
|
|
|
/***
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function qrlist()
|
|
{
|
|
if (request()->isAjax()) {
|
|
|
|
}
|
|
$this->forthMenu();
|
|
return $this->fetch('cashier/lists');
|
|
}
|
|
|
|
public function download(){
|
|
|
|
return $this->fetch('cashier/download');
|
|
}
|
|
|
|
} |