No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MultiMerchant.php 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2022-03-23
  12. */
  13. namespace app\home\controller;
  14. use think\Db;
  15. class MultiMerchant extends Base
  16. {
  17. public function _initialize() {
  18. parent::_initialize();
  19. $this->weapp_multi_merchant_db = Db::name('weapp_multi_merchant');
  20. }
  21. // 商家列表
  22. public function merchant_lists()
  23. {
  24. $eyou = [];
  25. $this->eyou = array_merge($this->eyou, $eyou);
  26. $this->assign('eyou', $this->eyou);
  27. return $this->fetch('merchant/merchant_lists');
  28. }
  29. // 店铺首页
  30. public function merchant_index()
  31. {
  32. $merchant_id = input('merchant_id/d', 0);
  33. empty($merchant_id) && $this->error('请选择商家访问..');
  34. $this->assign('merchant_id', $merchant_id);
  35. $eyou = [];
  36. $this->eyou = array_merge($this->eyou, $eyou);
  37. $this->assign('eyou', $this->eyou);
  38. return $this->fetch('merchant/merchant_index');
  39. }
  40. }