biz9-logic 4.8.233 → 4.8.236
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 +8 -8
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -191,8 +191,8 @@ class Page_Logic {
|
|
|
191
191
|
}
|
|
192
192
|
return item_list;
|
|
193
193
|
};
|
|
194
|
-
static get_page_section = (type,page_id,section_id,value_id,value,
|
|
195
|
-
return {type:type,page_id:page_id,section_id:section_id,value_id:value_id,value:value,
|
|
194
|
+
static get_page_section = (type,page_id,section_id,value_id,value,value_list) => {
|
|
195
|
+
return {type:type,page_id:page_id,section_id:section_id,value_id:value_id,value:value,value_list:value_list};
|
|
196
196
|
};
|
|
197
197
|
static get_section_type_list = () => {
|
|
198
198
|
return [
|
|
@@ -862,13 +862,13 @@ class FieldType {
|
|
|
862
862
|
static ACTIVITY_TYPE_LOGIN="login";
|
|
863
863
|
static ACTIVITY_TYPE_REGISTER="register";
|
|
864
864
|
|
|
865
|
-
static
|
|
866
|
-
static
|
|
867
|
-
static
|
|
868
|
-
static
|
|
865
|
+
static SECTION_TYPE_TEXT="text";
|
|
866
|
+
static SECTION_TYPE_NOTE="note";
|
|
867
|
+
static SECTION_TYPE_PHOTO="photo";
|
|
868
|
+
static SECTION_TYPE_LIST="list";
|
|
869
869
|
|
|
870
|
-
static
|
|
871
|
-
static
|
|
870
|
+
static SECTION_TYPE_LIST_FIELD="field";
|
|
871
|
+
static SECTION_TYPE_LIST_VALUE="value";
|
|
872
872
|
}
|
|
873
873
|
class Social {
|
|
874
874
|
static FACEBOOK_URL="https://facebook.com/";
|