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.
79 lines
3.2 KiB
79 lines
3.2 KiB
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
|
|
<form id="theFrm">
|
|
<input type="hidden" name="id" value="<?=$info->id?>">
|
|
<tr>
|
|
<td width="100" height="25" class="td_bg">名称</td>
|
|
<td height="25" class="td_bg">
|
|
<input name="name" type="text" id="name" value="<?=$info->name?>" style="width:400px;"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="100" height="25" class="td_bg">上级</td>
|
|
<td height="25" class="td_bg">
|
|
<select name="parent_id" id="parent_id">
|
|
<option value="0">--无上级---</option>
|
|
<?php
|
|
foreach($parent_items as $item) {
|
|
echo '<option value="'.$item['id'].'"';
|
|
if($item['id'] == $info->parent_id)
|
|
echo ' selected ';
|
|
echo '>';
|
|
echo $item['name'];
|
|
echo '</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="100" height="25" class="td_bg">区别</td>
|
|
<td height="25" class="td_bg">
|
|
新保:
|
|
<input name="difc" type="radio" value="1" <?php if($info->difc==1){ echo 'checked';}?>/>
|
|
续保:
|
|
<input name="difc" type="radio" value="2" <?php if($info->difc==2){ echo 'checked';}?>/>
|
|
增加新保
|
|
<input name="difc" type="radio" value="3" <?php if($info->difc==3){ echo 'checked';}?>/>
|
|
增加清洗库
|
|
<input name="difc" type="radio" value="4" <?php if($info->difc==4){ echo 'checked';}?>/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="100" height="25" class="td_bg">排序</td>
|
|
<td height="25" class="td_bg">
|
|
<input type="text" name="paixu_id" value="<?=$info->paixu_id?>">
|
|
</td>
|
|
</tr>
|
|
</form>
|
|
<tr>
|
|
<td height="22" colspan="2" align="center" class="td_bg">
|
|
<input id="submit-btn" type=button class="ACT_btn" name=Submit1 value=" 提交 "/>
|
|
|
|
<input id="back-btn" type="button" class="ACT_btn" name="Submit2" value=" 返回 ">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<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 () {
|
|
//提交按钮
|
|
$("#submit-btn").click(function(){
|
|
if(confirm('是否确认提交?')) {
|
|
var params = $("#theFrm").serialize();
|
|
$.post('/invalid/save',params,function(obj){
|
|
alert(obj.msg);
|
|
if(obj.success) {
|
|
$('#back-btn').click();
|
|
}
|
|
},'json');
|
|
}
|
|
});
|
|
|
|
//返回按钮
|
|
$('#back-btn').click(function(){
|
|
window.location.href='/invalid/index';
|
|
});
|
|
})
|
|
</script>
|
|
|