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.

22 lines
537 B

  1. <?php
  2. use yii\bootstrap4\Html;
  3. use yii\bootstrap4\ActiveForm;
  4. use kartik\tabs\TabsX;
  5. /* @var $this yii\web\View */
  6. /* @var $model backend\modules\shop\models\ars\ExpressTemplate */
  7. $this->title = '创建运费模板';
  8. $this->params['breadcrumbs'][] = ['label' => '运费模板', 'url' => ['index']];
  9. $this->params['breadcrumbs'][] = $this->title;
  10. Yii::$app->params['bsVersion'] = '4.x';
  11. ?>
  12. <div class="express-template-create">
  13. <?= $this->render('_form', [
  14. 'model' => $model,
  15. 'isCreate' => true
  16. ]) ?>
  17. </div>