APP配置取消功能完善

This commit is contained in:
yexuan 2018-06-28 11:30:01 +08:00
parent 8be034daaa
commit 3429ba7f99
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@
function importNewFlow() {
AsDialog.selectCatalogDialog("SelectFlow", "", "", function(sReturn) {
if (typeof (sReturn) == "undefined" || sReturn.length == 0)
if (typeof (sReturn) == "undefined" || sReturn.length == 0||sReturn=="_CANCEL_"||sReturn=="")
return;
sReturn = sReturn.split("@");
var FlowNo = sReturn[0];

View File

@ -34,7 +34,7 @@
var catalogId = "<%=id%>"
var libraryId = "";
AsDialog.selectCatalogDialog("AppPageLibraryList", "", "", function(sReturn) {
if (typeof (sReturn) == "undefined" || sReturn.length == 0)
if (typeof (sReturn) == "undefined" || sReturn.length == 0||sReturn=="_CANCEL_"||sReturn=="")
return;
sReturn = sReturn.split("@");
libraryId = sReturn[0];

View File

@ -35,7 +35,7 @@
var doname = "";
AsDialog.selectCatalogDialog(selName, "", "",
function(sReturn) {
if (typeof (sReturn) == "undefined" || sReturn.length == 0)
if (typeof (sReturn) == "undefined" || sReturn.length == 0||sReturn=="_CANCEL_"||sReturn=="")
return;
sReturn = sReturn.split("@");
dono = sReturn[0];