Store.php 486 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace addons\shopro\controller\store;
  3. use addons\shopro\exception\Exception;
  4. use addons\shopro\model\Store as ModelStore;
  5. class Store extends Base
  6. {
  7. protected $noNeedLogin = [];
  8. protected $noNeedRight = ['*'];
  9. public function index()
  10. {
  11. $params = $this->request->get();
  12. $store = ModelStore::info();
  13. if (!$store) {
  14. $this->error('门店不存在');
  15. }
  16. $this->success('获取成功', $store);
  17. }
  18. }