biz9-logic 3.2.22 → 3.2.23
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 +5 -0
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -7,6 +7,11 @@ Description: BiZ9 Framework: Logic-JS
|
|
|
7
7
|
const { get_new_item_main,get_data_config_main,get_cloud_url_main,get_biz_item_main,get_cloud_filter_obj_main,get_title_url_main } = require('./main');
|
|
8
8
|
const {Log,Test,Str} = require('biz9-utility');
|
|
9
9
|
|
|
10
|
+
class Message {
|
|
11
|
+
static SUCCESS="Update Success";
|
|
12
|
+
static LOGIN_GOOD="Login Success";
|
|
13
|
+
static LOGIN_BAD="Login Incorrect";
|
|
14
|
+
}
|
|
10
15
|
class DataType {
|
|
11
16
|
static get_title = (data_type) => {
|
|
12
17
|
if(!data_type){
|