1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {include file="public/header" /}
- <div class="page">
- <div class="fixed-bar">
- <div class="item-title">
- <div class="subject">
- <h3>{$Think.lang.ds_promotion_wholesale}</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.ds_store_name}</dt>
- <dd><input type="text" value="{$Request.get.store_name}" name="store_name" id="store_name" class="txt" style="width:100px;"></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('Promotionwholesale/wholesale_quota')}" 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.wholesale_quota_list_help1}</li>
- </ul>
- </div>
-
-
- <!-- 列表 -->
- <form id="list_form" method="post">
- <input type="hidden" id="object_id" name="object_id" />
- <table class="ds-default-table">
- <thead>
- <tr class="thead">
- <th class="w24"></th>
- <th class="align-left"><span>{$Think.lang.ds_store_name}</span></th>
- <th class="align-center"><span>{$Think.lang.ds_start_time}</span></th>
- <th class="align-center"><span>{$Think.lang.ds_end_time}</span></th>
- </tr>
- </thead>
- <tbody id="treet1">
- {notempty name="wholesalequota_list"}
- {foreach name="wholesalequota_list" item="val"}
- <tr class="hover">
- <td></td>
- <td class="align-left"><a href="{:url('home/Store/index',['store_id'=>$val.store_id])}" ><span>{$val.store_name}</span></a></td>
- <td class="align-center"><span>{$val.wholesalequota_starttime|date="Y-m-d"}</span></td>
- <td class="align-center"><span>{$val.wholesalequota_endtime|date="Y-m-d"}</span></td>
- </tr>
- {/foreach}
- {else /}
- <tr class="no_data">
- <td colspan="16">{$Think.lang.ds_no_record}</td>
- </tr>
- {/notempty}
- </tbody>
- </table>
- {$show_page|raw}
- </form>
- </div>
|