123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <!-- header start -->
- <include file="Public/Header" />
- <!-- header end -->
- <!-- right content start -->
- <div class="content-right">
- <div class="content">
- <!-- form start -->
- <form class="am-form view-list" action="{{:U('Admin/CultureSceneBackground/Index')}}" method="POST">
- <div class="am-g">
- <input type="text" class="am-radius form-keyword" placeholder="{{:L('scene_background_so_keyword_tips')}}" name="keyword" <present name="param['keyword']"> value="{{$param.keyword}}"</present> />
- <button type="submit" class="am-btn am-btn-secondary am-btn-sm am-radius form-submit">{{:L('common_operation_query')}}</button>
- <label class="fs-12 m-l-5 c-p fw-100 more-submit">
- {{:L('common_more_screening')}}
- <input type="checkbox" name="is_more" value="1" id="is_more" <if condition="isset($param['is_more']) and $param['is_more'] eq 1">checked</if> />
- <i class="am-icon-angle-down"></i>
- </label>
- <div class="more-where <if condition="!isset($param['is_more']) or $param['is_more'] neq 1">none</if>">
- <div class="param-date param-where m-l-5">
- <input type="text" name="time_start" readonly="readonly" class="am-radius m-t-10" placeholder="{{:L('scene_background_time_start_text')}}" id="time_start" <if condition="isset($param['time_start'])">value="{{$param.time_start}}"</if>/>
- <span>~</span>
- <input type="text" readonly="readonly" class="am-radius m-t-10" placeholder="{{:L('scene_background_time_end_text')}}" name="time_end" id="time_end" <if condition="isset($param['time_end'])">value="{{$param.time_end}}"</if>/>
- </div>
- </div>
- </div>
- </form>
- <!-- form end -->
- <!-- operation start -->
- <div class="am-g m-t-15">
- <a href="{{:U('Admin/CultureSceneBackground/SaveInfo')}}" class="am-btn am-btn-secondary am-radius am-btn-xs am-icon-plus"> {{:L('common_operation_add')}}</a>
- </div>
- <!-- operation end -->
- <!-- list start -->
- <table class="am-table am-table-striped am-table-hover am-text-middle m-t-10 m-l-5">
- <thead>
- <tr>
- <th>{{:L('scene_background_id')}}</th>
- <th>{{:L('scene_background_name')}}</th>
- <th>{{:L('thumb')}}</th>
- <th>{{:L('description')}}</th>
- <th>{{:L('sale_price')}}</th>
- <th>{{:L('created_at')}}</th>
- <th>{{:L('updated_at')}}</th>
- <th>{{:L('common_operation_name')}}</th>
- </tr>
- </thead>
- <tbody>
- <if condition="!empty($list)">
- <foreach name="list" item="v">
- <tr id="data-list-{{$v.scene_background_id}}">
- <td><if condition="empty($v['scene_background_id'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.scene_background_id}}</if></td>
- <td><if condition="empty($v['scene_background_name'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.scene_background_name}}</if></td>
- <td><img style="width: 160px;height: 90px;" src="{{$v.thumb}}" onerror="this.src='__PUBLIC__/Common/images/imgerror.png';this.onerror=null"></td>
- <td class="am-hide-sm-only">{{$v.description}}</td>
- <td class="am-hide-sm-only">{{$v.sale_price}}</td>
- <td class="am-hide-sm-only">{{$v.created_at}}</td>
- <td class="am-hide-sm-only">{{$v.updated_at}}</td>
- <td class="view-operation">
- <a href="{{:U('Admin/CultureSceneBackground/SaveInfo', array('scene_background_id'=>$v['scene_background_id']))}}">
- <button class="am-btn am-btn-default am-btn-xs am-radius am-icon-edit" data-am-popover="{content: '{{:L('common_operation_edit')}}', trigger: 'hover focus'}"></button>
- </a>
- <button class="am-btn am-btn-default am-btn-xs am-radius am-icon-trash-o submit-delete" data-url="{{:U('Admin/CultureSceneBackground/Delete')}}" data-am-popover="{content: '{{:L('common_operation_delete')}}', trigger: 'hover focus'}" data-id="{{$v.scene_background_id}}"></button>
- </td>
- </tr>
- </foreach>
- <else />
- <tr><td colspan="10" class="table-no">{{:L('common_not_data_tips')}}</td></tr>
- </if>
- </tbody>
- </table>
- <!-- list end -->
- <!-- page start -->
- <if condition="!empty($list)">
- {{$page_html}}
- </if>
- <!-- page end -->
- </div>
- </div>
- <!-- right content end -->
-
- <!-- footer start -->
- <include file="Public/Footer" />
- <!-- footer end -->
|