@kengic/vue 0.13.0 → 0.13.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/kengic-vue.js +1505 -1383
- package/dist/src/apis/WMS/models.d.ts +4 -2
- package/dist/src/consts/index.d.ts +4 -2
- package/dist/src/utils/kg.util.d.ts +15 -0
- package/package.json +1 -1
@@ -397,7 +397,7 @@ export declare class VarProfileDetail {
|
|
397
397
|
grp_nam?: string | null;
|
398
398
|
/** 主键. */
|
399
399
|
id?: string | null;
|
400
|
-
/**
|
400
|
+
/** 提示文字. */
|
401
401
|
placeholder?: string | null;
|
402
402
|
/** 查询条件变量名称(ProfileVariableName). */
|
403
403
|
prf_var_nam?: string | null;
|
@@ -407,11 +407,13 @@ export declare class VarProfileDetail {
|
|
407
407
|
srtseq?: number | null;
|
408
408
|
/** 表的别名. */
|
409
409
|
table_alias?: string | null;
|
410
|
+
/** 高级查询时是否将字段转换为 underscore 命名方式. */
|
411
|
+
use_underscore_when_dynamic_query_flag?: number | null;
|
410
412
|
/** 变量名称(VariableName). */
|
411
413
|
var_nam?: string | null;
|
412
414
|
/** 是否可见(VisibleFlag). */
|
413
415
|
vis_flg?: number | null;
|
414
|
-
/**
|
416
|
+
/** 控件宽度. */
|
415
417
|
width?: number | null;
|
416
418
|
constructor(obj?: VarProfileDetail);
|
417
419
|
}
|
@@ -220,7 +220,9 @@ export declare enum KG_DYNAMIC_QUERY_OPERATOR {
|
|
220
220
|
BETWEEN = "between"
|
221
221
|
}
|
222
222
|
/** 请求头部. */
|
223
|
-
export declare enum
|
223
|
+
export declare enum KG_HTTP_HEADERS {
|
224
224
|
/** 是否启用高级查询. */
|
225
|
-
|
225
|
+
KG_DYNAMIC_QUERY_ON = "Kg-Dynamic-Query-On",
|
226
|
+
/** 高级查询拼接后的 SQL. */
|
227
|
+
KG_DYNAMIC_QUERY_SQL = "Kg-Dynamic-Query-Sql"
|
226
228
|
}
|
@@ -37,6 +37,21 @@ export declare class KgUtil {
|
|
37
37
|
* @param $dayjs dayjs.
|
38
38
|
*/
|
39
39
|
static parseParams(params?: Record<string, any> | null, formID?: string | null, $dayjs?: typeof dayjs): any;
|
40
|
+
/**
|
41
|
+
* <p>处理高级查询时的请求参数, 最终拼接为一个 SQL 格式如下: `WHERE ... ORDER BY ...`.</p>
|
42
|
+
* <ol>
|
43
|
+
* <li>填充通用参数的值:
|
44
|
+
* <ul>
|
45
|
+
* <li>仓库: '{WAREHOUSE}'</li>
|
46
|
+
* </ul>
|
47
|
+
* </li>
|
48
|
+
* </ol>
|
49
|
+
* @param params 请求参数.
|
50
|
+
* @param formID 界面标识.
|
51
|
+
* @param $dayjs dayjs.
|
52
|
+
* @return 拼接好的 SQL.
|
53
|
+
*/
|
54
|
+
static parseParamsForDynamicQuery(params: Record<string, any> | null | undefined, formID: string | null | undefined, $dayjs: typeof dayjs): string;
|
40
55
|
/**
|
41
56
|
* 处理请求参数: 解析字符串类型的参数值.
|
42
57
|
* @param value 参数的原始值.
|