biz9-logic 4.8.78 → 4.8.79
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 +9 -9
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -1473,7 +1473,7 @@ class Schedule {
|
|
|
1473
1473
|
class Storage {
|
|
1474
1474
|
static get = (window,key) => {
|
|
1475
1475
|
if(window){
|
|
1476
|
-
return JSON.parse(window.localStorage.getItem(key));
|
|
1476
|
+
return JSON.parse(window.localStorage.getItem(key)) ? window.localStorage.getItem(key) : null;
|
|
1477
1477
|
}else{
|
|
1478
1478
|
return null;
|
|
1479
1479
|
}
|
package/package.json
CHANGED
package/test.js
CHANGED
|
@@ -85,10 +85,10 @@ describe("connect", () => {
|
|
|
85
85
|
|
|
86
86
|
/* --USER--START */
|
|
87
87
|
//let user = User_Logic.get_test();
|
|
88
|
-
let user = User_Logic.get_test();
|
|
89
|
-
let user_list = User_Logic.get_test_list();
|
|
88
|
+
//let user = User_Logic.get_test();
|
|
89
|
+
//let user_list = User_Logic.get_test_list();
|
|
90
90
|
//Log.w('user',user);
|
|
91
|
-
Log.w('user_list',user_list);
|
|
91
|
+
//Log.w('user_list',user_list);
|
|
92
92
|
|
|
93
93
|
/* --USER--END */
|
|
94
94
|
|
|
@@ -272,14 +272,14 @@ describe("connect", () => {
|
|
|
272
272
|
/* --CONFIG--END */
|
|
273
273
|
|
|
274
274
|
/* --PAGE--START */
|
|
275
|
-
|
|
276
|
-
let
|
|
275
|
+
let page = Page_Logic.get_test({item_count:2,page_count:2,get_value:true,get_item:true,value_count:5})
|
|
276
|
+
let page_row_item = Sub_Item_Logic.get_test_section_list(page,page,{get_value:true,value_count:9,section_count:9});
|
|
277
277
|
Log.w("Page",page);
|
|
278
|
-
|
|
278
|
+
Log.w("Page_Row_Item",page_row_item);
|
|
279
|
+
//let page = Page.get_test({item_count:9,page_count:19,get_item:true,get_value:true})
|
|
279
280
|
//let page = Page.get_test()
|
|
280
|
-
Log.w("Page_section_1",page.section_1);
|
|
281
|
-
Log.w("Page_section_1_section_1_section_1",page.section_1.section_1.section_1);
|
|
282
|
-
*/
|
|
281
|
+
//Log.w("Page_section_1",page.section_1);
|
|
282
|
+
//Log.w("Page_section_1_section_1_section_1",page.section_1.section_1.section_1);
|
|
283
283
|
/* --PAGE--END */
|
|
284
284
|
|
|
285
285
|
|