@kmkf-fe-packages/services-components 0.5.2-alpha.10 → 0.5.2-alpha.11
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/esm/type.d.ts +8 -8
- package/package.json +2 -2
package/dist/esm/type.d.ts
CHANGED
|
@@ -110,12 +110,12 @@ export interface ComponentInterface {
|
|
|
110
110
|
erpFlag?: boolean;
|
|
111
111
|
};
|
|
112
112
|
effects?: {
|
|
113
|
-
queryWorkOrderDetail
|
|
114
|
-
handleOpenRepeatList
|
|
115
|
-
handleChangeSingleWorkOrderStatus
|
|
116
|
-
templateList
|
|
117
|
-
isEditing
|
|
118
|
-
form
|
|
113
|
+
queryWorkOrderDetail?: (r: Record) => void;
|
|
114
|
+
handleOpenRepeatList?: (r: Record) => void;
|
|
115
|
+
handleChangeSingleWorkOrderStatus?: (r: Record) => void;
|
|
116
|
+
templateList?: any[];
|
|
117
|
+
isEditing?: boolean;
|
|
118
|
+
form?: FormInstance;
|
|
119
119
|
shopList?: any[];
|
|
120
120
|
shopId?: string;
|
|
121
121
|
userList?: {
|
|
@@ -124,9 +124,9 @@ export interface ComponentInterface {
|
|
|
124
124
|
}[];
|
|
125
125
|
};
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* 端上的日志模块需要使用
|
|
128
128
|
*/
|
|
129
|
-
render: (value: any) => JSX.Element | null | JSX.Element[];
|
|
129
|
+
render: (value: any, r?: Record) => JSX.Element | null | JSX.Element[];
|
|
130
130
|
/**
|
|
131
131
|
* 客户端卡片字段渲染,record的格式为下面这种,可以直接使用
|
|
132
132
|
* {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "0.5.2-alpha.
|
|
3
|
+
"version": "0.5.2-alpha.11",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"gitHooks": {
|
|
36
36
|
"pre-commit": "lint-staged"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "78423bb2e68cab352008ecb7a107543506cb8333"
|
|
39
39
|
}
|