Gift.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Gift extends Model
  5. {
  6. // 表名
  7. protected $name = 'gift';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. ];
  17. protected static function init()
  18. {
  19. //两个毫无用处的字段,没有还不行
  20. self::afterInsert(function ($row){
  21. $data = [
  22. 'no' => $row['id'],
  23. 'price' => $row['value'],
  24. ];
  25. db('gift')->where('id',$row['id'])->update($data);
  26. });
  27. self::beforeUpdate(function ($row) {
  28. $changed = $row->getChangedData();
  29. //如果有修改密码
  30. if (isset($changed['value'])) {
  31. $row->price = $changed['value'];
  32. }
  33. });
  34. }
  35. public function getStatusList()
  36. {
  37. return ['0' =>__('Status 0'), '1' =>__('Status 1')];
  38. }
  39. public function getStatusTextAttr($value, $data)
  40. {
  41. $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
  42. $list = $this->getStatusList();
  43. return isset($list[$value]) ? $list[$value] : '';
  44. }
  45. public function gifttype()
  46. {
  47. return $this->belongsTo('Gifttype', 'type', 'id', [], 'LEFT')->setEagerlyType(0);
  48. }
  49. }