test_service d3170b4d1c 1
2023-12-01 15:43:29 +08:00

35 lines
1.5 KiB
HTML
Executable File

<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>