12345678910111213141516171819202122232425262728293031323334 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\VipOrder */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Vip Orders'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'user_id',
- 'out_trade_no',
- 'order_no',
- 'total_amount',
- 'pay_amount',
- 'pay_time:datetime',
- 'is_pay',
- 'remark',
- 'created_at',
- 'updated_at',
- 'status',
- 'detail',
- ],
- ]) ?>
- </div>
- </div>
|