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
20 lines
437 B
<?php
|
|
|
|
use yii\bootstrap4\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\models\ars\TakingSite */
|
|
|
|
$this->title = '创建自提点';
|
|
$this->params['breadcrumbs'][] = ['label' => '上门自提', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="taking-site-create">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
'cityList'=>[],
|
|
'areaList'=>[]
|
|
]) ?>
|
|
|
|
</div>
|