15 lines
388 B
PHP
15 lines
388 B
PHP
<?php
|
|
namespace app\controllers\admin;
|
|
use Yii;
|
|
use yii\web\Controller;
|
|
class ShoppingmallController extends CommonController{
|
|
public $enableCsrfValidation = false;
|
|
public function actionPlug_market()
|
|
{
|
|
return $this->renderPartial('plug_market');
|
|
}
|
|
public function actionPurchase_records()
|
|
{
|
|
return $this->renderPartial('purchase_records');
|
|
}
|
|
} |