You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1003 B

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\ars\ExpressTemplate */
  6. $this->title = $model->name;
  7. $this->params['breadcrumbs'][] = ['label' => 'Express Templates', 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. \yii\web\YiiAsset::register($this);
  10. ?>
  11. <div class="express-template-view">
  12. <p>
  13. <?= Html::a('返回列表', ['index'], ['class' => 'btn btn-success']) ?>
  14. </p>
  15. <?= DetailView::widget([
  16. 'model' => $model,
  17. 'attributes' => [
  18. 'id',
  19. 'name',
  20. 'province:ntext',
  21. 'city:ntext',
  22. 'area:ntext',
  23. 'billing_type',
  24. 'extra_weight_type',
  25. 'exemption_type',
  26. 'basic_price',
  27. 'extra_price',
  28. 'exemption_amount',
  29. 'support_taking',
  30. 'taking_site:ntext',
  31. 'updated_at',
  32. 'created_at',
  33. ],
  34. ]) ?>
  35. </div>