AdvertPos.php 275 B

123456789101112
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class AdvertPos extends Model{
  5. public function getTypeTextAttr($value,$data){
  6. $text = ['1'=>'图片','2'=>'视频'];
  7. $type = $data['type'];
  8. return isset($text[$type])?$text[$type]:$type;
  9. }
  10. }