1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace addons\shopro\controller\data;
- use addons\shopro\controller\Common;
- use think\Db;
- /**
- * 快递公司
- */
- class Express extends Common
- {
- protected $noNeedLogin = ['index'];
- protected $noNeedRight = ['*'];
- /**
- * 查看
- *
- * @return string|Json
- * @throws \think\Exception
- * @throws DbException
- */
- public function index()
- {
- $model = new \app\admin\model\shopro\data\Express;
- $list = $model->sheepFilter()->select();
- $this->success('', null, $list);
- }
- }
|