1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace app\common\model;
- use think\Model;
- class Navigation extends Model
- {
- // 表名
- protected $name = 'shop_navigation';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- ];
- public function getImageAttr($value)
- {
- if (strpos($value, '/') === false) {
- return $value;
- } else {
- return cdnurl($value, true);
- }
- }
- public static function tableList()
- {
- return self::where('switch', 1)->order('weigh desc')->select();
- }
- }
|