29 lines
914 B
PHP
29 lines
914 B
PHP
{include file="public/header" /}
|
|
<div style="padding: 20px;">
|
|
<table class="layui-table">
|
|
<thead>
|
|
<tr>
|
|
<th>标题</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($data as $item): ?>
|
|
<tr>
|
|
<td>
|
|
<a href="javascript:;" onclick="selectThis('<?php echo addslashes($item['title']); ?>', '<?php echo isset($item['url']) ? addslashes($item['url']) : ''; ?>')">
|
|
<?php echo htmlspecialchars($item['title']); ?>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script>
|
|
function selectThis(title, url) {
|
|
if (window.parent && window.parent.setPushContent) {
|
|
window.parent.setPushContent(title, url || '');
|
|
}
|
|
}
|
|
</script>
|
|
{include file="public/tail" /}
|