128 lines
5.9 KiB
HTML
Executable File
128 lines
5.9 KiB
HTML
Executable File
<include file="Public/Header" />
|
|
|
|
<!-- right content start -->
|
|
<div class="content-right">
|
|
<div class="content">
|
|
<!-- form start -->
|
|
<form class="am-form view-list" action="{{:U('Admin/PayLog/Index')}}" method="POST">
|
|
<div class="am-g">
|
|
<input type="text" class="am-radius form-keyword" placeholder="{{:L('paylog_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>">
|
|
<select name="gender" class="am-radius c-p m-t-10 m-l-5 param-where">
|
|
<option value="-1">{{:L('common_view_gender_name')}}</option>
|
|
<foreach name="common_gender_list" item="v">
|
|
<option value="{{$v.id}}" <if condition="isset($param['gender']) and $param['gender'] eq $v['id']">selected</if>>{{$v.name}}</option>
|
|
</foreach>
|
|
</select>
|
|
<select name="pay_type" class="am-radius c-p m-t-10 m-l-5 param-where">
|
|
<option value="">{{:L('paylog_pay_type_name')}}</option>
|
|
<foreach name="common_pay_type_list" item="v">
|
|
<if condition="!empty($v['id']) && !empty($v['name'])">
|
|
<option value="{{$v.id}}" <if condition="isset($param['pay_type']) and $param['pay_type'] eq $v['id']">selected</if>>{{$v.name}}</option>
|
|
</if>
|
|
</foreach>
|
|
</select>
|
|
<select name="business_type" class="am-radius c-p m-t-10 m-l-5 param-where">
|
|
<option value="-1">{{:L('paylog_business_type_name')}}</option>
|
|
<foreach name="common_business_type_list" item="v">
|
|
<option value="{{$v.id}}" <if condition="isset($param['business_type']) and $param['business_type'] eq $v['id']">selected</if>>{{$v.name}}</option>
|
|
</foreach>
|
|
</select>
|
|
<div class="param-date param-where m-l-5">
|
|
<input type="text" name="time_start" class="Wdate am-radius m-t-10" placeholder="{{:L('common_time_start_name')}}" onclick="WdatePicker({firstDayOfWeek:1,dateFmt:'yyyy-MM-dd HH:mm:ss'})" <if condition="isset($param['time_start'])">value="{{$param.time_start}}"</if>/>
|
|
<span>~</span>
|
|
<input type="text" class="Wdate am-radius m-t-10" placeholder="{{:L('common_time_end_name')}}" name="time_end" onclick="WdatePicker({firstDayOfWeek:1,dateFmt:'yyyy-MM-dd HH:mm:ss'})" <if condition="isset($param['time_end'])">value="{{$param.time_end}}"</if>/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<!-- form 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('paylog_user_name')}}</th>
|
|
<th>{{:L('paylog_pay_type_name')}}</th>
|
|
<th>{{:L('paylog_business_type_name')}}</th>
|
|
<th class="am-hide-sm-only">{{:L('paylog_order_id_name')}}</th>
|
|
<th class="am-hide-sm-only">{{:L('paylog_trade_no_name')}}</th>
|
|
<th class="am-hide-sm-only">{{:L('paylog_platform_buyer_user_name')}}</th>
|
|
<th>{{:L('paylog_pay_price_name')}}</th>
|
|
<th>{{:L('paylog_total_price_name')}}</th>
|
|
<th class="am-hide-sm-only">{{:L('paylog_subject_name')}}</th>
|
|
<th class="am-hide-sm-only">{{:L('paylog_add_time_name')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<if condition="!empty($list)">
|
|
<foreach name="list" item="v">
|
|
<tr id="data-list-{{$v.id}}">
|
|
<td>
|
|
<if condition="!empty($v['username'])">
|
|
{{$v.username}}
|
|
<if condition="!empty($v['nickname'])">
|
|
({{$v.nickname}})
|
|
</if>
|
|
<br />
|
|
</if>
|
|
<if condition="!empty($v['mobile'])">
|
|
{{$v.mobile}}<br />
|
|
</if>
|
|
{{$v.gender_text}}
|
|
</td>
|
|
<td>
|
|
<if condition="empty($v['payment_name'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.payment_name}}</if>
|
|
</td>
|
|
<td>
|
|
<if condition="empty($v['business_type_text'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.business_type_text}}</if>
|
|
</td>
|
|
<td class="am-hide-sm-only">
|
|
<if condition="empty($v['order_id'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.order_id}}</if>
|
|
</td>
|
|
<td class="am-hide-sm-only">
|
|
<if condition="empty($v['trade_no'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.trade_no}}</if>
|
|
</td>
|
|
<td class="am-hide-sm-only">
|
|
<if condition="empty($v['buyer_user'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.buyer_user}}</if>
|
|
</td>
|
|
<td>
|
|
<if condition="empty($v['pay_price'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.pay_price}}</if>
|
|
</td>
|
|
<td>
|
|
<if condition="empty($v['total_price'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.total_price}}</if>
|
|
</td>
|
|
<td class="am-hide-sm-only">
|
|
<if condition="empty($v['subject'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.subject}}</if>
|
|
</td>
|
|
<td class="am-hide-sm-only">
|
|
<if condition="empty($v['add_time'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.add_time}}</if>
|
|
</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 --> |