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.
HENGCHENG/DSWeb/js/jsGridCRMClientOverview.js

289 lines
13 KiB
JavaScript

//两端去空格函数
String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); }
function $(id) {
return document.getElementById(id);
}
function initWinScreen() {
var winScreenHeight = 0;
var winScreenWidth = 0;
if (window.screen.height) {
winScreenHeight = window.screen.height;
}
if (window.screen.width) {
winScreenWidth = window.screen.width;
}
if (winScreenWidth >= 1440 && winScreenWidth >= 900) {
document.getElementById("mygrid_log").style.height = "400px";
}
else if (winScreenWidth >= 1366 && winScreenWidth >= 768) {
document.getElementById("mygrid_log").style.height = "310px";
}
else if (winScreenWidth >= 1024 && winScreenWidth >= 768) {
document.getElementById("mygrid_log").style.height = "270px";
}
}
function imgAdd1ChangePic()
{
var pic1=document.getElementById("imgAdd1");
var start=pic1.src.lastIndexOf("/");
var str=pic1.src.substring(start+1);
if(str=="order_modify.gif")
{
pic1.src="../images/order_cancel.gif";
//pic1.alt="我是B图片";
}
else if(str=="order_cancel.gif")
{
pic1.src="../images/order_modify.gif";
//pic1.alt="我是A图片";
}
}
function imgAdd2ChangePic() {
var pic1 = document.getElementById("imgAdd2");
var start = pic1.src.lastIndexOf("/");
var str = pic1.src.substring(start + 1);
if (str == "order_modify.gif") {
pic1.src = "../images/order_cancel.gif";
//pic1.alt="我是B图片";
}
else if (str == "order_cancel.gif") {
pic1.src = "../images/order_modify.gif";
//pic1.alt="我是A图片";
}
}
function imgAdd3ChangePic() {
var pic1 = document.getElementById("imgAdd3");
var start = pic1.src.lastIndexOf("/");
var str = pic1.src.substring(start + 1);
if (str == "order_modify.gif") {
pic1.src = "../images/order_cancel.gif";
//pic1.alt="我是B图片";
}
else if (str == "order_cancel.gif") {
pic1.src = "../images/order_modify.gif";
//pic1.alt="我是A图片";
}
}
function imgAdd4ChangePic() {
var pic1 = document.getElementById("imgAdd4");
var start = pic1.src.lastIndexOf("/");
var str = pic1.src.substring(start + 1);
if (str == "order_modify.gif") {
pic1.src = "../images/order_cancel.gif";
//pic1.alt="我是B图片";
}
else if (str == "order_cancel.gif") {
pic1.src = "../images/order_modify.gif";
//pic1.alt="我是A图片";
}
}
//蒙板
function dialog()
{
this.width=450;
this.height=360;
this.title_height=20;
this.html='';
this.title='';
var self = this;
var bgObj,msgObj,titleObj;
this.close=function()
{
document.body.removeChild(document.getElementById("bgDiv"));
document.getElementById("msgDiv").removeChild(document.getElementById("msgTitle"));
document.body.removeChild(document.getElementById("msgDiv"));
}
this.show=function()
{
var msgw,msgh,bordercolor;
msgw=self.width;
msgh=self.height;
bordercolor="#336699";
titlecolor="#99CCFF";
var sWidth,sHeight;
sWidth=document.body.offsetWidth;
sHeight=screen.height;
bgObj=document.createElement("div");
bgObj.setAttribute('id','bgDiv');
bgObj.style.position="absolute";
bgObj.style.top="0";
bgObj.style.background="#777";
bgObj.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=3,opacity=25,finishOpacity=75";
bgObj.style.opacity="0.6";
bgObj.style.left="0";
bgObj.style.width=sWidth + "px";
bgObj.style.height=sHeight + "px";
bgObj.style.zIndex = "10000";
document.body.appendChild(bgObj);
msgObj=document.createElement("div")
msgObj.setAttribute("id","msgDiv");
msgObj.setAttribute("align","center");
msgObj.style.background="white";
msgObj.style.border="1px solid " + bordercolor;
msgObj.style.position = "absolute";
msgObj.style.left = "50%";
msgObj.style.top = "30%";
msgObj.style.font="12px/1.6em Verdana, Geneva, Arial, Helvetica, sans-serif";
msgObj.style.marginLeft = "-225px" ;
msgObj.style.marginTop = -75+document.documentElement.scrollTop+"px";
msgObj.style.width = msgw + "px";
msgObj.style.height =msgh + "px";
msgObj.style.textAlign = "center";
msgObj.style.lineHeight ="25px";
msgObj.style.zIndex = "10001";
titleObj=document.createElement("h4");
titleObj.setAttribute("id","msgTitle");
titleObj.setAttribute("align","center");
titleObj.style.margin="0";
titleObj.style.padding="3px";
titleObj.style.background=bordercolor;
titleObj.style.filter="progid:DXImageTransform.Microsoft.Alpha(startX=20, startY=20, finishX=100, finishY=100,style=1,opacity=75,finishOpacity=100);";
titleObj.style.opacity="0.75";
titleObj.style.border="1px solid " + bordercolor;
titleObj.style.height=self.title_height+"px";
titleObj.style.font="12px Verdana, Geneva, Arial, Helvetica, sans-serif";
titleObj.style.color="white";
titleObj.style.cursor="pointer";
titleObj.innerHTML=self.title;
//titleObj.onclick=function(){self.close();}
document.body.appendChild(msgObj);
document.getElementById("msgDiv").appendChild(titleObj);
var txt=document.createElement("div");
txt.style.margin="1em 0"
txt.setAttribute("id","msgTxt");
txt.innerHTML=self.html;
document.getElementById("msgDiv").appendChild(txt);
}
}
function msgBox()
{
var dg=new dialog();
dg.html="程序正在提交,请稍等!";
//dg.html+="<input type=button onclick='new dialog().close();' value='确定'>";
dg.width=200;
dg.height=100;
dg.title="标题";
dg.show();
}
function success() {
alert("操作成功!");
}
//
function getIsNum(x) {
var str = x.value.trim();
if (str == "0") {
return;
}
else if (str == "") {
str = 0;
x.value = 0;
}
else {
var bl = IsNumFormat(str);
if (!bl) {
alert("数值格式错误!");
x.focus();
x.select();
}
}
}
//是否为数字2
function IsNum2(val) {
var re = /^[0-9]*[1-9][0-9]*$/;
if (!re.test(val)) {
return false;
} else {
return true;
}
}
function newGuid() {
var guid = "";
for (var i = 1; i <= 32; i++) {
var n = Math.floor(Math.random() * 16.0).toString(16);
guid += n;
if ((i == 8) || (i == 12) || (i == 16) || (i == 20))
guid += "-";
}
return guid.toUpperCase();
}
//双击弹出页面-->
function openContact(id) {
var URLs = "../CRM/CRMClientContactInfo.aspx?handle=edit&id=" + id + "&LINKID=" + $("hdGid").value + "&isenabled=" + $("hdEnabled").value.trim() + "&val=" + newGuid();
window.open(URLs, "_blank", "height=500, width=790,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}
function addContact() {
var URLs = "../CRM/CRMClientContactInfo.aspx?handle=add&LINKID=" + $("hdGid").value + "&isenabled=" + $("hdEnabled").value.trim() + "&val=" + newGuid();
ret = window.open(URLs, "添加提单", "height=500px, width=790px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}
function openContactList() {
var URLs = "../CRM/CRMClientContactList.aspx?id=" + $("hdGid").value + "&val=" + newGuid();
window.open(URLs, "_blank", "height=550px, width=1024px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}
//双击弹出页面-->
function openVisit(id) {
var URLs = "../CRM/CRMClientVisitInfo.aspx?handle=edit&id=" + id + "&LINKID=" + $("hdGid").value + "&val=" + newGuid();
window.open(URLs, "_blank", "height=400px, width=700px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}
function addVisit() {
var URLs = "../CRM/CRMClientVisitInfo.aspx?handle=add&LINKID=" + $("hdGid").value + "&val=" + newGuid();
window.open(URLs, "_blank", "height=400px, width=700px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}
function openVisitList() {
var URLs = "../CRM/CRMClientVisitList.aspx?id=" + $("hdGid").value + "&val=" + newGuid();
window.open(URLs, "_blank", "height=550px, width=1024px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}
//双击弹出页面-->
function openFaq(id) {
var URLs = "../CRM/CRMInfoFaqInfo.aspx?handle=edit&id=" + id + "&LINKID=" + $("hdGid").value + "&val=" + newGuid();
ret = window.open(URLs, "_blank", "height=700px, width=800px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=yes,resizable=1,location=no,status=no,Top= " + (screen.height / 2 - 400) + ",Left= " + (screen.width / 2 - 400)); //
}
function addFaq() {
var URLs = "../CRM/CRMInfoFaqInfo.aspx?handle=add&LINKID=" + $("hdGid").value + "&val=" + newGuid();
ret = window.open(URLs, "_blank", "height=700px, width=800px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=yes,resizable=1,location=no,status=no,Top= " + (screen.height / 2 - 400) + ",Left= " + (screen.width / 2 - 400)); //
}
function openFaqList() {
var URLs = "../CRM/CRMInfoFaqList.aspx?id=" + $("hdGid").value + "&val=" + newGuid();
window.open(URLs, "_blank", "height=550px, width=1024px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}
//双击弹出页面-->
function openQuotation(id) {
var URLs = "../CRM/CRMClientQuotationInfo.aspx?handle=edit&id=" + id + "&clientgid=" + $("hdGid").value + "&val=" + newGuid();
ret = window.open(URLs, "编辑提单", "height=700px, width=820px, toolbar=no, menubar=no,scrollbars=no, resizable=0,location=no, status=no,Top= " + (screen.height - 700) / 2 + ",Left= " + (screen.width - 1024) / 2);
}
function addQuotation() {
var URLs = "../CRM/CRMClientQuotationInfo.aspx?handle=add&clientgid=" + $("hdGid").value + "&val=" + newGuid();
ret = window.open(URLs, "添加提单", "height=700px, width=820px, toolbar=no, menubar=no,scrollbars=no, resizable=0,location=no, status=no,Top= " + (screen.height - 700) / 2 + ",Left= " + (screen.width - 1024) / 2);
}
function openQuotationList() {
var URLs = "../CRM/CRMClientQuotationList.aspx?id=" + $("hdGid").value + "&val=" + newGuid();
window.open(URLs, "_blank", "height=550px, width=1024px,center:yes,help:no,toolbar=no,menubar=no,scrollbars=no,resizable=0,location=no,status=no,Top= " + (screen.height / 2 - 200) + ",Left= " + (screen.width / 2 - 400));
}