Index.html 1.8 KB
Newer Older
D
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12
<include file="Public/Header" />

<!-- right content start  -->
<div class="content-right">
	<div class="content">
		<!-- operation start -->
        <div class="am-g">
            <button class="am-btn am-btn-secondary am-radius am-btn-xs am-icon-plus submit-ajax" data-url="{{:U('Admin/AppMiniAlipayList/Created')}}" data-view="reload" data-msg="{{:L('appmini_alipaylist_created_msg')}}"> {{:L('common_operation_created')}}</button>
        </div>
        <!-- operation end -->

		<!-- list start -->
G
gongfuxiang 已提交
13 14 15 16 17 18 19 20 21 22 23
		<table class="am-table am-table-striped am-table-hover am-text-middle m-t-10 m-l-5">
			<thead>
				<tr>
					<th>{{:L('appmini_alipaylist_name_text')}}</th>
					<th>{{:L('appmini_alipaylist_size_text')}}</th>
					<th>{{:L('common_create_time_name')}}</th>
					<th>{{:L('common_operation_name')}}</th>
				</tr>
			</thead>
			<tbody>
				<notempty name="data">
D
devil_gong 已提交
24 25 26
					<foreach name="data" item="v">
						<tr>
							<td>{{$v.name}}</td>
G
gongfuxiang 已提交
27
							<td>{{$v.size}}</td>
D
devil_gong 已提交
28 29
							<td>{{$v.time}}</td>
							<td class="view-operation">
D
devil_gong 已提交
30 31 32 33 34
								<notempty name="v.url">
									<a href="{{$v.url}}">
										<button class="am-btn am-btn-default am-btn-xs am-radius am-icon-download"> {{:L('common_operation_download')}}</button>
									</a>
								</notempty>
D
devil_gong 已提交
35 36 37 38
								<button class="am-btn am-btn-default am-btn-xs am-radius am-icon-trash-o submit-delete" data-url="{{:U('Admin/AppMiniAlipayList/Delete')}}" data-id="{{$v.name}}" data-view="reload"> {{:L('common_operation_delete')}}</button>
							</td>
						</tr>
					</foreach>
G
gongfuxiang 已提交
39 40 41 42 43 44
				</notempty>
				<empty name="data">
					<tr><td colspan="20" class="table-no">{{:L('common_not_data_tips')}}</td></tr>
				</empty>
			</tbody>
		</table>
D
devil_gong 已提交
45 46 47 48 49 50 51 52
		<!-- lis end -->
	</div>
</div>
<!-- right content end  -->

<!-- footer start -->
<include file="Public/Footer" />
<!-- footer end -->