AuctionSite.php 1000 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. namespace app\admin\controller\auction;
  3. use app\admin\controller\AuthController;
  4. use app\admin\controller\Union;
  5. use crmeb\services\{ExpressService,
  6. JsonService,
  7. MiniProgramService,
  8. upload\Upload,
  9. WechatService,
  10. FormBuilder as Form,
  11. CacheService,
  12. UtilService as Util,
  13. JsonService as Json};
  14. use app\admin\model\system\{
  15. SystemAttachment as SystemAttachmentModel, SystemAttachmentCategory as Category
  16. };
  17. use think\facade\Route as Url;
  18. /**
  19. * 竞拍管理
  20. * Class StoreOrder
  21. * @package app\admin\controller\store
  22. */
  23. class AuctionSite extends AuthController
  24. {
  25. public function index()
  26. {
  27. $data = \app\admin\model\auction\AuctionSite::select();
  28. $form = ['getTitle' => '竞拍配置'];
  29. $this->assign([
  30. 'form' => $form,
  31. 'getTitle' => '竞拍配置',
  32. 'config_tab' => [
  33. 'id' => 1,
  34. 'type' => 1
  35. ]
  36. ]);
  37. return $this->fetch();
  38. }
  39. }