|
@@ -279,17 +279,21 @@
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <div class="form-group">
|
|
|
|
-
|
|
|
|
- <label class="control-label col-sm-3">是否显示公告:1:显示;0:不显示</label>
|
|
|
|
-
|
|
|
|
- <div class="col-sm-9">
|
|
|
|
- <input id="data_notice" name="data[show_notice]" class="form-control"
|
|
|
|
- value="{{ $data['show_notice'] or ''}}" placeholder="">
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div class="form-group">
|
|
|
|
|
|
|
|
+ <label class="control-label col-sm-3">是否显示公告</label>
|
|
|
|
+ <div class="col-sm-9">
|
|
|
|
+ <label class="radio-inline">
|
|
|
|
+ <input type="radio" name="data[show_notice]" value="1"
|
|
|
|
+ @if(isset($data['show_notice']) && $data['show_notice'] == '1')checked="checked" @endif/>显示
|
|
|
|
+ </label>
|
|
|
|
+ <label class="radio-inline">
|
|
|
|
+ <input type="radio" name="data[show_notice]" value="0"
|
|
|
|
+ @if(isset($data['show_notice']) && $data['show_notice'] == '0')checked="checked" @endif/>不显示
|
|
|
|
+ </label>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
+ </div>
|
|
<div class="form-group">
|
|
<div class="form-group">
|
|
|
|
|
|
<label class="control-label col-sm-3">公告图标(50*50)</label>
|
|
<label class="control-label col-sm-3">公告图标(50*50)</label>
|