去掉了页面条目数的弹框
This commit is contained in:
parent
c1eab8db5e
commit
5bda1f6e76
@ -22,7 +22,8 @@
|
||||
String sButtons[][] = {
|
||||
{"true","All","Button","新增","新增","newRecord()","","","","btn_icon_add",""},
|
||||
{"true","","Button","详情","详情","viewAndEdit()","","","","btn_icon_detail",""},
|
||||
{"true","All","Button","删除","删除","if(confirm('确实要删除吗?'))as_delete(0,'alert(getRowCount(0))')","","","","btn_icon_delete",""},
|
||||
{"true","All","Button","删除","删除","if(confirm('确实要删除吗?'))as_delete(0)","","","","btn_icon_delete",""},
|
||||
//{"true","All","Button","删除","删除","if(confirm('确实要删除吗?'))as_delete(0,'alert(getRowCount(0))')","","","","btn_icon_delete",""},
|
||||
};
|
||||
%><%@include file="/Frame/resources/include/ui/include_list.jspf"%>
|
||||
<script type="text/javascript">
|
||||
|
||||
@ -104,34 +104,5 @@ function saveproj_name(){
|
||||
}
|
||||
},'请选择省市');
|
||||
}
|
||||
//验证手机号码
|
||||
/* function checkMobile(str) {
|
||||
var re = /^1\d{10}$/
|
||||
if (re.test(str)) {
|
||||
alert("正确");
|
||||
} else {
|
||||
alert("请输入有效数字");
|
||||
}
|
||||
} */
|
||||
//验证电话号码
|
||||
function checkPhone(){
|
||||
//var str = $("#DEALER_PHONE").val();
|
||||
//var str = document.getElementById("DEALER_PHONE").value;
|
||||
var str=getItemValue(0, 0, "DEALER_PHONE");
|
||||
var re = /^0\d{2,3}-?\d{7,8}$/;
|
||||
if(re.test(str)){
|
||||
}else{
|
||||
alert("请输入有效数字");
|
||||
}
|
||||
}
|
||||
//验证邮箱的有效性
|
||||
/* function checkEmail(str){
|
||||
var re = /^(\w-*\.*)+@(\w-?)+(\.\w{2,})+$/
|
||||
if(re.test(str)){
|
||||
alert("正确");
|
||||
}else{
|
||||
alert("请输入正确的邮箱号");
|
||||
}
|
||||
} */
|
||||
</script>
|
||||
<%@ include file="/Frame/resources/include/include_end.jspf"%>
|
||||
@ -13,10 +13,12 @@
|
||||
var dst_id=sReturn[0];
|
||||
var distributor_no = sReturn[1];
|
||||
var distributor_name = sReturn[2];
|
||||
//alert(distributor_name);
|
||||
var projectName = sReturn[1]+"-"+sReturn[2];
|
||||
var sParams = "ApplyType=<%=sApplyType%>,CurUserID=<%=CurUser.getUserID()%>";
|
||||
sParams = sParams+",FlowKey="+distributor_no+",ProjectName="+projectName+",distributor_no="+distributor_no+",distributor_name="+distributor_name;
|
||||
|
||||
//sParams = sParams+",FlowKey="+distributor_no+",ProjectName="+projectName+",distributor_no="+distributor_no+",distributor_name="+distributor_name;
|
||||
sParams = sParams+",FlowKey="+distributor_no+",distributor_no="+distributor_no+",distributor_name="+distributor_name;
|
||||
|
||||
var sReturnInfo = RunJavaMethodTrans("com.tenwa.flow.action.comm.BaseFlowStartAction","initFLow",sParams);
|
||||
if(typeof(sReturnInfo)=="undefined" || sReturnInfo=="" || sReturnInfo=="_CANCEL_") return;
|
||||
var sReturnInfos=sReturnInfo.split("@");
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
String sButtons[][] = {
|
||||
{"true","All","Button","新增","新增","newRecord()","","","","btn_icon_add",""},
|
||||
{"true","","Button","详情","详情","viewAndEdit()","","","","btn_icon_detail",""},
|
||||
{"true","All","Button","删除","删除","if(confirm('确实要删除吗?'))as_delete(0,'alert(getRowCount(0))')","","","","btn_icon_delete",""},
|
||||
{"true","All","Button","删除","删除","if(confirm('确实要删除吗?'))as_delete(0)","","","","btn_icon_delete",""},
|
||||
};
|
||||
%><%@include file="/Frame/resources/include/ui/include_list.jspf"%>
|
||||
<script type="text/javascript">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user