📄 index.php
字号:
<?
include_once 'inc/auth.php';
echo '
<html>
<head>
<title>流程克隆</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<SCRIPT language=javascript>
function check_form()
{
if(document.form1.FLOW_NAME.value == "")
{
alert("流程名称不能为空!");
return false;
}
return true;
}
</SCRIPT>
</head>
<body class="bodycolor" topmargin="5" onload="document.form1.FLOW_NO.focus();">
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
<tr>
<td class="Big"><img src="/images/edit.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><span class="big3"> 流程克隆</span><br>
</td>
</tr>
</table>
<br>
<table border="0" width="450" cellpadding="2" cellspacing="1" align="center" bgcolor="#000000" class="small">
<form action="submit.php" method="post" name="form1" onSubmit="return check_form();">
<tr>
<td nowrap class="TableData">新流程排序号:</td>
<td class="TableData">
<input type="text" name="FLOW_NO" size="4" maxlength="100" class="BigInput" value="';
echo $FLOW_NO;
echo '"> 控制同一分类下流程的排序
</td>
</tr>
<tr>
<td nowrap class="TableData">新流程名称:</td>
<td class="TableData">
<input type="text" name="FLOW_NAME" size="30" maxlength="100" class="BigInput" value="';
echo $FLOW_NAME;
echo '">
</td>
</tr>
<tr align="center" class="TableControl">
<td colspan="2" nowrap>
<input type=\'hidden\' value="';
echo $FLOW_ID;
echo '" name="FLOW_ID">
<input type="submit" value="保存" class="BigButton" name="submit">
<input type="button" value="返回" class="BigButton" name="back" onClick="history.back();">
</td>
</tr>
</form>
</table>
</body>
</html>';
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -