83 lines
4.4 KiB
HTML
Executable File
83 lines
4.4 KiB
HTML
Executable File
<include file="Public/Header" />
|
|
|
|
<!-- right content start -->
|
|
<div class="content-right">
|
|
<div class="content">
|
|
<!-- back nav start -->
|
|
<legend>
|
|
<span class="fs-16">{{:L('alipay_life_message_detail_text')}}</span>
|
|
<a href="{{:U('Admin/AlipayLifeMessage/Index')}}" class="fr fs-14 m-t-5 am-icon-mail-reply"> {{:L('common_operation_back')}}</a>
|
|
</legend>
|
|
<!-- back nav end -->
|
|
|
|
<!-- list start -->
|
|
<table class="am-table am-table-striped am-table-hover am-text-middle m-t-10">
|
|
<thead>
|
|
<tr>
|
|
<th>{{:L('alipay_life_message_life_text')}}</th>
|
|
<th>{{:L('alipay_life_message_user_text')}}</th>
|
|
<th>{{:L('common_view_status_title')}}</th>
|
|
<th>{{:L('alipay_life_message_send_time_text')}}</th>
|
|
<th>{{:L('alipay_life_message_return_msg_text')}}</th>
|
|
<th>{{:L('common_more_name')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<if condition="!empty($list)">
|
|
<foreach name="list" item="v">
|
|
<tr id="data-list-{{$v.id}}">
|
|
<td>{{$v.alipay_life_name}}</td>
|
|
<td>{{$v.alipay_openid}}</td>
|
|
<td>{{$v.status_name}}</td>
|
|
<td>{{$v.send_time}}</td>
|
|
<td>{{$v.return_msg}}</td>
|
|
<td>
|
|
<span class="am-icon-caret-down c-p" data-am-modal="{target: '#my-popup{{$v.id}}'}"> {{:L('common_see_more_name')}}</span>
|
|
<div class="am-popup am-radius" id="my-popup{{$v.id}}">
|
|
<div class="am-popup-inner">
|
|
<div class="am-popup-hd">
|
|
<h4 class="am-popup-title">{{:L('common_detail_content')}}</h4>
|
|
<span data-am-modal-close class="am-close">×</span>
|
|
</div>
|
|
<div class="am-popup-bd">
|
|
<dl class="dl-content">
|
|
<dt>{{:L('alipay_life_message_life_text')}}</dt>
|
|
<dd><if condition="empty($v['alipay_life_name'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.alipay_life_name}}</if></dd>
|
|
|
|
<dt>{{:L('alipay_life_message_user_text')}}</dt>
|
|
<dd><if condition="empty($v['alipay_openid'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.alipay_openid}}</if></dd>
|
|
|
|
<dt>{{:L('common_view_status_title')}}</dt>
|
|
<dd><if condition="empty($v['status_name'])"><span class="cr-ddd">{{:L('common_on_fill_in_the_text')}}</span><else />{{$v.status_name}}</if></dd>
|
|
|
|
<dt>{{:L('alipay_life_message_send_time_text')}}</dt>
|
|
<dd>{{$v.send_time}}</dd>
|
|
|
|
<dt>{{:L('alipay_life_message_return_msg_text')}}</dt>
|
|
<dd>{{$v.return_msg}}</dd>
|
|
|
|
<dt>{{:L('common_create_time_name')}}</dt>
|
|
<dd>{{$v.add_time}}</dd>
|
|
|
|
<dt>{{:L('common_upd_time_name')}}</dt>
|
|
<dd>{{$v.upd_time}}</dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</foreach>
|
|
<else />
|
|
<tr><td colspan="20" class="table-no">{{:L('common_not_data_tips')}}</td></tr>
|
|
</if>
|
|
</tbody>
|
|
</table>
|
|
<!-- list end -->
|
|
</div>
|
|
</div>
|
|
<!-- right content end -->
|
|
|
|
<!-- footer start -->
|
|
<include file="Public/Footer" />
|
|
<!-- footer end --> |