112 lines
5.0 KiB
HTML
112 lines
5.0 KiB
HTML
{include file="public/header" /}
|
|
|
|
|
|
<div class="page">
|
|
<div class="fixed-bar">
|
|
<div class="item-title">
|
|
<div class="subject">
|
|
<h3>{$Think.lang.ds_promotion_mansong}</h3>
|
|
<h5></h5>
|
|
</div>
|
|
{include file="public/admin_items" /}
|
|
</div>
|
|
</div>
|
|
|
|
<form method="get" name="formSearch">
|
|
<div class="ds-search-form">
|
|
<dl>
|
|
<dt>{$Think.lang.mansong_name}</dt>
|
|
<dd><input type="text" value="{$Request.get.mansong_name}" name="mansong_name" id="mansong_name" class="txt" style="width:100px;"></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt>{$Think.lang.ds_state}</dt>
|
|
<dd>
|
|
<select name="state">
|
|
{notempty name="mansong_state_array"}
|
|
{foreach name="mansong_state_array" item="val"}
|
|
<option value="{$key}" {eq name="key" value="$Request.get.state"}selected{/eq}>{$val}</option>
|
|
{/foreach}
|
|
{/notempty}
|
|
</select>
|
|
</dd>
|
|
</dl>
|
|
<div class="btn_group">
|
|
<a href="javascript:document.formSearch.submit();" class="btn " title="{$Think.lang.ds_query}">{$Think.lang.ds_query}</a>
|
|
<a href="{:url('Promotionmansong/index')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<!-- 帮助 -->
|
|
<div class="explanation" id="explanation">
|
|
<div class="title" id="checkZoom">
|
|
<h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
|
|
<span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
|
|
</div>
|
|
<ul>
|
|
<li>{$Think.lang.mansong_list_help1}</li>
|
|
<li>{$Think.lang.mansong_list_help2}</li>
|
|
<li>{$Think.lang.mansong_list_help3}</li>
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
<!-- 列表 -->
|
|
<table class="ds-default-table">
|
|
<thead>
|
|
<tr class="thead">
|
|
<th class="w24"></th>
|
|
<th class="align-left"><span>{$Think.lang.mansong_name}</span></th>
|
|
<th class="align-center" width="100"><span>{$Think.lang.start_time}</span></th>
|
|
<th class="align-center" width="100"><span>{$Think.lang.end_time}</span></th>
|
|
<th class="align-center" width="80"><span>{$Think.lang.ds_state}</span></th>
|
|
<th class="align-center" width="200"><span>{$Think.lang.ds_handle}</span></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="treet1">
|
|
{notempty name="mansong_list"}
|
|
{foreach name="mansong_list" item="val"}
|
|
<tr class="hover">
|
|
<td><input type="checkbox" class="checkitem" name="mansong_id[]" value="{$val.mansong_id}" /></td>
|
|
<td class="align-left"><span>{$val.mansong_name}</span></td>
|
|
<td class="align-center"><span>{$val.mansong_starttime|date="Y-m-d"}</span></td>
|
|
<td class="align-center"><span>{$val.mansong_endtime|date="Y-m-d"}</span></td>
|
|
<td class="align-center"><span>{$val.mansong_state_text}</span></td>
|
|
|
|
<td class="nowrap align-center">
|
|
<!-- 详细按钮 -->
|
|
<a href="javascript:dsLayerOpen('{:url('Promotionmansong/mansong_detail',['mansong_id'=>$val.mansong_id])}','{$val.mansong_name}-详细')" class="dsui-btn-view"><i class="iconfont"></i>{$Think.lang.ds_detail}</a>
|
|
|
|
{if $val.editable}
|
|
<a href="javascript:dsLayerConfirm('{:url('Promotionmansong/mansong_cancel',['mansong_id'=>$val.mansong_id])}','{$Think.lang.ds_ensure_cancel}')" class="dsui-btn-edit"><i class="iconfont"></i>{$Think.lang.ds_cancel}</a>
|
|
{/if}
|
|
<a href="javascript:submit_delete({$val.mansong_id})" class="dsui-btn-del"><i class="iconfont"></i>{$Think.lang.ds_del}</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
{else}
|
|
<tr class="no_data">
|
|
<td colspan="16">{$Think.lang.ds_no_record}</td>
|
|
</tr>
|
|
{/notempty}
|
|
</tbody>
|
|
<tfoot>
|
|
{notempty name="mansong_list"}
|
|
<tr class="tfoot">
|
|
<td><input type="checkbox" class="checkall" id="checkallBottom"></td>
|
|
<td colspan="16"><label for="checkallBottom">{$Think.lang.ds_select_all}</label>
|
|
<a href="JavaScript:void(0);" class="btn btn-small" onclick="submit_delete_batch()"><span>{$Think.lang.ds_del}</span></a>
|
|
</td>
|
|
</tr>
|
|
{/notempty}
|
|
</tfoot>
|
|
</table>
|
|
{$show_page|raw}
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
function submit_delete(ids_str) {
|
|
_uri = ADMINSITEURL + "/Promotionmansong/mansong_del.html?mansong_id=" + ids_str;
|
|
dsLayerConfirm(_uri, '{$Think.lang.ds_ensure_del}');
|
|
}
|
|
</script> |