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.
70 lines
3.2 KiB
70 lines
3.2 KiB
<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>
|
|
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
|
|
<form id="searchForm" method="GET">
|
|
<tr>
|
|
<td class="td_bg">
|
|
<label for="pid">分组:</label>
|
|
<select name="type" id="group_id" onchange="getSons($(this).val())">
|
|
<option value="0">全部</option>
|
|
<?php if($groups): ?>
|
|
<?php foreach($groups as $group): ?>
|
|
<option value="<?= $group->id ?>" <?= isset($type) ? ($group->id === $type ? 'selected' : '') : '' ?>><?= $group->name ?></option>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</select>
|
|
<label for="id">项目名:</label>
|
|
<input type="text" size="10" name="name" value="<?= isset($name) ? $name : '' ?>">
|
|
<input type="submit" class="act_btn" id="search-btn" name="search-btn" value="搜索">
|
|
<input type="button" class="act_btn" value="添加" onclick="location.href='/fix-car-project/info'">
|
|
</td>
|
|
</tr>
|
|
</form>
|
|
</table>
|
|
<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 align="center" align="center" class="bg_tr">项目名</td>
|
|
<td width="30" align="center" class="bg_tr">操作</td>
|
|
</tr>
|
|
<?php if (isset($lists)): ?>
|
|
<?php foreach ($lists as $index => $list): ?>
|
|
<tr onMouseOver=overColor(this) onMouseOut=outColor(this)>
|
|
<td align="center" class="td_bg" nowrap><?= $index + 1 ?></td>
|
|
<td align="left" class="td_bg" nowrap>(<?= $list->type0->name ?>)<?= $list->name ?></td>
|
|
<td align="center" class="td_bg" nowrap>
|
|
[<a href="javascript:void(0);" onclick="edit('<?= $list['id'] ?>')">详情</a>]
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td height="25" colspan="12" align="center" class="td_bg"><?= isset($page_info) ? $page_info : '' ?></td>
|
|
</tr>
|
|
</table>
|
|
<script type="text/javascript" language="javascript">
|
|
<?php if(isset($group_id)): ?>
|
|
var groupID = <?= $group_id ?>;
|
|
$('#group_id option[value="'+groupID+'"]').attr('selected',true);
|
|
<?php endif; ?>
|
|
//编辑
|
|
function edit(id) {
|
|
window.location.href = '/fix-car-project/info?id=' + id;
|
|
}
|
|
|
|
//顶级分类 change 事件
|
|
function getSons(val) {
|
|
if (!val) return false;
|
|
$.post('/fix-car-project/get-machine', {pid: val}, function (data) {
|
|
if (data.success) {
|
|
var _option = '';
|
|
for (var i = 0; i < data.content.length; i++) {
|
|
_option += '<option value="' + data.content[i].id + '">' + data.content[i].name + '</option>';
|
|
}
|
|
$('#id').html(_option);
|
|
}
|
|
|
|
}, 'json');
|
|
}
|
|
</script>
|
|
|