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.
46 lines
1.3 KiB
46 lines
1.3 KiB
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\bootstrap4\ActiveForm;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\ars\ExpressTemplate */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
|
|
<div class="express-template-form">
|
|
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
<?= $form->field($model, 'name')->textInput(['maxlength' => true]) ?>
|
|
|
|
<?= $form->field($model, 'province')->textarea(['rows' => 6]) ?>
|
|
|
|
<?= $form->field($model, 'city')->textarea(['rows' => 6]) ?>
|
|
|
|
<?= $form->field($model, 'area')->textarea(['rows' => 6]) ?>
|
|
|
|
<?= $form->field($model, 'billing_type')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'extra_weight_type')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'exemption_type')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'basic_price')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'extra_price')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'exemption_amount')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'support_taking')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'taking_site')->textarea(['rows' => 6]) ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton('保存', ['class' => 'btn btn-success']) ?>
|
|
<?= Html::a('返回', ['index'], ['class' => 'btn btn-info']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|