biz9-logic 3.2.11 → 3.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biz9_config +1 -1
- package/index.js +2 -2
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -181,7 +181,7 @@ class CMS {
|
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
static get_page_url = (url,tab_title,item,parent_item,top_item,parms) => {
|
|
184
|
-
let
|
|
184
|
+
let r_url="?tab_title="+tab_title
|
|
185
185
|
+"&id="+item.id
|
|
186
186
|
+"&data_type="
|
|
187
187
|
+item.data_type
|
|
@@ -196,7 +196,7 @@ class CMS {
|
|
|
196
196
|
if(parms){
|
|
197
197
|
url = url + parms;
|
|
198
198
|
}
|
|
199
|
-
return
|
|
199
|
+
return r_url;
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
202
|
|