Shopjoin.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com.cn
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
  9. * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
  10. * =========================================================
  11. */
  12. namespace app\admin\controller;
  13. use app\model\shop\Config as ConfigModel;
  14. /**
  15. * 商家入驻
  16. */
  17. class Shopjoin extends BaseAdmin
  18. {
  19. /**
  20. * 入驻广告
  21. */
  22. public function adv()
  23. {
  24. $config_model = new ConfigModel();
  25. if (request()->isAjax()) {
  26. $config_json = input('config_json', '');
  27. $adv_config = $config_json ? json_decode($config_json, true) : [];
  28. return $config_model->setShopJoinAdvConfig($adv_config);
  29. } else {
  30. $this->forthMenu();
  31. //广告详情 广告最多三张
  32. $adv_config = $config_model->getShopJoinAdvConfig();
  33. $this->assign('adv_config', $adv_config['data']['value']);
  34. return $this->fetch('shopjoin/adv');
  35. }
  36. }
  37. /**
  38. * 入驻指南
  39. */
  40. public function guide()
  41. {
  42. if (request()->isAjax()) {
  43. $config_model = new ConfigModel();
  44. return $config_model->getShopJoinGuide();
  45. } else {
  46. $this->forthMenu();
  47. return $this->fetch('shopjoin/guide');
  48. }
  49. }
  50. /**
  51. * 修改指南
  52. */
  53. public function editGuide()
  54. {
  55. $config_model = new ConfigModel();
  56. if (request()->isAjax()) {
  57. $title = input('title', '');
  58. $content = input('content', '');
  59. $guide_index = input('guide_index', 1);
  60. return $config_model->setShopJoinGuideDocument($title, $content, $guide_index);
  61. } else {
  62. //指南索引 1 2 3 4
  63. $guide_index = input('guide_index', 1);
  64. $this->assign('guide_index', $guide_index);
  65. //指南详情
  66. $guide_info = $config_model->getShopJoinGuideDocument($guide_index);
  67. $this->assign('guide_info', $guide_info['data']);
  68. return $this->fetch('shopjoin/edit_guide');
  69. }
  70. }
  71. /**
  72. * 入驻协议
  73. */
  74. public function shopAgreement()
  75. {
  76. $config_model = new ConfigModel();
  77. if (request()->isAjax()) {
  78. $title = input('title', '');//标题
  79. $content = input('content', '');//内容
  80. return $config_model->setShopApplyAgreement($title, $content);
  81. }
  82. $shop_apply_agreement = $config_model->getShopApplyAgreement();
  83. $this->assign('shop_apply_agreement', $shop_apply_agreement);
  84. return $this->fetch('shopjoin/shop_agreement');
  85. }
  86. /**
  87. * 入驻协议
  88. */
  89. public function shopENTRYPAGE()
  90. {
  91. $config_model = new ConfigModel();
  92. if (request()->isAjax()) {
  93. $title = input('title', '');//标题
  94. $content = input('content', '');//内容
  95. return $config_model->setENTRYPAGE($title, $content);
  96. }
  97. $entry_page = $config_model->getENTRYPAGE();
  98. $this->assign('entry_page', $entry_page);
  99. return $this->fetch('shopjoin/entry_page');
  100. }
  101. /**
  102. * 隐私协议
  103. */
  104. public function platformPrivacy()
  105. {
  106. $config_model = new ConfigModel();
  107. if (request()->isAjax()) {
  108. $title = input('title', '');//标题
  109. $content = input('content', '');//内容
  110. return $config_model->setPlatformPrivacy($title, $content);
  111. }
  112. $shop_apply_agreement = $config_model->getPlatformPrivacy();
  113. $this->assign('platform_privacy', $shop_apply_agreement);
  114. return $this->fetch('shopjoin/platform_privacy');
  115. }
  116. /**
  117. * 关于我们
  118. */
  119. public function aboutUs()
  120. {
  121. $config_model = new ConfigModel();
  122. if (request()->isAjax()) {
  123. $title = input('title', '');//标题
  124. $content = input('content', '');//内容
  125. return $config_model->setAboutUs($title, $content);
  126. }
  127. $shop_apply_agreement = $config_model->getAboutUs();
  128. $this->assign('platform_privacy', $shop_apply_agreement);
  129. return $this->fetch('shopjoin/about_us');
  130. }
  131. }