sys_task_edit.htm
5.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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> >> 修改任务</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"; ?>>
启用
<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"; ?>>
循环
<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"; ?>>
天
<input type="radio" name="freq" value="7" <?php if($row['freq']==7) echo " checked"; ?>>
周
<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><t:parameter key='名称' value='值' /></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"> </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>