APP配置取消功能完善
This commit is contained in:
parent
8be034daaa
commit
3429ba7f99
@ -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];
|
||||
|
||||
@ -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];
|
||||
|
||||
@ -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];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user