Commit 2f945dc9 by qiaoyanqi

页签和不是页签

parent 0fa8667a
...@@ -12,7 +12,16 @@ ...@@ -12,7 +12,16 @@
* @param {string} uuid - 打开单据的uuid * @param {string} uuid - 打开单据的uuid
*/ */
export function setQueryTag(querySet, index, templateName,uuid) { export function setQueryTag(querySet, index, templateName,uuid) {
let curTagId = window.nros.context.getCurrTag()?uuid:'router'; let curTagId = uuid||'router';
if (
window.osConfig.appOpenMode &&
window.osConfig.appOpenMode == "apploader"
){
curTagId = uuid;
}else{
curTagId = 'router'
}
if(!GMS.queryObject){ if(!GMS.queryObject){
GMS.queryObject = {}; GMS.queryObject = {};
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment