GoodsEdit.php 671 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\shopcomponent\event;
  11. use addon\shopcomponent\model\Goods;
  12. /**
  13. * 商品编辑之后
  14. */
  15. class GoodsEdit
  16. {
  17. public function handle($data)
  18. {
  19. $goods = new Goods();
  20. $goods->updateGoods(['goods_id' => $data['goods_id'], 'site_id' => $data['site_id'] ]);
  21. }
  22. }