biz9-logic 4.8.278 → 4.8.282
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 +34 -26
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -1227,12 +1227,16 @@ class User_Url {
|
|
|
1227
1227
|
};
|
|
1228
1228
|
}
|
|
1229
1229
|
class Item_Url {
|
|
1230
|
-
static
|
|
1231
|
-
let action_url
|
|
1230
|
+
static activity = (app_id,url,params) => {
|
|
1231
|
+
let action_url="item/activity";
|
|
1232
1232
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1233
1233
|
};
|
|
1234
|
-
static
|
|
1235
|
-
let action_url="item/
|
|
1234
|
+
static cart = (app_id,url,cart_number,params) => {
|
|
1235
|
+
let action_url="item/cart"+cart_number;
|
|
1236
|
+
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1237
|
+
};
|
|
1238
|
+
static content = (app_id,url,key,params) => {
|
|
1239
|
+
let action_url="item/content/"+key;
|
|
1236
1240
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1237
1241
|
};
|
|
1238
1242
|
static content = (app_id,url,key,params) => {
|
|
@@ -1243,56 +1247,60 @@ class Item_Url {
|
|
|
1243
1247
|
let action_url="item/custom_field/"+data_type+"/"+key;
|
|
1244
1248
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1245
1249
|
};
|
|
1246
|
-
static
|
|
1247
|
-
let action_url="item/
|
|
1250
|
+
static delete_order = (app_id,url,id,params) => {
|
|
1251
|
+
let action_url="item/delete_order/"+id;
|
|
1248
1252
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1249
1253
|
};
|
|
1250
|
-
static
|
|
1251
|
-
let action_url="item/
|
|
1254
|
+
static delete_cart = (app_id,url,id,params) => {
|
|
1255
|
+
let action_url="item/delete_cart"+id;
|
|
1252
1256
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1253
1257
|
};
|
|
1254
1258
|
static favorite = (app_id,url,parent_data_type,page_current,page_size,params) => {
|
|
1255
1259
|
let action_url="item/favorite/"+parent_data_type+"/"+page_current+"/"+page_size;
|
|
1256
1260
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1257
1261
|
};
|
|
1258
|
-
static
|
|
1259
|
-
let action_url="item/
|
|
1260
|
-
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1261
|
-
};
|
|
1262
|
-
static cart = (app_id,url,cart_number,params) => {
|
|
1263
|
-
let action_url="item/cart"+cart_number;
|
|
1262
|
+
static order = (app_id,url,order_number,params) => {
|
|
1263
|
+
let action_url="item/order/"+order_number;
|
|
1264
1264
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1265
1265
|
};
|
|
1266
1266
|
static post_cart = (app_id,url,parent_data_type,params) => {
|
|
1267
1267
|
let action_url="item/post_cart/"+parent_data_type;
|
|
1268
1268
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1269
1269
|
};
|
|
1270
|
-
static
|
|
1271
|
-
let action_url="item/
|
|
1270
|
+
static post_cms = (app_id,url,data_type,id,params) => {
|
|
1271
|
+
let action_url = "item/post_cms/"+data_type+"/"+id;
|
|
1272
1272
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1273
1273
|
};
|
|
1274
|
-
static
|
|
1275
|
-
let action_url="item/
|
|
1274
|
+
static post_favorite = (app_id,url,parent_data_type,parent_item_id,params) => {
|
|
1275
|
+
let action_url="item/post_favorite"+parent_data_type+"/"+parent_item_id;
|
|
1276
|
+
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1277
|
+
};
|
|
1278
|
+
static post_field_value = (app_id,url,item_data_type,parent_item_id,value_id,params) => {
|
|
1279
|
+
let action_url="item/post_field_value/"+item_data_type+"/"+parent_item_id;
|
|
1280
|
+
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1281
|
+
};
|
|
1282
|
+
static post_review = (app_id,url,parent_data_type,item_id,params) => {
|
|
1283
|
+
let action_url="item/post_review/"+parent_data_type+"/"+item_id;
|
|
1276
1284
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1277
1285
|
};
|
|
1278
1286
|
static post_order = (app_id,url,params) => {
|
|
1279
1287
|
let action_url="item/post_order";
|
|
1280
1288
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1281
1289
|
};
|
|
1282
|
-
static
|
|
1283
|
-
let action_url="item/
|
|
1290
|
+
static review = (app_id,url,parent_data_type,page_current,page_size,params) => {
|
|
1291
|
+
let action_url="item/review/"+parent_data_type+"/"+page_current+"/"+page_size;
|
|
1284
1292
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1285
1293
|
};
|
|
1286
|
-
static
|
|
1287
|
-
let action_url="item/
|
|
1294
|
+
static search_cart = (app_id,url,parent_data_type,params) => {
|
|
1295
|
+
let action_url="item/search_cart/"+parent_data_type;
|
|
1288
1296
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1289
1297
|
};
|
|
1290
|
-
static
|
|
1291
|
-
let action_url="item/
|
|
1298
|
+
static search_order = (app_id,url,parent_data_type,params) => {
|
|
1299
|
+
let action_url="item/search_order/"+parent_data_type;
|
|
1292
1300
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1293
1301
|
};
|
|
1294
|
-
static
|
|
1295
|
-
let action_url="item/
|
|
1302
|
+
static template = (app_id,url,key,params) => {
|
|
1303
|
+
let action_url="item/template/"+key;
|
|
1296
1304
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1297
1305
|
};
|
|
1298
1306
|
}
|