RefundController.php 294 B

12345678910111213141516171819
  1. <?php
  2. namespace addons\WechatVideoShop\backend\controllers;
  3. class RefundController extends BaseController
  4. {
  5. public $enableCsrfValidation = false;
  6. /**
  7. * 售后列表
  8. * @return string
  9. */
  10. public function actionIndex()
  11. {
  12. return $this->render('');
  13. }
  14. }