You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
57 lines
1.8 KiB
5 years ago
|
<?php
|
||
|
use \common\libs\MyLib;
|
||
|
?>
|
||
|
<script type="text/javascript" language="javascript" src="/js/jquery-1.8.3.js"></script>
|
||
|
<script type="text/javascript" language="javascript" src="/js/ajax.js"></script>
|
||
|
<script type="text/javascript" language="javascript" src="/js/func.js"></script>
|
||
|
<script type="text/javascript" language="javascript">
|
||
|
//编辑
|
||
|
function edit(id) {
|
||
|
window.location.href = '/duanxin/edit?id=' + id;
|
||
|
}
|
||
|
//删除
|
||
|
// function del(id) {
|
||
|
// if(confirm('是否确认删除?')) {
|
||
|
// $.post('/duanxin/delete',{id:id},function(obj){
|
||
|
// alert(obj.msg);
|
||
|
// if(obj.success) {
|
||
|
// window.location.reload();
|
||
|
// }
|
||
|
// },'json');
|
||
|
// }
|
||
|
// }
|
||
|
$(function(){
|
||
|
$("#search-btn").click(function(){
|
||
|
var params = $('#searchForm').serialize();
|
||
|
window.location.href = "/duanxin/index?" + params;
|
||
|
});
|
||
|
$('#add-btn').click(function(){
|
||
|
edit(0);
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<table width="98%" border="0" align="center" cellpadding="2" cellspacing="1" class="table">
|
||
|
<tr>
|
||
|
<td width="50" align="center" align="center" class="bg_tr" nowrap>排序</td>
|
||
|
<td width="250" align="center" align="center" class="bg_tr">内容</td>
|
||
|
<td width="30" align="center" class="bg_tr">操作</td>
|
||
|
</tr>
|
||
|
<?php
|
||
|
foreach($items as $index => $item) {
|
||
|
?>
|
||
|
<tr onMouseOver=overColor(this) onMouseOut=outColor(this)>
|
||
|
<td align="center" class="td_bg" nowrap ><?=$index+1?></td>
|
||
|
<td align="left" class="td_bg" nowrap ><?=$item->content?></td>
|
||
|
|
||
|
|
||
|
<td align="center" class="td_bg" nowrap>
|
||
|
[<a href="javascript:void(0);" onclick="edit(<?=$item->id?>)">修改</a>]
|
||
|
|
||
|
</td>
|
||
|
</tr>
|
||
|
<?php
|
||
|
}
|
||
|
?>
|
||
|
</table>
|