123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {include file="public/header" /}
- <div class="page">
- <div class="fixed-bar">
- <div class="item-title">
- <div class="subject">
- <h3>{$Think.lang.refund_manage}</h3>
- </div>
- {include file="public/admin_items" /}
- </div>
- </div>
- <form method="get">
- <div class="ds-search-form">
- <dl>
- <dt>
- <select name="type">
- <option value="order_sn" {if condition="$Request.param.type eq 'order_sn'"}selected{/if}>{$Think.lang.ds_order_sn}</option>
- <option value="refund_sn" {if condition="$Request.param.type eq 'refund_sn'"}selected{/if}>{$Think.lang.ds_refund_sn}</option>
- <option value="store_name" {if condition="$Request.param.type eq 'store_name'"}selected{/if}>{$Think.lang.ds_store_name}</option>
- <option value="goods_name" {if condition="$Request.param.type eq 'goods_name'"}selected{/if}>{$Think.lang.ds_goods_name}</option>
- <option value="buyer_name" {if condition="$Request.param.type eq 'buyer_name'"}selected{/if}>{$Think.lang.ds_buyer_name}</option>
- </select>
- </dt>
- <dd><input type="text" class="text" name="key" value="{$Request.param.key}" /></dd>
- </dl>
- <dl>
- <dt>{$Think.lang.refund_buyer_add_time}</dt>
- <dd>
- <input class="txt date" type="text" value="{$Request.param.add_time_from}" id="add_time_from" name="add_time_from">
- ~
- <input class="txt date" type="text" value="{$Request.param.add_time_to}" id="add_time_to" name="add_time_to"/>
- </dd>
- </dl>
- <div class="btn_group">
- <input type="submit" class="btn" value="{$Think.lang.ds_search}">
- <a href="{:url('Refund/refund_all')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
- <a class="btn" href="javascript:export_xls('{:url('Refund/export_step1')}')"><span>{$Think.lang.ds_export}Excel</span></a>
- </div>
- </div>
- </form>
- <table class="ds-default-table">
- <thead>
- <tr class="thead">
- <th>{$Think.lang.ds_order_sn}</th>
- <th>{$Think.lang.ds_refund_sn}</th>
- <th>{$Think.lang.ds_store_name}</th>
- <th>{$Think.lang.ds_goods_name}</th>
- <th>{$Think.lang.ds_buyer_name}</th>
- <th class="align-center">{$Think.lang.refund_buyer_add_time}</th>
- <th class="align-center">{$Think.lang.refund_order_refund}</th>
- <th class="align-center">{$Think.lang.refund_seller_state}</th>
- <th class="align-center">{$Think.lang.refund_admin_state}</th>
- <th class="align-center">{$Think.lang.ds_handle}</th>
- </tr>
- </thead>
- {notempty name="refund_list"}
- <tbody>
- {foreach name="refund_list" item="val" key="key" }
- <tr class="bd-line" >
- <td>{$val.order_sn}</td>
- <td>{$val.refund_sn}</td>
- <td>{$val.store_name}</td>
- <td>{$val.goods_name}</td>
- <td>{$val.buyer_name}</td>
- <td class="align-center">{$val.add_time|date="Y-m-d H:i:s"}</td>
- <td class="align-center">{$val.refund_amount}</td>
- <td class="align-center"><?php echo $state_array[$val['seller_state']];?></td>
- <td class="align-center"><?php echo $val['seller_state']==2 ? $admin_array[$val['refund_state']]:lang('refund_none'); ?></td>
- <td class="align-center">
- <a href="javascript:dsLayerOpen('{:url('Refund/view',['refund_id'=>$val.refund_id])}','{$Think.lang.ds_view}-{$val.order_sn}')" class="dsui-btn-view"><i class="iconfont"></i>{$Think.lang.ds_view}</a>
- </td>
- </tr>
- {/foreach}
- </tbody>
- {else/}
- <tbody>
- <tr class="no_data">
- <td colspan="20">{$Think.lang.no_record}</td>
- </tr>
- </tbody>
- {/notempty}
- </table>
- {$show_page|raw}
- </div>
- <script type="text/javascript">
- $(function() {
- $('#add_time_from').datepicker({dateFormat: 'yy-mm-dd'});
- $('#add_time_to').datepicker({dateFormat: 'yy-mm-dd'});
- });
- </script>
|