BiddingConfig.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use app\wechat\service\WechatService;
  16. use library\Controller;
  17. use library\File;
  18. use think\Db;
  19. /**
  20. * 招标设置
  21. * Class Config
  22. * @package app\wechat\controller
  23. */
  24. class BiddingConfig extends Controller
  25. {
  26. /**
  27. * 微信支付配置
  28. * @auth true
  29. * @menu true
  30. * @throws \OSS\Core\OssException
  31. * @throws \think\Exception
  32. * @throws \think\exception\PDOException
  33. */
  34. public function info()
  35. {
  36. $this->applyCsrfToken();
  37. if ($this->request->isGet()) {
  38. $this->title = '招标配置';
  39. $price = Db::name('bidding_config')->where('id',1)->find();
  40. $xiexi = Db::name('bidding_config')->where('id',2)->find();
  41. $this->xieyi = $xiexi;
  42. $this->price = $price;
  43. $this->fetch();
  44. } else {
  45. $post = $this->request->post();
  46. Db::name('bidding_config')->where('id',1)->update(['value'=>$post['price']]);
  47. Db::name('bidding_config')->where('id',2)->update(['value'=>$post['xieyi']]);
  48. $this->success('配置成功!');
  49. }
  50. }
  51. }