view.php 803 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\VipOrder */
  6. $this->title = $model->id;
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Vip Orders'), 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="box box-success">
  11. <div class="box-body">
  12. <?= DetailView::widget([
  13. 'model' => $model,
  14. 'attributes' => [
  15. 'id',
  16. 'user_id',
  17. 'out_trade_no',
  18. 'order_no',
  19. 'total_amount',
  20. 'pay_amount',
  21. 'pay_time:datetime',
  22. 'is_pay',
  23. 'remark',
  24. 'created_at',
  25. 'updated_at',
  26. 'status',
  27. 'detail',
  28. ],
  29. ]) ?>
  30. </div>
  31. </div>