sku加了编辑后事件,会判断重复,重复后,怎么把SKU值传递到弹出的窗体,我用的js弹窗 js: var ch = this.getValue(); //获取当前控件值 var patrn = FR.remoteEvaluate('=SQL("FRDemo","'+"select count(*) from 库存盘点 where sku= '"+ch+"'"+'",1,1)'); if (patrn>0) { FR.mobilePopup({ target: "template",//设置跟随弹窗 parameters: {}, setting: { templatePath: "/重复更改.frm",//设置子模板地址 border: { type: 0, color: "rgb(0,0,0)", borderRadius: 4.0 }, background: { color: "rgb(255,255,255)" }, mobileRegular: { type: "custom" || "auto_height", heightPercent: 95.0, widthPercent: 95.0 }, padRegular: { type: "custom" || "auto_height", heightPercent: 95.0, widthPercent: 95.0 }//设置弹窗大小格式 } }) //如果不满足规则弹出提示 this.setValue(""); //清空输入值 } |