<?= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
'time',
'location',
array(
'label' => '照片',
'value' =>'uploads/'.$model->photo,
'format' => 'image',
),
'car_id',
'admin_user',
'status',
'memo',
],
]) ?>
请问如何设定图片宽度?
源码里有范例