Navigation.php 463 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Navigation extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'pagetab' => 'string',
  10. 'title' => 'string',
  11. 'tilpic' => 'string',
  12. 'ntype' => 'tinyint',
  13. 'tilurl' => 'string',
  14. 'priority' => 'int'
  15. ];
  16. public function getNtypeTextAttr($value,$data)
  17. {
  18. $ntype = [1=>'系统链接', 2=>'网络链接'];
  19. return $ntype[$data['ntype']];
  20. }
  21. }