dlt-for-react 2.2.1 → 2.2.2
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/README.md +4 -0
- package/assets/components/KyTitle/index.less +1 -1
- package/lib/components/HqSelector/HqWzGgSelector/index.js +364 -0
- package/lib/components/HqSelector/HqWzSelector/index.js +43 -32
- package/lib/components/KyTitle/index.js +1 -1
- package/lib/index.js +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.HqWzGgSelector = undefined;
|
|
7
|
+
|
|
8
|
+
var _tooltip = require("antd/lib/tooltip");
|
|
9
|
+
|
|
10
|
+
var _tooltip2 = _interopRequireDefault(_tooltip);
|
|
11
|
+
|
|
12
|
+
var _getPrototypeOf = require("babel-runtime/core-js/object/get-prototype-of");
|
|
13
|
+
|
|
14
|
+
var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf);
|
|
15
|
+
|
|
16
|
+
var _classCallCheck2 = require("babel-runtime/helpers/classCallCheck");
|
|
17
|
+
|
|
18
|
+
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
19
|
+
|
|
20
|
+
var _createClass2 = require("babel-runtime/helpers/createClass");
|
|
21
|
+
|
|
22
|
+
var _createClass3 = _interopRequireDefault(_createClass2);
|
|
23
|
+
|
|
24
|
+
var _possibleConstructorReturn2 = require("babel-runtime/helpers/possibleConstructorReturn");
|
|
25
|
+
|
|
26
|
+
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
|
27
|
+
|
|
28
|
+
var _inherits2 = require("babel-runtime/helpers/inherits");
|
|
29
|
+
|
|
30
|
+
var _inherits3 = _interopRequireDefault(_inherits2);
|
|
31
|
+
|
|
32
|
+
require("antd/lib/tooltip/style");
|
|
33
|
+
|
|
34
|
+
var _react = require("react");
|
|
35
|
+
|
|
36
|
+
var _react2 = _interopRequireDefault(_react);
|
|
37
|
+
|
|
38
|
+
var _NHSelector = require("../NHSelector");
|
|
39
|
+
|
|
40
|
+
var _NHSelector2 = _interopRequireDefault(_NHSelector);
|
|
41
|
+
|
|
42
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* 物资规格选择器
|
|
46
|
+
* 用法如下:(记得先引入组件)
|
|
47
|
+
|
|
48
|
+
// 物资规格选择器显示
|
|
49
|
+
this.HqWzGgSelector.show([id]);
|
|
50
|
+
|
|
51
|
+
<HqWzGgSelector
|
|
52
|
+
label={'选择物资规格'}
|
|
53
|
+
isSinger={false}
|
|
54
|
+
ref={el => this.HqWzGgSelector = el}
|
|
55
|
+
onSelect={this.onWzSelector}
|
|
56
|
+
/>
|
|
57
|
+
|
|
58
|
+
// 物资规格选择器选中事件
|
|
59
|
+
onWzSelector = (selectKeys, selectValue) => {
|
|
60
|
+
if (selectValue && selectValue.length > 0) {
|
|
61
|
+
let params = this.state.params;
|
|
62
|
+
const obj = selectValue[0];
|
|
63
|
+
params.wzbh = obj.WZBH;
|
|
64
|
+
params.wzmc = obj.WZMC;
|
|
65
|
+
params.flmc = obj.WZFL;
|
|
66
|
+
this.setState({ params });
|
|
67
|
+
} else {
|
|
68
|
+
message.warn("请选择物资规格信息!")
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
*/
|
|
73
|
+
var HqWzGgSelector = exports.HqWzGgSelector = function (_React$Component) {
|
|
74
|
+
(0, _inherits3.default)(HqWzGgSelector, _React$Component);
|
|
75
|
+
|
|
76
|
+
function HqWzGgSelector(props) {
|
|
77
|
+
(0, _classCallCheck3.default)(this, HqWzGgSelector);
|
|
78
|
+
|
|
79
|
+
var _this = (0, _possibleConstructorReturn3.default)(this, (HqWzGgSelector.__proto__ || (0, _getPrototypeOf2.default)(HqWzGgSelector)).call(this, props));
|
|
80
|
+
|
|
81
|
+
_this.show = function (initValues) {
|
|
82
|
+
_this.HqWzGgSelector.show(initValues);
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
_this.singerBottomShowRender = function (record) {
|
|
86
|
+
var wzbh = record.WZBH || record.wzbh;
|
|
87
|
+
var wzmc = record.WZMC || record.wzmc;
|
|
88
|
+
var flmc = record.FLMC || record.flmc;
|
|
89
|
+
return _react2.default.createElement(
|
|
90
|
+
"span",
|
|
91
|
+
null,
|
|
92
|
+
_react2.default.createElement(
|
|
93
|
+
"font",
|
|
94
|
+
null,
|
|
95
|
+
"(",
|
|
96
|
+
flmc,
|
|
97
|
+
")-"
|
|
98
|
+
),
|
|
99
|
+
_react2.default.createElement(
|
|
100
|
+
"font",
|
|
101
|
+
{ style: { fontSize: "14px", color: "red" } },
|
|
102
|
+
wzmc,
|
|
103
|
+
"(",
|
|
104
|
+
wzbh,
|
|
105
|
+
")"
|
|
106
|
+
)
|
|
107
|
+
);
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
_this.footerRender = function (count) {
|
|
111
|
+
return "\u603B\u8BA1\uFF1A" + count + "\u79CD";
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
_this.state = {};
|
|
115
|
+
return _this;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* 单选时底部结果渲染
|
|
120
|
+
* @param record 选中的那条结果数据
|
|
121
|
+
*/
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* 多选时显示尾部的信息
|
|
126
|
+
*/
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
(0, _createClass3.default)(HqWzGgSelector, [{
|
|
130
|
+
key: "render",
|
|
131
|
+
value: function render() {
|
|
132
|
+
var _this2 = this;
|
|
133
|
+
|
|
134
|
+
var columns = [{
|
|
135
|
+
key: "row_id",
|
|
136
|
+
title: "序号",
|
|
137
|
+
width: "60",
|
|
138
|
+
ellipsis: true,
|
|
139
|
+
render: function render(text, record) {
|
|
140
|
+
return record.ROW_ID || record.row_id;
|
|
141
|
+
}
|
|
142
|
+
}, {
|
|
143
|
+
key: "wzmc",
|
|
144
|
+
title: "物资名称",
|
|
145
|
+
width: "100",
|
|
146
|
+
sorted: false,
|
|
147
|
+
ellipsis: true,
|
|
148
|
+
render: function render(text, record) {
|
|
149
|
+
return record.WZMC || record.wzmc;
|
|
150
|
+
}
|
|
151
|
+
}, {
|
|
152
|
+
key: "dw",
|
|
153
|
+
title: "单位",
|
|
154
|
+
width: "100",
|
|
155
|
+
sorted: false,
|
|
156
|
+
ellipsis: true,
|
|
157
|
+
render: function render(text, record) {
|
|
158
|
+
return record.DW || record.dw;
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
key: "ggxh",
|
|
162
|
+
title: "规格",
|
|
163
|
+
width: "100",
|
|
164
|
+
sorted: false,
|
|
165
|
+
ellipsis: true,
|
|
166
|
+
render: function render(text, record) {
|
|
167
|
+
return record.GGXH || record.ggxh;
|
|
168
|
+
}
|
|
169
|
+
}, {
|
|
170
|
+
key: "wzbh",
|
|
171
|
+
title: "物资编号",
|
|
172
|
+
width: "100",
|
|
173
|
+
sorted: false,
|
|
174
|
+
ellipsis: true,
|
|
175
|
+
render: function render(text, record) {
|
|
176
|
+
return record.WZBH || record.wzbh;
|
|
177
|
+
}
|
|
178
|
+
}, {
|
|
179
|
+
key: "flmc",
|
|
180
|
+
title: "物资分类",
|
|
181
|
+
minWidth: "120",
|
|
182
|
+
sorted: false,
|
|
183
|
+
render: function render(text, record, index) {
|
|
184
|
+
var temp = record.FLMC || record.flmc;
|
|
185
|
+
if (temp && temp.length > 13) {
|
|
186
|
+
return _react2.default.createElement(
|
|
187
|
+
"font",
|
|
188
|
+
null,
|
|
189
|
+
_react2.default.createElement(
|
|
190
|
+
_tooltip2.default,
|
|
191
|
+
{ title: temp },
|
|
192
|
+
temp.substring(0, 13),
|
|
193
|
+
"..."
|
|
194
|
+
)
|
|
195
|
+
);
|
|
196
|
+
} else {
|
|
197
|
+
return _react2.default.createElement(
|
|
198
|
+
"font",
|
|
199
|
+
null,
|
|
200
|
+
temp
|
|
201
|
+
);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
// {
|
|
206
|
+
// key: "ggxh",
|
|
207
|
+
// title: "规格",
|
|
208
|
+
// minWidth: "120",
|
|
209
|
+
// sorted: false,
|
|
210
|
+
// render: (text, record, index) => {
|
|
211
|
+
// let temp = record.GGXH || record.ggxh;
|
|
212
|
+
// if (temp && temp.length > 13) {
|
|
213
|
+
// return (
|
|
214
|
+
// <font>
|
|
215
|
+
// <Tooltip title={temp}>{temp.substring(0, 13)}...</Tooltip>
|
|
216
|
+
// </font>
|
|
217
|
+
// );
|
|
218
|
+
// } else {
|
|
219
|
+
// return <font>{temp}</font>;
|
|
220
|
+
// }
|
|
221
|
+
// },
|
|
222
|
+
// },
|
|
223
|
+
// {
|
|
224
|
+
// key: "jysl",
|
|
225
|
+
// title: "库存数量",
|
|
226
|
+
// width: "80",
|
|
227
|
+
// sorted: false,
|
|
228
|
+
// render: (text, record, index) => {
|
|
229
|
+
// let temp = record.JYSL || record.jysl;
|
|
230
|
+
// if (temp && temp.length > 10) {
|
|
231
|
+
// return (
|
|
232
|
+
// <font>
|
|
233
|
+
// <Tooltip title={temp}>{temp.substring(0, 10)}...</Tooltip>
|
|
234
|
+
// </font>
|
|
235
|
+
// );
|
|
236
|
+
// } else {
|
|
237
|
+
// return <font>{temp}</font>;
|
|
238
|
+
// }
|
|
239
|
+
// },
|
|
240
|
+
// },
|
|
241
|
+
{
|
|
242
|
+
key: "dj",
|
|
243
|
+
title: "单价",
|
|
244
|
+
minWidth: "60",
|
|
245
|
+
sorted: false,
|
|
246
|
+
render: function render(text, record, index) {
|
|
247
|
+
var temp = record.DJ || record.dj;
|
|
248
|
+
if (temp && temp.length > 8) {
|
|
249
|
+
return _react2.default.createElement(
|
|
250
|
+
"font",
|
|
251
|
+
null,
|
|
252
|
+
_react2.default.createElement(
|
|
253
|
+
_tooltip2.default,
|
|
254
|
+
{ title: temp },
|
|
255
|
+
temp.substring(0, 8),
|
|
256
|
+
"..."
|
|
257
|
+
)
|
|
258
|
+
);
|
|
259
|
+
} else {
|
|
260
|
+
return _react2.default.createElement(
|
|
261
|
+
"font",
|
|
262
|
+
null,
|
|
263
|
+
temp
|
|
264
|
+
);
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}];
|
|
268
|
+
var _props = this.props,
|
|
269
|
+
mode = _props.mode,
|
|
270
|
+
treeWidth = _props.treeWidth,
|
|
271
|
+
tableWidth = _props.tableWidth,
|
|
272
|
+
resultWidth = _props.resultWidth,
|
|
273
|
+
_props$title = _props.title,
|
|
274
|
+
title = _props$title === undefined ? "物资规格选择器" : _props$title,
|
|
275
|
+
_props$keyField = _props.keyField,
|
|
276
|
+
keyField = _props$keyField === undefined ? "ID" : _props$keyField,
|
|
277
|
+
_props$titleField = _props.titleField,
|
|
278
|
+
titleField = _props$titleField === undefined ? "WZMC" : _props$titleField,
|
|
279
|
+
_props$searchField = _props.searchField,
|
|
280
|
+
searchField = _props$searchField === undefined ? "wzmc,ggxh,wzbh,flmc,dj" : _props$searchField,
|
|
281
|
+
_props$searchWidth = _props.searchWidth,
|
|
282
|
+
searchWidth = _props$searchWidth === undefined ? "300" : _props$searchWidth,
|
|
283
|
+
_props$placeholder = _props.placeholder,
|
|
284
|
+
placeholder = _props$placeholder === undefined ? "物资名称/规格/物资编号/物资分类/单价" : _props$placeholder,
|
|
285
|
+
sign = _props.sign,
|
|
286
|
+
treeUrl = _props.treeUrl,
|
|
287
|
+
tableUrl = _props.tableUrl,
|
|
288
|
+
_props$baseUrl = _props.baseUrl,
|
|
289
|
+
baseUrl = _props$baseUrl === undefined ? "api/hq-kfgl" : _props$baseUrl;
|
|
290
|
+
|
|
291
|
+
if (!sign && !treeUrl && !tableUrl) {
|
|
292
|
+
//没有设置方案说明此时使用默认的数据源调用
|
|
293
|
+
sign = "ly_hq_selector_wzggxx";
|
|
294
|
+
treeUrl = baseUrl + "/proData/selector/tree/list"; //默认的路径,当没有设置方案的时候,就使用此路径查询数据
|
|
295
|
+
tableUrl = baseUrl + "/proData/selector/table/list"; //默认的路径,当没有设置方案的时候,就使用此路径查询数据
|
|
296
|
+
}
|
|
297
|
+
return _react2.default.createElement(
|
|
298
|
+
"div",
|
|
299
|
+
null,
|
|
300
|
+
_react2.default.createElement(_NHSelector2.default, {
|
|
301
|
+
ref: function ref(form) {
|
|
302
|
+
_this2.HqWzGgSelector = form;
|
|
303
|
+
},
|
|
304
|
+
title: title,
|
|
305
|
+
mode: mode,
|
|
306
|
+
sign: sign,
|
|
307
|
+
treeUrl: treeUrl,
|
|
308
|
+
tableUrl: tableUrl,
|
|
309
|
+
treeWidth: treeWidth,
|
|
310
|
+
tableWidth: tableWidth,
|
|
311
|
+
resultWidth: resultWidth,
|
|
312
|
+
height: 500,
|
|
313
|
+
isSinger: this.props.isSinger,
|
|
314
|
+
columns: columns,
|
|
315
|
+
keyField: keyField,
|
|
316
|
+
titleField: titleField,
|
|
317
|
+
searchField: searchField,
|
|
318
|
+
searchWidth: searchWidth,
|
|
319
|
+
placeholder: placeholder,
|
|
320
|
+
onSelect: this.props.onSelect,
|
|
321
|
+
tableParams: this.props.tableParams,
|
|
322
|
+
tableSqlParams: this.props.tableSqlParams,
|
|
323
|
+
treeParams: this.props.treeParams,
|
|
324
|
+
treeSqlParams: this.props.treeSqlParams,
|
|
325
|
+
treeShowIcon: true,
|
|
326
|
+
singerBottomShowFlag: true,
|
|
327
|
+
singerBottomShowRender: this.singerBottomShowRender,
|
|
328
|
+
footerRender: this.footerRender,
|
|
329
|
+
baseUrl: this.props.baseUrl,
|
|
330
|
+
rangeFilter: this.props.rangeFilter,
|
|
331
|
+
rangeFilterList: this.props.rangeFilterList
|
|
332
|
+
})
|
|
333
|
+
);
|
|
334
|
+
}
|
|
335
|
+
}]);
|
|
336
|
+
return HqWzGgSelector;
|
|
337
|
+
}(_react2.default.Component);
|
|
338
|
+
|
|
339
|
+
HqWzGgSelector.defaultProps = {
|
|
340
|
+
mode: "treeAndTable",
|
|
341
|
+
treeWidth: 250,
|
|
342
|
+
tableWidth: 650,
|
|
343
|
+
resultWidth: 150,
|
|
344
|
+
sign: undefined,
|
|
345
|
+
treeUrl: undefined,
|
|
346
|
+
tableUrl: undefined,
|
|
347
|
+
title: undefined,
|
|
348
|
+
keyField: undefined,
|
|
349
|
+
titleField: undefined,
|
|
350
|
+
searchField: undefined,
|
|
351
|
+
searchWidth: undefined,
|
|
352
|
+
placeholder: undefined,
|
|
353
|
+
isSinger: false, //是否是单选,true表示是单选,false表示是多选,默认为false
|
|
354
|
+
onSelect: function onSelect() {}, //选中结果的时候的回调方法
|
|
355
|
+
treeParams: {}, //树数据过滤参数
|
|
356
|
+
treeSqlParams: undefined, //树的sql语句内的参数
|
|
357
|
+
tableParams: {}, //列表数据过滤参数
|
|
358
|
+
tableSqlParams: undefined, //列表的sql语句内的参数
|
|
359
|
+
baseUrl: undefined, //请求路径的前缀,可通过改参数控制访问的后端服务,如果不设置,则会去访问当前前端服务对应的后端服务,例如:api/sm-bpm-expansion
|
|
360
|
+
rangeFilter: undefined, //是否开启职务范围过滤
|
|
361
|
+
rangeFilterList: undefined // 自定义职务过滤列表
|
|
362
|
+
};
|
|
363
|
+
|
|
364
|
+
exports.default = HqWzGgSelector;
|
|
@@ -148,6 +148,24 @@ var HqWzSelector = exports.HqWzSelector = function (_React$Component) {
|
|
|
148
148
|
render: function render(text, record) {
|
|
149
149
|
return record.WZMC || record.wzmc;
|
|
150
150
|
}
|
|
151
|
+
}, {
|
|
152
|
+
key: "dw",
|
|
153
|
+
title: "单位",
|
|
154
|
+
width: "100",
|
|
155
|
+
sorted: false,
|
|
156
|
+
ellipsis: true,
|
|
157
|
+
render: function render(text, record) {
|
|
158
|
+
return record.DW || record.dw;
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
key: "ggxh",
|
|
162
|
+
title: "物资规格",
|
|
163
|
+
width: "100",
|
|
164
|
+
sorted: false,
|
|
165
|
+
ellipsis: true,
|
|
166
|
+
render: function render(text, record) {
|
|
167
|
+
return record.GGXH || record.ggxh;
|
|
168
|
+
}
|
|
151
169
|
}, {
|
|
152
170
|
key: "wzbh",
|
|
153
171
|
title: "物资编号",
|
|
@@ -183,33 +201,26 @@ var HqWzSelector = exports.HqWzSelector = function (_React$Component) {
|
|
|
183
201
|
);
|
|
184
202
|
}
|
|
185
203
|
}
|
|
186
|
-
},
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
"font",
|
|
207
|
-
null,
|
|
208
|
-
temp
|
|
209
|
-
);
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
}, {
|
|
204
|
+
},
|
|
205
|
+
// {
|
|
206
|
+
// key: "ggxh",
|
|
207
|
+
// title: "规格",
|
|
208
|
+
// minWidth: "120",
|
|
209
|
+
// sorted: false,
|
|
210
|
+
// render: (text, record, index) => {
|
|
211
|
+
// let temp = record.GGXH || record.ggxh;
|
|
212
|
+
// if (temp && temp.length > 13) {
|
|
213
|
+
// return (
|
|
214
|
+
// <font>
|
|
215
|
+
// <Tooltip title={temp}>{temp.substring(0, 13)}...</Tooltip>
|
|
216
|
+
// </font>
|
|
217
|
+
// );
|
|
218
|
+
// } else {
|
|
219
|
+
// return <font>{temp}</font>;
|
|
220
|
+
// }
|
|
221
|
+
// },
|
|
222
|
+
// },
|
|
223
|
+
{
|
|
213
224
|
key: "jysl",
|
|
214
225
|
title: "库存数量",
|
|
215
226
|
width: "80",
|
|
@@ -238,18 +249,18 @@ var HqWzSelector = exports.HqWzSelector = function (_React$Component) {
|
|
|
238
249
|
}, {
|
|
239
250
|
key: "dj",
|
|
240
251
|
title: "单价",
|
|
241
|
-
minWidth: "
|
|
252
|
+
minWidth: "60",
|
|
242
253
|
sorted: false,
|
|
243
254
|
render: function render(text, record, index) {
|
|
244
255
|
var temp = record.DJ || record.dj;
|
|
245
|
-
if (temp && temp.length >
|
|
256
|
+
if (temp && temp.length > 8) {
|
|
246
257
|
return _react2.default.createElement(
|
|
247
258
|
"font",
|
|
248
259
|
null,
|
|
249
260
|
_react2.default.createElement(
|
|
250
261
|
_tooltip2.default,
|
|
251
262
|
{ title: temp },
|
|
252
|
-
temp.substring(0,
|
|
263
|
+
temp.substring(0, 8),
|
|
253
264
|
"..."
|
|
254
265
|
)
|
|
255
266
|
);
|
|
@@ -274,11 +285,11 @@ var HqWzSelector = exports.HqWzSelector = function (_React$Component) {
|
|
|
274
285
|
_props$titleField = _props.titleField,
|
|
275
286
|
titleField = _props$titleField === undefined ? "WZMC" : _props$titleField,
|
|
276
287
|
_props$searchField = _props.searchField,
|
|
277
|
-
searchField = _props$searchField === undefined ? "wzmc,wzbh,flmc,dj,jysl" : _props$searchField,
|
|
288
|
+
searchField = _props$searchField === undefined ? "wzmc,ggxh,wzbh,flmc,dj,jysl" : _props$searchField,
|
|
278
289
|
_props$searchWidth = _props.searchWidth,
|
|
279
290
|
searchWidth = _props$searchWidth === undefined ? "300" : _props$searchWidth,
|
|
280
291
|
_props$placeholder = _props.placeholder,
|
|
281
|
-
placeholder = _props$placeholder === undefined ? "
|
|
292
|
+
placeholder = _props$placeholder === undefined ? "物资名称/规格/物资编号/物资分类/单价/库存数量" : _props$placeholder,
|
|
282
293
|
sign = _props.sign,
|
|
283
294
|
treeUrl = _props.treeUrl,
|
|
284
295
|
tableUrl = _props.tableUrl,
|
|
@@ -77,7 +77,7 @@ var KyTitle = function (_React$Component) {
|
|
|
77
77
|
{ className: 'KyTitle ' + className, style: style },
|
|
78
78
|
_react2.default.createElement(
|
|
79
79
|
'div',
|
|
80
|
-
{ className: 'title' },
|
|
80
|
+
{ className: 'item-title' },
|
|
81
81
|
title
|
|
82
82
|
),
|
|
83
83
|
onClick && _react2.default.createElement(
|
package/lib/index.js
CHANGED
|
@@ -247,6 +247,15 @@ Object.defineProperty(exports, 'HqWzSelector', {
|
|
|
247
247
|
}
|
|
248
248
|
});
|
|
249
249
|
|
|
250
|
+
var _HqWzGgSelector = require('./components/HqSelector/HqWzGgSelector');
|
|
251
|
+
|
|
252
|
+
Object.defineProperty(exports, 'HqWzGgSelector', {
|
|
253
|
+
enumerable: true,
|
|
254
|
+
get: function get() {
|
|
255
|
+
return _interopRequireDefault(_HqWzGgSelector).default;
|
|
256
|
+
}
|
|
257
|
+
});
|
|
258
|
+
|
|
250
259
|
var _KyTree = require('./components/KyTree');
|
|
251
260
|
|
|
252
261
|
Object.defineProperty(exports, 'KyTree', {
|
|
@@ -1081,7 +1090,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
1081
1090
|
* @Description: 组件导出配置
|
|
1082
1091
|
* @Author: jiangzhongxin
|
|
1083
1092
|
* @LastEditors: jiangzhongxin
|
|
1084
|
-
* @LastEditTime:
|
|
1093
|
+
* @LastEditTime: 2025-06-07 16:35:16
|
|
1085
1094
|
* @Copyright: 2023 LIANYI TECHNOLOGY CO.,LTD. All Rights Reserved. 联奕科技有限公司
|
|
1086
1095
|
*/
|
|
1087
1096
|
var ENV = process.env.NODE_ENV;
|