ChartModel.php 891 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\admin\model;
  3. use think\Controller;
  4. use think\Db;
  5. use think\Model;
  6. class ChartModel extends Model
  7. {
  8. protected $name = 'chart';
  9. // 开启自动写入时间戳字段
  10. protected $autoWriteTimestamp = true;
  11. public function index()
  12. {
  13. return $data=$this->select();
  14. }
  15. public function add($data)
  16. {
  17. $add=$this->allowField(true)->save($data);
  18. if($add){
  19. return json(["code"=>200,"msg"=>"添加成功"]);
  20. }else{
  21. return json(["code"=>100,"msg"=>"添加失败"]);
  22. }
  23. }
  24. public function edit($data)
  25. {
  26. //echo $data["cid"];
  27. $edit=$this->allowField(true)->save($data,['cid'=>$data['cid']]);
  28. if($edit){
  29. return json(["code"=>200,"msg"=>"修改成功"]);
  30. }else{
  31. return json(["code"=>100,"msg"=>"修改失败"]);
  32. }
  33. }
  34. }