123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\WechatUser */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Wechat Users'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?= $this->render('../site/view_menu', [ 'model' => $model]) ?><div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'openid',
- 'unionid',
- 'tel',
- 'nickName',
- 'avatarUrl:url',
- 'country',
- 'province',
- 'city',
- 'language',
- 'signature',
- 'created_at:datetime',
- 'updated_at:datetime',
- 'status',
- 'gender',
- ],
- ]) ?>
- </div>
- </div>
|