index.php 973 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. use yii\widgets\ActiveForm;
  3. use common\enums\WhetherEnum;
  4. $this->title = '站点维护';
  5. $this->params['breadcrumbs'][] = ['label' => $this->title];
  6. ?>
  7. <div class="row">
  8. <div class="col-lg-12">
  9. <div class="box">
  10. <div class="box-header with-border">
  11. <h3 class="box-title"><?= $this->title ?></h3>
  12. </div>
  13. <?php $form = ActiveForm::begin(); ?>
  14. <div class="box-body">
  15. <div class="col-12 col-xs-12">
  16. <?= $form->field($model, 'site_status')->radioList(WhetherEnum::getOpenMap()); ?>
  17. <?= $form->field($model, 'site_close_explain')->textarea(); ?>
  18. <div class="col-sm-12 text-center">
  19. <button class="btn btn-primary m-t-lg" type="submit">保存</button>
  20. </div>
  21. </div>
  22. </div>
  23. <?php ActiveForm::end(); ?>
  24. </div>
  25. </div>
  26. </div>
粤ICP备19079148号