Unit.php 446 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Product\Lib;
  3. use Dever;
  4. class Unit
  5. {
  6. # 添加新单位
  7. public function add_api()
  8. {
  9. $where['name'] = Dever::input('value');
  10. if (!$where['name']) {
  11. Dever::alert('请输入单位名称');
  12. }
  13. $info = Dever::db('product/unit')->find($where);
  14. if (!$info) {
  15. $info['id'] = Dever::db('product/unit')->insert($where);
  16. }
  17. return $info;
  18. }
  19. }