view页面代码;其中supply,item,price是一个AR类都是一个类,item和prices是一对多关系;

            [
                'label' => '参考',
                'format' => 'html',
                'value' => function ($model){

                    $str='';
                    foreach($model->item->price as $value){
                        $str=$str.$value->supply->name.'-'.$value->price_buy.', ';
                    }
                    return $str;
                }
            ],

item AR类关键代码

 

相关文章:

  • 2022-12-23
  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-09
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案