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.

20 lines
437 B

  1. <?php
  2. use yii\bootstrap4\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model backend\models\ars\TakingSite */
  5. $this->title = '创建自提点';
  6. $this->params['breadcrumbs'][] = ['label' => '上门自提', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="taking-site-create">
  10. <?= $this->render('_form', [
  11. 'model' => $model,
  12. 'cityList'=>[],
  13. 'areaList'=>[]
  14. ]) ?>
  15. </div>