35 lines
1.5 KiB
HTML
35 lines
1.5 KiB
HTML
<script id="tpl-fallback" type="text/template">
|
|
|
|
|
|
<div class="am-padding-xs am-padding-top-sm">
|
|
|
|
|
|
<div class="am-u-sm-12">
|
|
|
|
|
|
<table width="100%" class="am-table am-table-hover tpl-table-black">
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<th>选择版本</th>
|
|
|
|
|
|
<th>更新原因</th>
|
|
|
|
|
|
<th>更新时间</th>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
{{ if (list.length>0) }}
|
|
|
|
|
|
{{each list}}
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="am-text-middle">
|
|
|
|
|
|
<label class="am-radio-inline">
|
|
|
|
|
|
<input type="radio" name="data[app_version]" value="{{ $value.app_version }}" {{ $index==0?'checked':'' }} data-am-ucheck>
|
|
|
|
|
|
{{ $value.user_version }}
|
|
|
|
|
|
</label>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<td class="am-text-middle">{{ $value.user_desc }}</td>
|
|
|
|
|
|
<td class="am-text-middle">{{ $value.commit_time }}</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
{{/each}}
|
|
|
|
|
|
{{ else /}}
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td colspan="3" class="am-text-center">暂无版本记录</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
{{ /if }}
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</script> |