biz9-logic 4.9.109 → 4.9.110
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 +1 -1
- package/package.json +1 -1
- package/test.js +2 -2
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -325,7 +325,7 @@ class Type {
|
|
|
325
325
|
static get_page_list(){
|
|
326
326
|
return [
|
|
327
327
|
{value:Type.PAGE_ABOUT,label:Title.PAGE_ABOUT,url:Url.PAGE_ABOUT},
|
|
328
|
-
{value:Type.PAGE_BLOG_POST,label:Title.PAGE_BLOG_POST,url:
|
|
328
|
+
{value:Type.PAGE_BLOG_POST,label:Title.PAGE_BLOG_POST,url:Url.PAGE_BLOG_POST},
|
|
329
329
|
{value:Type.PAGE_BLOG_POST_HOME,label:Title.PAGE_BLOG_POST_HOME,url:Url.PAGE_BLOG_POST_HOME},
|
|
330
330
|
{value:Type.PAGE_CONTACT,label:Title.PAGE_CONTACT,label:Title.PAGE_CONTACT,url:Url.PAGE_CONTACT},
|
|
331
331
|
{value:Type.PAGE_EVENT,label:Title.PAGE_EVENT,url:Url.PAGE_EVENT},
|
package/package.json
CHANGED
package/test.js
CHANGED
|
@@ -39,8 +39,8 @@ describe("connect", () => {
|
|
|
39
39
|
let item_list = [];
|
|
40
40
|
for(var a = 0; a < Type.get_page_list().length;a++){
|
|
41
41
|
let my_type = Type.get_page_list()[a];
|
|
42
|
-
console.log('value='+my_type.value);
|
|
43
|
-
console.log('label='+my_type.label);
|
|
42
|
+
//console.log('value='+my_type.value);
|
|
43
|
+
//console.log('label='+my_type.label);
|
|
44
44
|
console.log('url='+my_type.url);
|
|
45
45
|
}
|
|
46
46
|
//Log.w('Title',Type.get_title(Type.ORDER_STATUS_NEW));
|