@kengic/vue 0.28.2-beta.13 → 0.28.2-beta.15
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/dist/kengic-vue.js +4255 -4229
- package/dist/src/const/const.vm.d.ts +33 -20
- package/dist/src/util/kg.util.d.ts +6 -1
- package/package.json +1 -1
@@ -540,38 +540,48 @@ export declare enum KG_DYNAMIC_QUERY_OPERATOR {
|
|
540
540
|
BETWEEN = "BETWEEN"
|
541
541
|
}
|
542
542
|
/** 请求头部. */
|
543
|
-
export declare
|
544
|
-
|
545
|
-
KG_PAGE_INDEX = "Kg-Page-Index",
|
546
|
-
/** 每页条数. */
|
547
|
-
KG_PAGE_SIZE = "Kg-Page-Size",
|
543
|
+
export declare const KG_HTTP_HEADER: {
|
544
|
+
KG_BUTTON_VAR_NAME: string;
|
548
545
|
/** 界面标识. */
|
549
|
-
KG_FORM_ID
|
550
|
-
KG_BUTTON_VAR_NAME = "Kg-Button-Var-Name",
|
546
|
+
KG_FORM_ID: string;
|
551
547
|
/** 是否启用高级查询. */
|
552
|
-
KG_IS_DYNAMIC_QUERY
|
553
|
-
/**
|
554
|
-
|
555
|
-
/**
|
556
|
-
|
548
|
+
KG_IS_DYNAMIC_QUERY: string;
|
549
|
+
/** 当前页码. */
|
550
|
+
KG_PAGE_INDEX: string;
|
551
|
+
/** 每页条数. */
|
552
|
+
KG_PAGE_SIZE: string;
|
553
|
+
/**
|
554
|
+
* <p>高级查询时, 每个查询字段的参数值.</p>
|
555
|
+
* <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的值.</p>
|
556
|
+
*/
|
557
|
+
KG_QUERY_OBJECT: string;
|
557
558
|
/**
|
558
|
-
* <p>高级查询时,
|
559
|
+
* <p>高级查询时, 每个查询字段的操作符.</p>
|
559
560
|
* <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的操作符.</p>
|
560
561
|
*/
|
561
|
-
KG_QUERY_OPERATOR
|
562
|
+
KG_QUERY_OPERATOR: string;
|
563
|
+
/** 查询语句中的 ORDER BY 片段. */
|
564
|
+
KG_QUERY_ORDER_BY_SQL: string;
|
562
565
|
/**
|
563
|
-
*
|
566
|
+
* <p>高级查询时, 每个查询字段的 WHERE 片段.</p>
|
567
|
+
* <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的 WHERE 片段.</p>
|
564
568
|
*/
|
565
|
-
|
569
|
+
KG_QUERY_WHERE_OBJECT: string;
|
570
|
+
/** 查询语句中的 WHERE 片段. */
|
571
|
+
KG_QUERY_WHERE_SQL: string;
|
566
572
|
/**
|
567
|
-
*
|
573
|
+
* 仓库编号.
|
568
574
|
*/
|
569
|
-
|
575
|
+
KG_WAREHOUSE: string;
|
570
576
|
/**
|
571
577
|
* 工作区.
|
572
578
|
*/
|
573
|
-
|
574
|
-
|
579
|
+
KG_WORK_AREA: string;
|
580
|
+
/**
|
581
|
+
* 工作站.
|
582
|
+
*/
|
583
|
+
KG_WORK_STATION: string;
|
584
|
+
};
|
575
585
|
/** 特殊属性:请求返回的原始响应数据. */
|
576
586
|
export declare const __KG__RESPONSE__ = "__KG__RESPONSE__";
|
577
587
|
/** 模块菜单的临时ID:数据管理. */
|
@@ -675,6 +685,9 @@ export interface IKgVarSubmitConfigProperties {
|
|
675
685
|
* <p>额外的配置属性. 对应 {@link VarButton#props} 字段.</p>
|
676
686
|
*/
|
677
687
|
export interface IKgVarButtonProperties {
|
688
|
+
/**
|
689
|
+
* 文本提示.
|
690
|
+
*/
|
678
691
|
tooltip?: TooltipProps;
|
679
692
|
}
|
680
693
|
/**
|
@@ -280,16 +280,21 @@ export declare class KgUtil {
|
|
280
280
|
operatorJSON: string;
|
281
281
|
orderBySql: string;
|
282
282
|
sql: string;
|
283
|
+
whereObjectJSON: string;
|
283
284
|
whereSql: string;
|
284
285
|
} | {
|
285
286
|
/**
|
286
|
-
*
|
287
|
+
* 查询操作符对象的 JSON 字符串.
|
287
288
|
*/
|
288
289
|
operatorJSON: string;
|
289
290
|
/**
|
290
291
|
* ORDER BY.
|
291
292
|
*/
|
292
293
|
orderBySql: string;
|
294
|
+
/**
|
295
|
+
* 查询字段的 WHERE 片段对象的 JSON 字符串.
|
296
|
+
*/
|
297
|
+
whereObjectJSON: string;
|
293
298
|
/**
|
294
299
|
* WHERE .
|
295
300
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.28.2-beta.
|
3
|
+
"version": "0.28.2-beta.15",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|