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
440 B

<?php
use yii\bootstrap4\Html;
/* @var $this yii\web\View */
/* @var $model backend\models\ars\TakingSite */
$this->title = '创建 Taking Site';
$this->params['breadcrumbs'][] = ['label' => 'Taking Sites', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="taking-site-create">
<?= $this->render('_form', [
'model' => $model,
'cityList'=>[],
'areaList'=>[]
]) ?>
</div>