biz9-logic 4.8.258 → 4.8.259
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 +12 -12
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -1220,8 +1220,8 @@ class Dashboard_Url {
|
|
|
1220
1220
|
};
|
|
1221
1221
|
}
|
|
1222
1222
|
class Blog_Post_Url {
|
|
1223
|
-
static
|
|
1224
|
-
let action_url="blog_post/
|
|
1223
|
+
static detail = (app_id,url,key,params) => {
|
|
1224
|
+
let action_url="blog_post/detail/"+key;
|
|
1225
1225
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1226
1226
|
};
|
|
1227
1227
|
static home = (app_id,url,params) => {
|
|
@@ -1262,8 +1262,8 @@ class Order_Url {
|
|
|
1262
1262
|
};
|
|
1263
1263
|
}
|
|
1264
1264
|
class Product_Url {
|
|
1265
|
-
static
|
|
1266
|
-
let action_url="product/
|
|
1265
|
+
static detail = (app_id,url,key,params) => {
|
|
1266
|
+
let action_url="product/detail/"+key;
|
|
1267
1267
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1268
1268
|
};
|
|
1269
1269
|
static home = (app_id,url,params) => {
|
|
@@ -1276,8 +1276,8 @@ class Product_Url {
|
|
|
1276
1276
|
};
|
|
1277
1277
|
}
|
|
1278
1278
|
class Event_Url {
|
|
1279
|
-
static
|
|
1280
|
-
let action_url="event/
|
|
1279
|
+
static detail = (app_id,url,key,params) => {
|
|
1280
|
+
let action_url="event/detail/"+key;
|
|
1281
1281
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1282
1282
|
};
|
|
1283
1283
|
static home = (app_id,url,params) => {
|
|
@@ -1290,8 +1290,8 @@ class Event_Url {
|
|
|
1290
1290
|
};
|
|
1291
1291
|
}
|
|
1292
1292
|
class Service_Url {
|
|
1293
|
-
static
|
|
1294
|
-
let action_url="service/
|
|
1293
|
+
static detail = (app_id,url,key,params) => {
|
|
1294
|
+
let action_url="service/detail/"+key;
|
|
1295
1295
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1296
1296
|
};
|
|
1297
1297
|
static home = (app_id,url,params) => {
|
|
@@ -1304,8 +1304,8 @@ class Service_Url {
|
|
|
1304
1304
|
};
|
|
1305
1305
|
}
|
|
1306
1306
|
class Gallery_Url {
|
|
1307
|
-
static
|
|
1308
|
-
let action_url="gallery/
|
|
1307
|
+
static detail = (app_id,url,key,params) => {
|
|
1308
|
+
let action_url="gallery/detail/"+key;
|
|
1309
1309
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1310
1310
|
};
|
|
1311
1311
|
static home = (app_id,url,params) => {
|
|
@@ -1370,8 +1370,8 @@ class Item_Url {
|
|
|
1370
1370
|
};
|
|
1371
1371
|
}
|
|
1372
1372
|
class Category_Url {
|
|
1373
|
-
static
|
|
1374
|
-
let action_url="category/
|
|
1373
|
+
static detail = (app_id,url,key,params) => {
|
|
1374
|
+
let action_url="category/detail/"+key;
|
|
1375
1375
|
return get_cloud_url_main(app_id,url,action_url,params);
|
|
1376
1376
|
};
|
|
1377
1377
|
static home = (app_id,url,params) => {
|