biz9-logic 4.8.336 → 4.8.338
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 -5
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -1802,7 +1802,7 @@ class Url_Logic {
|
|
|
1802
1802
|
static URL_BLOG_POST_SEARCH="blog_post/search";
|
|
1803
1803
|
//cart
|
|
1804
1804
|
static URL_CART_DELETE="item/delete_cart";
|
|
1805
|
-
static
|
|
1805
|
+
static URL_CART="item/cart";
|
|
1806
1806
|
static URL_CART_POST="item/post_cart";
|
|
1807
1807
|
static URL_CART_SEARCH="item/search_cart";
|
|
1808
1808
|
//category
|
|
@@ -1810,14 +1810,14 @@ class Url_Logic {
|
|
|
1810
1810
|
static URL_CATEGORY_HOME="category/home";
|
|
1811
1811
|
static URL_CATEGORY_SEARCH="category/search";
|
|
1812
1812
|
//content
|
|
1813
|
-
static
|
|
1813
|
+
static URL_CONTENT="item/content";
|
|
1814
1814
|
//crud
|
|
1815
1815
|
static URL_COPY="main/crud/copy";
|
|
1816
1816
|
static URL_DELETE="main/crud/delete";
|
|
1817
1817
|
static URL_DELETE_CHECK_PROTECTION="main/crud/delete_item_check_protection";
|
|
1818
1818
|
static URL_DELETE_LIST="main/crud/delete_list";
|
|
1819
1819
|
static URL_GET="main/crud/get";
|
|
1820
|
-
static
|
|
1820
|
+
static URL_PARENT_TOP="main/crud/parent_top";
|
|
1821
1821
|
static URL_POST="main/crud/post";
|
|
1822
1822
|
static URL_POST_CMS="main/crud/post_cms";
|
|
1823
1823
|
static URL_POST_LIST="main/crud/post_list";
|
|
@@ -1832,6 +1832,9 @@ class Url_Logic {
|
|
|
1832
1832
|
//favorite
|
|
1833
1833
|
static URL_FAVORITE_POST="item/post_favorite";
|
|
1834
1834
|
static URL_FAVORITE_SEARCH="item/search_review";
|
|
1835
|
+
//field
|
|
1836
|
+
static URL_CUSTOM_FIELD="item/custom_field";
|
|
1837
|
+
static URL_POST_FIELD_VALUE="item/post_field_value";
|
|
1835
1838
|
//gallery
|
|
1836
1839
|
static URL_GALLERY_DETAIL="gallery/detail";
|
|
1837
1840
|
static URL_GALLERY_HOME="gallery/home";
|
|
@@ -1841,7 +1844,7 @@ class Url_Logic {
|
|
|
1841
1844
|
static URL_IMAGE_CDN_POST="main/image/post_cdn";
|
|
1842
1845
|
//order
|
|
1843
1846
|
static URL_ORDER_DELETE="item/delete_order";
|
|
1844
|
-
static
|
|
1847
|
+
static URL_ORDER="item/order";
|
|
1845
1848
|
static URL_ORDER_POST="item/post_order";
|
|
1846
1849
|
static URL_ORDER_SEARCH="item/search_order";
|
|
1847
1850
|
//page
|
|
@@ -1867,7 +1870,7 @@ class Url_Logic {
|
|
|
1867
1870
|
//stat
|
|
1868
1871
|
static URL_SEARCH_ACTIVITY="item/search_activity";
|
|
1869
1872
|
//template
|
|
1870
|
-
static
|
|
1873
|
+
static URL_TEMPLATE="item/template";
|
|
1871
1874
|
static get_url = (app_id,host,url,param) => {
|
|
1872
1875
|
return get_cloud_url_main(app_id,host,url,param);
|
|
1873
1876
|
};
|