| 12345678910111213141516171819202122232425 |
- <?php
- declare (strict_types = 1);
- namespace app\admin\controller\shop;
- use app\common\controller\Backend;
- use think\annotation\route\Group;
- use app\admin\traits\Actions;
- use think\annotation\route\Route;
- use app\common\model\ShopDelivery as ShopDeliveryModel;
- #[Group("shop/shop_delivery")]
- class ShopDelivery extends Backend
- {
- use Actions;
- protected function _initialize()
- {
- parent::_initialize();
- $this->model = new ShopDeliveryModel();
- $this->assign('platformList', site_config('addonsd.platform_list'));
- $this->relationField=['customer','user','shops', 'variety', 'specs'];
- }
- }
|