1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace app\admin\controller\auction;
- use app\admin\controller\AuthController;
- use app\admin\controller\Union;
- use crmeb\services\{ExpressService,
- JsonService,
- MiniProgramService,
- upload\Upload,
- WechatService,
- FormBuilder as Form,
- CacheService,
- UtilService as Util,
- JsonService as Json};
- use app\admin\model\system\{
- SystemAttachment as SystemAttachmentModel, SystemAttachmentCategory as Category
- };
- use think\facade\Route as Url;
- /**
- * 竞拍管理
- * Class StoreOrder
- * @package app\admin\controller\store
- */
- class AuctionSite extends AuthController
- {
- public function index()
- {
- $data = \app\admin\model\auction\AuctionSite::select();
- $form = ['getTitle' => '竞拍配置'];
- $this->assign([
- 'form' => $form,
- 'getTitle' => '竞拍配置',
- 'config_tab' => [
- 'id' => 1,
- 'type' => 1
- ]
- ]);
- return $this->fetch();
- }
- }
|