sys_task_edit.htm 5.37 KB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>计划任务</title>
<link href='css/base.css' rel='stylesheet' type='text/css'>
<script language="javascript" src="../include/js/webcalendar.js"></script>
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  <tr>
    <td height="28" background="images/tbg.gif" style="padding-left:10px;"><b><a href="sys_task.php"><u>计划任务管理</u></a></b> &gt;&gt; 修改任务</td>
	</tr>
<tr>
  <td height="200" bgcolor="#FFFFFF" valign="top">
	<form action="sys_task_edit.php" method="post" enctype="multipart/form-data" name="form1" onSubmit="return checkSubmit();";>
	<input type="hidden" name="dopost" value="save" />
	<input type="hidden" name="id" value="<?php echo $row['id']; ?>" />
	<table width="96%"  border="0" cellspacing="1" cellpadding="3" align="center">
	  <tr>
        <td class='bline' width="100" height="36" align="center">任务名称:</td>
        <td class='bline'>
        	<input name="taskname" type="text" class='pubinputs' id="taskname" size="30" value="<?php echo $row['taskname']; ?>" />
        </td>
      </tr>
      <tr>
        <td class='bline' height="36" align="center">运行程序:</td>
        <td class='bline'>
        	<input name="dourl" type="text" id="dourl" size="30" class='pubinputs' value="<?php echo $row['dourl']; ?>" />
        	(程序必须放在../plus/task目录,因此填写文件名即可)
        </td>
      </tr>
      <tr>
        <td class='bline' height="80" align="center">任务说明:</td>
        <td class='bline'><textarea name="description" id="description" style="width:380px;height:60px"><?php echo $row['description']; ?></textarea></td>
      </tr>
      <tr>
        <td class='bline' height="36" align="center">是否启用:</td>
        <td class='bline'>
        	<input name="nislock" type="radio" value="0" <?php if($row['islock']==0) echo " checked"; ?>>
          启用&nbsp;
          <input name="nislock" type="radio" value="1" <?php if($row['islock']==1) echo " checked"; ?>>
          不启用
        </td>
      </tr>
      <tr>
        <td class='bline' height="36" align="center">循环方式:</td>
        <td class='bline'>
       	<input name="runtype" type="radio" value="0" <?php if($row['runtype']==0) echo " checked"; ?>>
					循环&nbsp;
  			<input type="radio" name="runtype" value="1" <?php if($row['runtype']==1) echo " checked"; ?>> 
  				一次性
				</td>
      </tr>
      <tr>
        <td class='bline' height="36" align="center">执行时间:</td>
        <td class='bline'>
        	<?php
        	list($h, $m) = explode(':', $row['runtime']);
        	?>
        	<input name="h" type="text" class="pubinputs" id="h" style="width:30px" value="<?php echo $h; ?>">
          时(24小时制) 
          <input name="m" type="text" class="pubinputs" id="m" style="width:30px" value="<?php echo $m; ?>">

        </td>
      </tr>
      <tr>
        <td class='bline' height="36" align="center">执行周期:</td>
        <td class='bline'>
        		<input name="freq" type="radio" value="1" <?php if($row['freq']==1) echo " checked"; ?>>
&nbsp;
            <input type="radio" name="freq" value="7" <?php if($row['freq']==7) echo " checked"; ?>>
&nbsp;
            <input type="radio" name="freq" value="30" <?php if($row['freq']==30) echo " checked"; ?>>

         </td>
      </tr>
      <tr>
        <td class='bline' height="36" align="center">开始时间:</td>
        <td class='bline'>
        	<input name="starttime" type="text" class="pubinputs" id="starttime" style="width:70px" onClick="SelectDate(this,'yyyy-MM-dd',80,0)" value="<?php echo ( empty($row['starttime']) ? '' : GetDateMk($row['starttime']) ); ?>">
        </td>
      </tr>
      <tr>
        <td class='bline' height="36" align="center">结束时间:</td>
        <td class='bline'>
        	<input name="endtime" type="text" class="pubinputs" id="endtime" style="width:70px" onClick="SelectDate(this,'yyyy-MM-dd',80,0)" value="<?php echo ( empty($row['endtime']) ? '' : GetDateMk($row['endtime']) ); ?>">
          (不限不要填写)
        </td>
      </tr>
      <tr>
        <td class='bline' align="center">
        	附加参数:
        </td>
        <td class='bline'>
        通过get方式向运行的程序发送的参数,格式为:<b>&lt;t:parameter  key='名称'   value='值'  /&gt;</b><br/>
        	<textarea name="parameter" id="parameter" style="width:480px;height:150px"><?php echo $row['parameter']; ?></textarea>
        </td>
      </tr>
      <tr>
        <td class='bline' height="28" align="center">上次运行时间:</td>
        <td class='bline'>
        	<?php echo (empty($row['lastrun']) ? '没运行过' : GetDateTimeMk($row['lastrun'])); ?>
        </td>
      </tr>
      <tr>
        <td height="51">&nbsp;</td>
        <td>
        	<input type="submit" name="Submit" value=" 提 交 " class="coolbg np" />   
          <input type="reset" name="Submit" value=" 重 置 " class="coolbg np" /> 
        </td>
      </tr>
    </table>
	</form>
 </td>
</tr>
</table>
</body>
</html>