@bit-sun/business-component 1.0.9 → 1.0.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/.umirc.ts +1 -1
- package/dist/components/DataValidation/index.d.ts +0 -1
- package/dist/components/QueryMutipleInput/index.d.ts +5 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +17 -19
- package/dist/index.js +17 -19
- package/package.json +2 -4
- package/src/components/DataValidation/index.tsx +1 -2
- package/src/components/QueryMutipleInput/index.less +37 -0
- package/src/components/{QueryInput → QueryMutipleInput}/index.md +3 -3
- package/src/components/{QueryInput → QueryMutipleInput}/index.tsx +13 -16
- package/src/index.ts +2 -2
- package/dist/components/QueryInput/index.d.ts +0 -5
- package/src/components/QueryInput/index.less +0 -21
package/.umirc.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as DataValidation } from './components/DataValidation';
|
|
2
|
-
export { default as
|
|
2
|
+
export { default as QueryMutipleInput } from './components/QueryMutipleInput';
|
package/dist/index.esm.js
CHANGED
|
@@ -2,7 +2,6 @@ import axios from 'axios';
|
|
|
2
2
|
import React, { createContext, useContext, useEffect, forwardRef, createElement, useState } from 'react';
|
|
3
3
|
import { message, Menu, Space, Dropdown, Tooltip, Button, Checkbox, Input, Modal } from 'antd';
|
|
4
4
|
import { DragDropContext, Droppable, Draggable } from 'react-beautiful-dnd';
|
|
5
|
-
import 'antd/dist/antd.css';
|
|
6
5
|
import classNames from 'classnames';
|
|
7
6
|
import { useDebounceFn } from 'ahooks';
|
|
8
7
|
|
|
@@ -2145,10 +2144,10 @@ var DataValidation = /*#__PURE__*/function (_React$Component) {
|
|
|
2145
2144
|
return DataValidation;
|
|
2146
2145
|
}(React.Component);
|
|
2147
2146
|
|
|
2148
|
-
var css_248z$1 = ".
|
|
2147
|
+
var css_248z$1 = ".query_input_show {\n display: flex;\n}\n.query_input_expand_button {\n position: relative;\n width: 30px;\n color: #ffffff;\n cursor: pointer;\n}\n.query_input_expand_button span {\n position: absolute;\n height: 20px;\n line-height: 14px;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n}\n.query_input_wrapper {\n display: flex;\n}\n.query_input_wrapper_left {\n width: 100px;\n}\n.query_input_wrapper_right {\n color: #9e9e9e;\n}\n.query_input_textArea {\n margin-top: 15px;\n}\n";
|
|
2149
2148
|
styleInject(css_248z$1);
|
|
2150
2149
|
|
|
2151
|
-
var
|
|
2150
|
+
var QueryMutipleInput = function QueryMutipleInput(_ref) {
|
|
2152
2151
|
var onValueChange = _ref.onValueChange;
|
|
2153
2152
|
|
|
2154
2153
|
var _useState = useState(false),
|
|
@@ -2178,10 +2177,6 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2178
2177
|
onValueChange(value);
|
|
2179
2178
|
}, [value]);
|
|
2180
2179
|
|
|
2181
|
-
var showModal = function showModal() {
|
|
2182
|
-
setIsModalVisible(true);
|
|
2183
|
-
};
|
|
2184
|
-
|
|
2185
2180
|
var handleOk = function handleOk() {
|
|
2186
2181
|
formaData(popvalue);
|
|
2187
2182
|
setIsModalVisible(false);
|
|
@@ -2208,9 +2203,9 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2208
2203
|
};
|
|
2209
2204
|
|
|
2210
2205
|
return /*#__PURE__*/React.createElement("div", {
|
|
2211
|
-
className:
|
|
2212
|
-
}, /*#__PURE__*/React.createElement(
|
|
2213
|
-
|
|
2206
|
+
className: 'query_input'
|
|
2207
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
2208
|
+
class: "query_input_show"
|
|
2214
2209
|
}, /*#__PURE__*/React.createElement(Input, {
|
|
2215
2210
|
value: value,
|
|
2216
2211
|
onChange: outerChange,
|
|
@@ -2222,12 +2217,15 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2222
2217
|
e.preventDefault();
|
|
2223
2218
|
},
|
|
2224
2219
|
style: {
|
|
2225
|
-
width: 'calc(100% -
|
|
2220
|
+
width: 'calc(100% - 30px)'
|
|
2226
2221
|
},
|
|
2227
2222
|
placeholder: "\u8BF7\u8F93\u5165\uFF08\u67E5\u8BE2\u591A\u4E2A\u503C\u8BF7\u7528 ; \u6216 , \u5206\u5272\uFF09"
|
|
2228
2223
|
}), /*#__PURE__*/React.createElement(Button, {
|
|
2229
|
-
|
|
2230
|
-
|
|
2224
|
+
style: {
|
|
2225
|
+
width: '30px',
|
|
2226
|
+
padding: '2px',
|
|
2227
|
+
height: 'auto'
|
|
2228
|
+
},
|
|
2231
2229
|
type: "primary"
|
|
2232
2230
|
}, "...")), /*#__PURE__*/React.createElement(Modal, {
|
|
2233
2231
|
width: 600,
|
|
@@ -2244,13 +2242,13 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2244
2242
|
onClick: handleOk
|
|
2245
2243
|
}, "\u5F55\u5165")]
|
|
2246
2244
|
}, /*#__PURE__*/React.createElement("div", {
|
|
2247
|
-
className:
|
|
2245
|
+
className: 'query_input_wrapper'
|
|
2248
2246
|
}, /*#__PURE__*/React.createElement("div", {
|
|
2249
|
-
className:
|
|
2247
|
+
className: 'query_input_wrapper_left'
|
|
2250
2248
|
}, "\u5F55\u5165\u533A\uFF1A"), /*#__PURE__*/React.createElement("div", {
|
|
2251
|
-
className:
|
|
2249
|
+
className: 'query_input_wrapper_right'
|
|
2252
2250
|
}, /*#__PURE__*/React.createElement("div", null, "\u5982\u9700\u540C\u65F6\u4F7F\u7528\u591A\u4E2A\u503C\u8FDB\u884C\u67E5\u8BE2\uFF0C\u8BF7\u4F7F\u7528\u9017\u53F7\u3001\u5206\u53F7\u3001\u7A7A\u683C\u6216\u6362\u884C\u8FDB\u884C\u503C\u7684\u5206\u9694\uFF0C\u4E2D\u82F1\u6587\u683C\u5F0F\u7684\u7B26\u53F7\u5747\u652F\u6301"), /*#__PURE__*/React.createElement("div", {
|
|
2253
|
-
className:
|
|
2251
|
+
className: 'query_input_textArea'
|
|
2254
2252
|
}, /*#__PURE__*/React.createElement(Input.TextArea, {
|
|
2255
2253
|
value: popvalue,
|
|
2256
2254
|
onChange: onChange,
|
|
@@ -2277,10 +2275,10 @@ function ToCDB(str) {
|
|
|
2277
2275
|
* @Description:
|
|
2278
2276
|
* @Author: rodchen
|
|
2279
2277
|
* @Date: 2021-11-30 22:59:39
|
|
2280
|
-
* @LastEditTime: 2021-12-
|
|
2278
|
+
* @LastEditTime: 2021-12-29 17:43:01
|
|
2281
2279
|
* @LastEditors: rodchen
|
|
2282
2280
|
*/
|
|
2283
2281
|
var resposne = JSON.parse(localStorage.getItem('userInfo') || '{}');
|
|
2284
2282
|
axios.defaults.headers.common['sso-sessionid'] = (resposne === null || resposne === void 0 ? void 0 : resposne.sessionId) || '';
|
|
2285
2283
|
|
|
2286
|
-
export { DataValidation,
|
|
2284
|
+
export { DataValidation, QueryMutipleInput };
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,6 @@ var axios = require('axios');
|
|
|
6
6
|
var React = require('react');
|
|
7
7
|
var antd = require('antd');
|
|
8
8
|
var reactBeautifulDnd = require('react-beautiful-dnd');
|
|
9
|
-
require('antd/dist/antd.css');
|
|
10
9
|
var classNames = require('classnames');
|
|
11
10
|
var ahooks = require('ahooks');
|
|
12
11
|
|
|
@@ -2155,10 +2154,10 @@ var DataValidation = /*#__PURE__*/function (_React$Component) {
|
|
|
2155
2154
|
return DataValidation;
|
|
2156
2155
|
}(React__default['default'].Component);
|
|
2157
2156
|
|
|
2158
|
-
var css_248z$1 = ".
|
|
2157
|
+
var css_248z$1 = ".query_input_show {\n display: flex;\n}\n.query_input_expand_button {\n position: relative;\n width: 30px;\n color: #ffffff;\n cursor: pointer;\n}\n.query_input_expand_button span {\n position: absolute;\n height: 20px;\n line-height: 14px;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n}\n.query_input_wrapper {\n display: flex;\n}\n.query_input_wrapper_left {\n width: 100px;\n}\n.query_input_wrapper_right {\n color: #9e9e9e;\n}\n.query_input_textArea {\n margin-top: 15px;\n}\n";
|
|
2159
2158
|
styleInject(css_248z$1);
|
|
2160
2159
|
|
|
2161
|
-
var
|
|
2160
|
+
var QueryMutipleInput = function QueryMutipleInput(_ref) {
|
|
2162
2161
|
var onValueChange = _ref.onValueChange;
|
|
2163
2162
|
|
|
2164
2163
|
var _useState = React.useState(false),
|
|
@@ -2188,10 +2187,6 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2188
2187
|
onValueChange(value);
|
|
2189
2188
|
}, [value]);
|
|
2190
2189
|
|
|
2191
|
-
var showModal = function showModal() {
|
|
2192
|
-
setIsModalVisible(true);
|
|
2193
|
-
};
|
|
2194
|
-
|
|
2195
2190
|
var handleOk = function handleOk() {
|
|
2196
2191
|
formaData(popvalue);
|
|
2197
2192
|
setIsModalVisible(false);
|
|
@@ -2218,9 +2213,9 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2218
2213
|
};
|
|
2219
2214
|
|
|
2220
2215
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
2221
|
-
className:
|
|
2222
|
-
}, /*#__PURE__*/React__default['default'].createElement(
|
|
2223
|
-
|
|
2216
|
+
className: 'query_input'
|
|
2217
|
+
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
2218
|
+
class: "query_input_show"
|
|
2224
2219
|
}, /*#__PURE__*/React__default['default'].createElement(antd.Input, {
|
|
2225
2220
|
value: value,
|
|
2226
2221
|
onChange: outerChange,
|
|
@@ -2232,12 +2227,15 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2232
2227
|
e.preventDefault();
|
|
2233
2228
|
},
|
|
2234
2229
|
style: {
|
|
2235
|
-
width: 'calc(100% -
|
|
2230
|
+
width: 'calc(100% - 30px)'
|
|
2236
2231
|
},
|
|
2237
2232
|
placeholder: "\u8BF7\u8F93\u5165\uFF08\u67E5\u8BE2\u591A\u4E2A\u503C\u8BF7\u7528 ; \u6216 , \u5206\u5272\uFF09"
|
|
2238
2233
|
}), /*#__PURE__*/React__default['default'].createElement(antd.Button, {
|
|
2239
|
-
|
|
2240
|
-
|
|
2234
|
+
style: {
|
|
2235
|
+
width: '30px',
|
|
2236
|
+
padding: '2px',
|
|
2237
|
+
height: 'auto'
|
|
2238
|
+
},
|
|
2241
2239
|
type: "primary"
|
|
2242
2240
|
}, "...")), /*#__PURE__*/React__default['default'].createElement(antd.Modal, {
|
|
2243
2241
|
width: 600,
|
|
@@ -2254,13 +2252,13 @@ var QueryInput = function QueryInput(_ref) {
|
|
|
2254
2252
|
onClick: handleOk
|
|
2255
2253
|
}, "\u5F55\u5165")]
|
|
2256
2254
|
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
2257
|
-
className:
|
|
2255
|
+
className: 'query_input_wrapper'
|
|
2258
2256
|
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
2259
|
-
className:
|
|
2257
|
+
className: 'query_input_wrapper_left'
|
|
2260
2258
|
}, "\u5F55\u5165\u533A\uFF1A"), /*#__PURE__*/React__default['default'].createElement("div", {
|
|
2261
|
-
className:
|
|
2259
|
+
className: 'query_input_wrapper_right'
|
|
2262
2260
|
}, /*#__PURE__*/React__default['default'].createElement("div", null, "\u5982\u9700\u540C\u65F6\u4F7F\u7528\u591A\u4E2A\u503C\u8FDB\u884C\u67E5\u8BE2\uFF0C\u8BF7\u4F7F\u7528\u9017\u53F7\u3001\u5206\u53F7\u3001\u7A7A\u683C\u6216\u6362\u884C\u8FDB\u884C\u503C\u7684\u5206\u9694\uFF0C\u4E2D\u82F1\u6587\u683C\u5F0F\u7684\u7B26\u53F7\u5747\u652F\u6301"), /*#__PURE__*/React__default['default'].createElement("div", {
|
|
2263
|
-
className:
|
|
2261
|
+
className: 'query_input_textArea'
|
|
2264
2262
|
}, /*#__PURE__*/React__default['default'].createElement(antd.Input.TextArea, {
|
|
2265
2263
|
value: popvalue,
|
|
2266
2264
|
onChange: onChange,
|
|
@@ -2287,11 +2285,11 @@ function ToCDB(str) {
|
|
|
2287
2285
|
* @Description:
|
|
2288
2286
|
* @Author: rodchen
|
|
2289
2287
|
* @Date: 2021-11-30 22:59:39
|
|
2290
|
-
* @LastEditTime: 2021-12-
|
|
2288
|
+
* @LastEditTime: 2021-12-29 17:43:01
|
|
2291
2289
|
* @LastEditors: rodchen
|
|
2292
2290
|
*/
|
|
2293
2291
|
var resposne = JSON.parse(localStorage.getItem('userInfo') || '{}');
|
|
2294
2292
|
axios__default['default'].defaults.headers.common['sso-sessionid'] = (resposne === null || resposne === void 0 ? void 0 : resposne.sessionId) || '';
|
|
2295
2293
|
|
|
2296
2294
|
exports.DataValidation = DataValidation;
|
|
2297
|
-
exports.
|
|
2295
|
+
exports.QueryMutipleInput = QueryMutipleInput;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bit-sun/business-component",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"ahooks": "^3.1.2",
|
|
31
31
|
"antd": "4.17.2",
|
|
32
32
|
"axios": "^0.24.0",
|
|
33
|
-
"bs-business-component": "^1.0.1",
|
|
34
33
|
"classnames": "^2.3.1",
|
|
35
34
|
"react": "^16.12.0",
|
|
36
35
|
"react-beautiful-dnd": "10.0.0"
|
|
@@ -41,8 +40,7 @@
|
|
|
41
40
|
"father-build": "^1.17.2",
|
|
42
41
|
"gh-pages": "^3.0.0",
|
|
43
42
|
"lint-staged": "^10.0.7",
|
|
44
|
-
"prettier": "^2.2.1"
|
|
45
|
-
"yorkie": "^2.0.0"
|
|
43
|
+
"prettier": "^2.2.1"
|
|
46
44
|
},
|
|
47
45
|
"publishConfig": {
|
|
48
46
|
"access": "public"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Description:
|
|
3
3
|
* @Author: rodchen
|
|
4
4
|
* @Date: 2021-12-01 10:52:08
|
|
5
|
-
* @LastEditTime: 2021-12-
|
|
5
|
+
* @LastEditTime: 2021-12-29 17:11:56
|
|
6
6
|
* @LastEditors: rodchen
|
|
7
7
|
*/
|
|
8
8
|
// @ts-nocheck
|
|
@@ -19,7 +19,6 @@ import {
|
|
|
19
19
|
message,
|
|
20
20
|
} from 'antd';
|
|
21
21
|
import { DragDropContext, Droppable, Draggable } from 'react-beautiful-dnd';
|
|
22
|
-
import 'antd/dist/antd.css';
|
|
23
22
|
import {
|
|
24
23
|
ExclamationCircleOutlined,
|
|
25
24
|
DownOutlined,
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.query_input {
|
|
2
|
+
&_show {
|
|
3
|
+
display: flex;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
&_expand_button {
|
|
7
|
+
position: relative;
|
|
8
|
+
width: 30px;
|
|
9
|
+
color: #ffffff;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
|
|
12
|
+
span {
|
|
13
|
+
position: absolute;
|
|
14
|
+
height: 20px;
|
|
15
|
+
line-height: 14px;
|
|
16
|
+
left: 50%;
|
|
17
|
+
top: 50%;
|
|
18
|
+
transform: translate(-50%, -50%);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&_wrapper {
|
|
23
|
+
display: flex;
|
|
24
|
+
|
|
25
|
+
&_left {
|
|
26
|
+
width: 100px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&_right {
|
|
30
|
+
color: #9e9e9e;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&_textArea {
|
|
35
|
+
margin-top: 15px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -9,13 +9,13 @@ title: 批量查询组件
|
|
|
9
9
|
order: 1
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## QueryMutipleInput
|
|
13
13
|
|
|
14
14
|
Demo:
|
|
15
15
|
|
|
16
16
|
```tsx
|
|
17
17
|
import React, { useRef } from 'react';
|
|
18
|
-
import {
|
|
18
|
+
import { QueryMutipleInput } from '../../index';
|
|
19
19
|
|
|
20
20
|
export default () => {
|
|
21
21
|
const handleOnChange = (value) => {
|
|
@@ -24,7 +24,7 @@ export default () => {
|
|
|
24
24
|
|
|
25
25
|
return (
|
|
26
26
|
<div>
|
|
27
|
-
<
|
|
27
|
+
<QueryMutipleInput onValueChange={handleOnChange} />
|
|
28
28
|
</div>
|
|
29
29
|
);
|
|
30
30
|
};
|
|
@@ -2,17 +2,16 @@
|
|
|
2
2
|
* @Description:
|
|
3
3
|
* @Author: rodchen
|
|
4
4
|
* @Date: 2021-12-01 10:52:08
|
|
5
|
-
* @LastEditTime: 2021-12-29
|
|
5
|
+
* @LastEditTime: 2021-12-29 17:42:42
|
|
6
6
|
* @LastEditors: rodchen
|
|
7
7
|
*/
|
|
8
8
|
// @ts-nocheck
|
|
9
9
|
import React, { useState, useEffect } from 'react';
|
|
10
10
|
import { useDebounceFn } from 'ahooks';
|
|
11
11
|
import { Input, Button, Modal } from 'antd';
|
|
12
|
-
import '
|
|
13
|
-
import styles from './index.less';
|
|
12
|
+
import './index.less';
|
|
14
13
|
|
|
15
|
-
const
|
|
14
|
+
const QueryMutipleInput = ({ onValueChange }) => {
|
|
16
15
|
const [isModalVisible, setIsModalVisible] = useState(false);
|
|
17
16
|
const [value, setValue] = useState('');
|
|
18
17
|
const [popvalue, setPopValue] = useState('');
|
|
@@ -61,8 +60,8 @@ const QueryInput = ({ onValueChange }) => {
|
|
|
61
60
|
};
|
|
62
61
|
|
|
63
62
|
return (
|
|
64
|
-
<div className={
|
|
65
|
-
<
|
|
63
|
+
<div className={'query_input'}>
|
|
64
|
+
<div class="query_input_show">
|
|
66
65
|
<Input
|
|
67
66
|
value={value}
|
|
68
67
|
onChange={outerChange}
|
|
@@ -73,13 +72,11 @@ const QueryInput = ({ onValueChange }) => {
|
|
|
73
72
|
formaData(e.clipboardData.getData('text'));
|
|
74
73
|
e.preventDefault();
|
|
75
74
|
}}
|
|
76
|
-
style={{ width: 'calc(100% -
|
|
75
|
+
style={{ width: 'calc(100% - 30px)' }}
|
|
77
76
|
placeholder="请输入(查询多个值请用 ; 或 , 分割)"
|
|
78
77
|
/>
|
|
79
|
-
<Button
|
|
80
|
-
|
|
81
|
-
</Button>
|
|
82
|
-
</Input.Group>
|
|
78
|
+
<Button style={{width: '30px', padding: '2px', height: 'auto'}} type="primary">...</Button>
|
|
79
|
+
</div>
|
|
83
80
|
<Modal
|
|
84
81
|
width={600}
|
|
85
82
|
title="多值录入"
|
|
@@ -95,13 +92,13 @@ const QueryInput = ({ onValueChange }) => {
|
|
|
95
92
|
</Button>,
|
|
96
93
|
]}
|
|
97
94
|
>
|
|
98
|
-
<div className={
|
|
99
|
-
<div className={
|
|
100
|
-
<div className={
|
|
95
|
+
<div className={'query_input_wrapper'}>
|
|
96
|
+
<div className={'query_input_wrapper_left'}>录入区:</div>
|
|
97
|
+
<div className={'query_input_wrapper_right'}>
|
|
101
98
|
<div>
|
|
102
99
|
如需同时使用多个值进行查询,请使用逗号、分号、空格或换行进行值的分隔,中英文格式的符号均支持
|
|
103
100
|
</div>
|
|
104
|
-
<div className={
|
|
101
|
+
<div className={'query_input_textArea'}>
|
|
105
102
|
<Input.TextArea
|
|
106
103
|
value={popvalue}
|
|
107
104
|
onChange={onChange}
|
|
@@ -128,4 +125,4 @@ function ToCDB(str) {
|
|
|
128
125
|
return tmp;
|
|
129
126
|
}
|
|
130
127
|
|
|
131
|
-
export default
|
|
128
|
+
export default QueryMutipleInput;
|
package/src/index.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Description:
|
|
3
3
|
* @Author: rodchen
|
|
4
4
|
* @Date: 2021-11-30 22:59:39
|
|
5
|
-
* @LastEditTime: 2021-12-
|
|
5
|
+
* @LastEditTime: 2021-12-29 17:43:01
|
|
6
6
|
* @LastEditors: rodchen
|
|
7
7
|
*/
|
|
8
8
|
|
|
@@ -13,4 +13,4 @@ const resposne = JSON.parse(localStorage.getItem('userInfo') || '{}');
|
|
|
13
13
|
axios.defaults.headers.common['sso-sessionid'] = resposne?.sessionId || '';
|
|
14
14
|
|
|
15
15
|
export { default as DataValidation } from './components/DataValidation';
|
|
16
|
-
export { default as
|
|
16
|
+
export { default as QueryMutipleInput } from './components/QueryMutipleInput';
|