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.

39 lines
1.3 KiB

  1. <?php
  2. use yii\helpers\Html;
  3. use kartik\form\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model backend\modules\shop\models\ars\RefundLog */
  6. $this->title = '退款订单:' . $model->order_id;
  7. $this->params['breadcrumbs'][] = ['label' => '订单列表', 'url' => ['index']];
  8. Yii::$app->params['bsVersion'] = '4.x';
  9. ?>
  10. <div class="refund-log-form">
  11. <?php $form = ActiveForm::begin(); ?>
  12. <?= $form->field($model, 'wx_refund_id')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
  13. <?= $form->field($model, 'reason')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
  14. <?= $form->field($model, 'order_amount')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
  15. <?= $form->field($model, 'refund_amount')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
  16. <?= $form->field($model, 'refunded_amount')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
  17. <?= $form->field($model, 'refund_account')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
  18. <?= $form->field($model, 'type')->textInput(['maxlength' => true, 'readonly' => 'true']) ?>
  19. <div class="form-group">
  20. <?= Html::submitButton('保存', ['class' => 'btn btn-success']) ?>
  21. <?= Html::a('返回', ['index'], ['class' => 'btn btn-info']) ?>
  22. </div>
  23. <?php ActiveForm::end(); ?>
  24. </div>