You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.7 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!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>
<title></title>
<link href="../../../../DataUser/Style/ccbpm.css" rel="stylesheet" type="text/css" />
<link href="../../../Scripts/easyUI145/themes/icon.css" rel="stylesheet" type="text/css" />
<link href="../../../Scripts/easyUI145/themes/default/easyui.css" rel="stylesheet" type="text/css" />
<!-- 自己的系统风格统一. -->
<link href="../../../Style/skin/adminfont/iconfont.css" rel="stylesheet" />
<link href="../../../Style/skin/css/Default.css" rel="stylesheet" />
<link href="../../../Scripts/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<script src="../../../Scripts/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="../../../Scripts/easyUI/jquery.easyui.min.js" type="text/javascript"></script>
<script src="../../../Scripts/QueryString.js" type="text/javascript"></script>
<script type="text/javascript" src="../../../Scripts/config.js"></script>
<script type="text/javascript" src="../../../Comm/Gener.js"></script>
<script src="DDLBar.js" type="text/javascript"></script>
<script src="../../CCFlowEnum.js" type="text/javascript"></script>
<script src="../../../Scripts/EasyUIUtility.js" type="text/javascript"></script>
<script type="text/javascript">
//页面初始化
$(function () {
InitBar(CHWay.IsQuality);
var nodeID = GetQueryString("FK_Node");
var node = new Entity("BP.WF.Node", nodeID);
});
function Save() {
var nodeID = GetQueryString("FK_Node");
var node = new Entity("BP.WF.Node", nodeID);
node.CHWay = CHWay.IsQuality;
//是否是时效考核.
if (document.getElementById("CB_IsEval").checked == true)
node.IsEval = 1;
else
node.IsEval = 0;
node.CopyForm();
node.Update();
alert("保存成功.");
}
</script>
</head>
<body>
<div id="bar"> </div>
<fieldset>
<legend>是否是质量考核点?</legend>
<ul style="color: Gray">
<li>质量考核,是当前节点对上一步的工作进行一个工作好坏的一个考核。</li>
<li>考核的方式是对上一个节点进行打分该分值记录到WF_CHEval的表里开发人员对WF_CHEval的数据根据用户的需求进行二次处理。</li>
</ul>
<input type="checkbox" id="CB_IsEval" name="CB_IsEval" value="1" />
<label for="CB_IsEval">
是否是质量考核点?
</label>
</fieldset>
</body>
</html>