| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | <?phpnamespace app\admin\model;use think\Model;class Home extends Model{            // 表名    protected $table = 'home';        // 自动写入时间戳字段    protected $autoWriteTimestamp = false;    // 定义时间戳字段名    protected $createTime = false;    protected $updateTime = false;    protected $deleteTime = false;    // 追加属性    protected $append = [        'category_text',        'type_text'    ];            public function getCategoryList()    {        return ['1' => __('Category 1'), '2' => __('Category 2')];    }    public function getTypeList()    {        return ['0' => __('Type 0'), '1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3')];    }    public function getCategoryTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['category']) ? $data['category'] : '');        $list = $this->getCategoryList();        return isset($list[$value]) ? $list[$value] : '';    }    public function getTypeTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');        $list = $this->getTypeList();        return isset($list[$value]) ? $list[$value] : '';    }}
 |