@firesoon/icons-react 3.0.2 → 3.0.3
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/es/components/sbt/suggestion/SbtDirectFill.d.ts +4 -0
- package/es/components/sbt/suggestion/SbtDirectFill.js +12 -0
- package/es/components/sbt/suggestion/SbtQuickFill.d.ts +4 -0
- package/es/components/sbt/suggestion/SbtQuickFill.js +12 -0
- package/es/components/sbt/suggestion/index.d.ts +2 -0
- package/es/components/sbt/suggestion/index.js +2 -0
- package/es/icons/sbt/suggestion/sbt-direct-fill.d.ts +17 -0
- package/es/icons/sbt/suggestion/sbt-direct-fill.js +23 -0
- package/es/icons/sbt/suggestion/sbt-quick-fill.d.ts +17 -0
- package/es/icons/sbt/suggestion/sbt-quick-fill.js +23 -0
- package/es/index.d.ts +76 -74
- package/es/index.js +76 -74
- package/lib/components/sbt/suggestion/SbtDirectFill.d.ts +4 -0
- package/lib/components/sbt/suggestion/SbtDirectFill.js +20 -0
- package/lib/components/sbt/suggestion/SbtQuickFill.d.ts +4 -0
- package/lib/components/sbt/suggestion/SbtQuickFill.js +20 -0
- package/lib/components/sbt/suggestion/index.d.ts +2 -0
- package/lib/components/sbt/suggestion/index.js +14 -0
- package/lib/icons/sbt/suggestion/sbt-direct-fill.d.ts +17 -0
- package/lib/icons/sbt/suggestion/sbt-direct-fill.js +30 -0
- package/lib/icons/sbt/suggestion/sbt-quick-fill.d.ts +17 -0
- package/lib/icons/sbt/suggestion/sbt-quick-fill.js +30 -0
- package/lib/index.d.ts +76 -74
- package/lib/index.js +88 -74
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from "../../../Icon";
|
|
4
|
+
import rootNode from "../../../icons/sbt/suggestion/sbt-direct-fill";
|
|
5
|
+
export default (function () {
|
|
6
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
7
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
8
|
+
rootNode: rootNode,
|
|
9
|
+
iconName: 'sbt-direct-fill',
|
|
10
|
+
"icon-type": 'sbt/suggestion'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from "../../../Icon";
|
|
4
|
+
import rootNode from "../../../icons/sbt/suggestion/sbt-quick-fill";
|
|
5
|
+
export default (function () {
|
|
6
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
7
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
8
|
+
rootNode: rootNode,
|
|
9
|
+
iconName: 'sbt-quick-fill',
|
|
10
|
+
"icon-type": 'sbt/suggestion'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -10,5 +10,7 @@ export { default as ProcessPass } from './ProcessPass';
|
|
|
10
10
|
export { default as QuickCompensation } from './QuickCompensation';
|
|
11
11
|
export { default as Revoke } from './Revoke';
|
|
12
12
|
export { default as SbtDirect } from './SbtDirect';
|
|
13
|
+
export { default as SbtDirectFill } from './SbtDirectFill';
|
|
13
14
|
export { default as SbtQuick } from './SbtQuick';
|
|
15
|
+
export { default as SbtQuickFill } from './SbtQuickFill';
|
|
14
16
|
export { default as Wait } from './Wait';
|
|
@@ -10,5 +10,7 @@ export { default as ProcessPass } from "./ProcessPass";
|
|
|
10
10
|
export { default as QuickCompensation } from "./QuickCompensation";
|
|
11
11
|
export { default as Revoke } from "./Revoke";
|
|
12
12
|
export { default as SbtDirect } from "./SbtDirect";
|
|
13
|
+
export { default as SbtDirectFill } from "./SbtDirectFill";
|
|
13
14
|
export { default as SbtQuick } from "./SbtQuick";
|
|
15
|
+
export { default as SbtQuickFill } from "./SbtQuickFill";
|
|
14
16
|
export { default as Wait } from "./Wait";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "sbt-direct-fill",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 28C280.04 92 92 280.04 92 512s188.04 420 420 420 420-188.04 420-420S743.96 92 512 92zm326.97 464.91C817.06 717.92 679.02 842 512 842c-105.99 0-200.31-49.97-260.69-127.63l14.74-3.95C323.98 782.14 412.63 828 512 828c157.9 0 288.76-115.82 312.25-267.14l14.72-3.95zM191.44 590.7l3.63 13.56c-1.3-4.48-2.51-9-3.63-13.56zM512 182c105.99 0 200.31 49.97 260.69 127.63l-14.74 3.95C700.02 241.87 611.37 196 512 196c-157.9 0-288.76 115.82-312.25 267.14l-14.72 3.95C206.94 306.08 344.98 182 512 182zm316.94 237.77a327.51 327.51 0 013.61 13.51l-3.61-13.51z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}, {
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M192.73 604.84l3.16 11.8 63.41-16.99-3.16-11.8zm64.06-75.85l3.3 12.31 45.2-12.11.51 7.94-29 7.77 19.41 72.45-17.08 4.58 3.2 11.93 112.39-30.12-3.2-11.93-17.7 4.75-19.42-72.45-35.16 9.42c-.17-2.65-.22-5.33-.39-7.97l48.72-13.06-3.3-12.3-46.7 12.51c-.5-2.83-.9-5.82-1.32-8.93l-13.82 1.68c.53 3.5 1.1 7.1 1.57 10.88L256.8 529zm52.48 84.86l-1.98-7.4 51.48-13.8 1.98 7.4-51.48 13.8zm-4.74-17.7l-2.02-7.54 51.48-13.8 2.02 7.54-51.48 13.8zm-4.78-17.83l-1.95-7.29 51.48-13.8 1.95 7.3-51.48 13.79zm-4.75-17.7l-2.05-7.67 51.49-13.8 2.05 7.67-51.49 13.8zm129.26-82.69l-43.57 11.68 22.14 82.62 11.42-3.06-19-70.95 21.09-5.65 18.54 69.19 11.05-2.96-21.67-80.87zm-21.32 26.44l11 41.06c2.52 10.9 3.25 20.13 2.18 27.68-1.34 7.09-5.73 13.78-13.13 20.34l9.45 8.64c7.49-6.72 12.12-14.55 13.92-23.38 1.73-9.62.84-21.49-2.62-35.9l-11-41.07-9.8 2.63zm31.98 60.07l-5.64 9.58c8.86 5.44 15.95 10.8 21.4 16.07l6.43-11.14a150.2 150.2 0 00-22.19-14.51zm-3.79-80.95l3.3 12.3 59.65-15.98-3.3-12.3-23.36 6.26c-2.4-3.94-4.86-7.58-7.18-10.73l-12.45 5.76a77.66 77.66 0 016.7 8.43l-23.36 6.26zm7.27 34.66l3.36 12.56 64.42-17.26-3.36-12.56-13.56 3.63c.98-5.37 1.86-11.13 2.32-17.44l-13.48-1.1a195.6 195.6 0 01-1.65 21.98l-10.68 2.86c-4.18-7.1-8.35-13.1-12.47-17.93l-10.68 7.85a120.94 120.94 0 0110.35 13.5l-14.57 3.91zm63.5 5.46l-51.1 13.7 13.26 49.47 12.3-3.3-1.58-5.9 26.62-7.13 1.58 5.9 12.18-3.27-13.25-49.47zm-30.42 41.66l-5.08-18.96 26.62-7.13 5.09 18.96-26.62 7.13zm144.98-130.5l-47.6 12.76a155.73 155.73 0 00-7.24-10.98l-14.27 6.51a77.86 77.86 0 016.7 8.44l-46.34 12.41 8.11 30.26 13.19-3.53-4.71-17.58L606.67 451l4.71 17.58 13.19-3.53-8.11-30.27zm-83.93 47.93l3.37 12.56 71.57-19.18-3.36-12.56-71.58 19.18zm-12.86 28.34l3.4 12.69 32.52-8.72c1.82 8.8 1.2 16.5-1.97 23.28-3.3 6.26-11.23 12.83-23.76 19.82l10.7 9.79c12.8-7.47 21.27-15.53 25.6-23.96 4.3-9.09 5.16-19.95 2.5-32.43l17.95-4.8 7.37 27.5c2.76 10.29 8.66 14.23 17.7 11.8l21.97-5.89c4.15-1.1 6.95-3.2 8.35-6 1.62-3 1.08-11.06-1.48-24.1l-13.47-.56c2.04 8.6 2.91 13.89 2.85 15.65-.2 1.8-.84 2.92-2.1 3.26l-15.44 4.13c-3.01.81-5.02-.67-6.03-4.44l-6.66-24.86 33.78-9.05-3.4-12.68-110.38 29.57zM716.81 393.9l-6.17 10.13a91.78 91.78 0 0115.01 7.82l-17.7 4.75a433.18 433.18 0 01-5.26-18.11l-13.3 3.57c1.68 6.27 3.32 12.43 5.12 18.14l-51.73 13.86 11.2 41.81c5.08 20.45 5.33 37.47.6 50.98l12.32 6.26c5.86-16.78 6-36.87.37-60.4l17.7-4.74c3.18 12.88 4.93 20.9 4.95 23.98.04 2.68-1 4.3-2.98 4.97-3.51.94-7.73 1.8-12.85 2.77l7.22 10.85c3.86-.63 7.32-1.29 10.34-2.1 6.74-1.94 10.43-5.75 11.03-11.56.58-6.35-2.06-21.25-7.94-44.71l-30.77 8.24-4.68-17.45 39.18-10.5c5.04 14.8 10.2 27.01 15.65 36.32a132.1 132.1 0 008.49 13.07 84.79 84.79 0 01-23.98 31.05l10.5 9.03a88.38 88.38 0 0023.07-28.39 58.27 58.27 0 007.04 6.19c8.14 5.76 14.92 7.98 20.45 6.5 6.28-1.68 8.54-11.84 7.06-30.42l-13.52-3.25c1.6 12.5 1.7 18.93.45 19.26-1.89.5-5.39-1.51-10.35-5.97a48.3 48.3 0 01-5.43-5.68c4.67-13.23 7.31-28.47 7.94-45.73l-13.31-1.95c-.24 12.17-1.66 23.45-4.32 33.59-.98-1.62-1.92-3.12-2.76-4.78-4.1-7.25-8.64-18.14-13.54-32.44l36.92-9.9-3.34-12.42-14.94 4 4.2-7.45a110.12 110.12 0 00-17.94-9.19zm54.17 56l3.16 11.81 63.41-16.99-3.16-11.8z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}]
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
export default node;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "sbt-quick-fill",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 28C280.04 92 92 280.04 92 512s188.04 420 420 420 420-188.04 420-420S743.96 92 512 92zm326.97 464.91C817.06 717.92 679.02 842 512 842c-105.99 0-200.31-49.97-260.69-127.63l14.74-3.95C323.98 782.14 412.63 828 512 828c157.9 0 288.76-115.82 312.25-267.14l14.72-3.95zM191.44 590.7l3.63 13.56c-1.3-4.48-2.51-9-3.63-13.56zM512 182c105.99 0 200.31 49.97 260.69 127.63l-14.74 3.95C700.02 241.87 611.37 196 512 196c-157.9 0-288.76 115.82-312.25 267.14l-14.72 3.95C206.94 306.08 344.98 182 512 182zm316.94 237.77a327.51 327.51 0 013.61 13.51l-3.61-13.51z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}, {
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M192.73 604.84l3.16 11.8 63.41-16.99-3.16-11.8zm107.12-78.9l3.26 12.18 20.84-5.59 2.56 9.54c1.48 5.53 2.52 10.9 3.11 16.13l-24.74 6.63 3.43 12.8 22.1-5.92c-.42 18.02-6.95 32.82-19.71 44.45l10.93 8.65c13.4-13.28 20.53-29.86 21.64-49.81 12.16 14.24 27.38 24.83 45.7 31.9l6.12-12.81c-17.88-5.44-32.64-14.81-44.08-27.9l30.76-8.24-3.43-12.8-8.16 2.18-10.06-37.54-26.62 7.13-4.75-17.7-12.8 3.43 4.74 17.7-20.84 5.59zm36.91 3.16l14.07-3.77 6.8 25.37-15.33 4.1c-.83-6.1-2-12.51-3.75-19.04l-1.79-6.66zm-77.13 15.02a173.45 173.45 0 014.59 34.7l11.35.19a209.97 209.97 0 00-5.7-36.83l-10.24 1.94zm34.03-12.62l-8.14 5.27-6.46-24.1-12.93 3.46 30.95 115.52 12.94-3.46-23.96-89.4c5.2 7.35 9.87 15.25 14.11 23.53l9.72-5.43a202.88 202.88 0 00-16.23-25.4zm130.6-53.57l-43.57 11.68 22.14 82.62 11.42-3.06-19-70.95 21.09-5.65 18.54 69.19 11.05-2.96-21.67-80.87zm-21.32 26.44l11 41.06c2.52 10.9 3.25 20.13 2.18 27.68-1.34 7.09-5.73 13.78-13.13 20.34l9.45 8.64c7.49-6.72 12.12-14.55 13.92-23.38 1.73-9.62.84-21.49-2.62-35.9l-11-41.07-9.8 2.63zm31.98 60.07l-5.64 9.58c8.86 5.44 15.95 10.8 21.4 16.07l6.43-11.14a150.2 150.2 0 00-22.19-14.51zm-3.79-80.95l3.3 12.3 59.65-15.98-3.3-12.3-23.36 6.26c-2.4-3.94-4.86-7.58-7.18-10.73l-12.45 5.76a77.66 77.66 0 016.7 8.43l-23.36 6.26zm7.27 34.66l3.36 12.56 64.42-17.26-3.36-12.56-13.56 3.63c.98-5.37 1.86-11.13 2.32-17.44l-13.48-1.1a195.6 195.6 0 01-1.65 21.98l-10.68 2.86c-4.18-7.1-8.35-13.1-12.47-17.93l-10.68 7.85a120.94 120.94 0 0110.35 13.5l-14.57 3.91zm63.5 5.46l-51.1 13.7 13.26 49.47 12.3-3.3-1.58-5.9 26.62-7.13 1.58 5.9 12.18-3.27-13.25-49.47zm-30.42 41.66l-5.08-18.96 26.62-7.13 5.09 18.96-26.62 7.13zm144.98-130.5l-47.6 12.76a155.73 155.73 0 00-7.24-10.98l-14.27 6.51a77.86 77.86 0 016.7 8.44l-46.34 12.41 8.11 30.26 13.19-3.53-4.71-17.58L606.67 451l4.71 17.58 13.19-3.53-8.11-30.27zm-83.93 47.93l3.37 12.56 71.57-19.18-3.36-12.56-71.58 19.18zm-12.86 28.34l3.4 12.69 32.52-8.72c1.82 8.8 1.2 16.5-1.97 23.28-3.3 6.26-11.23 12.83-23.76 19.82l10.7 9.79c12.8-7.47 21.27-15.53 25.6-23.96 4.3-9.09 5.16-19.95 2.5-32.43l17.95-4.8 7.37 27.5c2.76 10.29 8.66 14.23 17.7 11.8l21.97-5.89c4.15-1.1 6.95-3.2 8.35-6 1.62-3 1.08-11.06-1.48-24.1l-13.47-.56c2.04 8.6 2.91 13.89 2.85 15.65-.2 1.8-.84 2.92-2.1 3.26l-15.44 4.13c-3.01.81-5.02-.67-6.03-4.44l-6.66-24.86 33.78-9.05-3.4-12.68-110.38 29.57zM716.81 393.9l-6.17 10.13a91.78 91.78 0 0115.01 7.82l-17.7 4.75a433.18 433.18 0 01-5.26-18.11l-13.3 3.57c1.68 6.27 3.32 12.43 5.12 18.14l-51.73 13.86 11.2 41.81c5.08 20.45 5.33 37.47.6 50.98l12.32 6.26c5.86-16.78 6-36.87.37-60.4l17.7-4.74c3.18 12.88 4.93 20.9 4.95 23.98.04 2.68-1 4.3-2.98 4.97-3.51.94-7.73 1.8-12.85 2.77l7.22 10.85c3.86-.63 7.32-1.29 10.34-2.1 6.74-1.94 10.43-5.75 11.03-11.56.58-6.35-2.06-21.25-7.94-44.71l-30.77 8.24-4.68-17.45 39.18-10.5c5.04 14.8 10.2 27.01 15.65 36.32a132.1 132.1 0 008.49 13.07 84.79 84.79 0 01-23.98 31.05l10.5 9.03a88.38 88.38 0 0023.07-28.39 58.27 58.27 0 007.04 6.19c8.14 5.76 14.92 7.98 20.45 6.5 6.28-1.68 8.54-11.84 7.06-30.42l-13.52-3.25c1.6 12.5 1.7 18.93.45 19.26-1.89.5-5.39-1.51-10.35-5.97a48.3 48.3 0 01-5.43-5.68c4.67-13.23 7.31-28.47 7.94-45.73l-13.31-1.95c-.24 12.17-1.66 23.45-4.32 33.59-.98-1.62-1.92-3.12-2.76-4.78-4.1-7.25-8.64-18.14-13.54-32.44l36.92-9.9-3.34-12.42-14.94 4 4.2-7.45a110.12 110.12 0 00-17.94-9.19zm54.17 56l3.16 11.81 63.41-16.99-3.16-11.8z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}]
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
export default node;
|
package/es/index.d.ts
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
export { default as Payment } from './components/sbt/business-menu/Payment';
|
|
2
|
+
export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
|
|
3
|
+
export { default as SbtRetract } from './components/sbt/currency/SbtRetract';
|
|
4
|
+
export { default as SbtRetractFill } from './components/sbt/currency/SbtRetractFill';
|
|
5
|
+
export { default as ApplyFail } from './components/sbt/suggestion/ApplyFail';
|
|
6
|
+
export { default as ApplySuccess } from './components/sbt/suggestion/ApplySuccess';
|
|
7
|
+
export { default as AttestationFail } from './components/sbt/suggestion/AttestationFail';
|
|
8
|
+
export { default as Attestationing } from './components/sbt/suggestion/Attestationing';
|
|
9
|
+
export { default as ClaimsAssessment } from './components/sbt/suggestion/ClaimsAssessment';
|
|
10
|
+
export { default as Examine } from './components/sbt/suggestion/Examine';
|
|
11
|
+
export { default as Finish } from './components/sbt/suggestion/Finish';
|
|
12
|
+
export { default as ProcessFail } from './components/sbt/suggestion/ProcessFail';
|
|
13
|
+
export { default as ProcessPass } from './components/sbt/suggestion/ProcessPass';
|
|
14
|
+
export { default as QuickCompensation } from './components/sbt/suggestion/QuickCompensation';
|
|
15
|
+
export { default as Revoke } from './components/sbt/suggestion/Revoke';
|
|
16
|
+
export { default as SbtDirect } from './components/sbt/suggestion/SbtDirect';
|
|
17
|
+
export { default as SbtDirectFill } from './components/sbt/suggestion/SbtDirectFill';
|
|
18
|
+
export { default as SbtQuick } from './components/sbt/suggestion/SbtQuick';
|
|
19
|
+
export { default as SbtQuickFill } from './components/sbt/suggestion/SbtQuickFill';
|
|
20
|
+
export { default as Wait } from './components/sbt/suggestion/Wait';
|
|
1
21
|
export { default as Analyse } from './components/fs/business-menu/Analyse';
|
|
2
22
|
export { default as Annotate } from './components/fs/business-menu/Annotate';
|
|
3
23
|
export { default as AppealFeedback } from './components/fs/business-menu/AppealFeedback';
|
|
@@ -217,62 +237,6 @@ export { default as Unfold } from './components/fs/currency/Unfold';
|
|
|
217
237
|
export { default as UnfoldFill } from './components/fs/currency/UnfoldFill';
|
|
218
238
|
export { default as Visible } from './components/fs/currency/Visible';
|
|
219
239
|
export { default as VisibleFill } from './components/fs/currency/VisibleFill';
|
|
220
|
-
export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
|
|
221
|
-
export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
|
|
222
|
-
export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
|
|
223
|
-
export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
|
|
224
|
-
export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
|
|
225
|
-
export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
|
|
226
|
-
export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
|
|
227
|
-
export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
|
|
228
|
-
export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
|
|
229
|
-
export { default as Html404 } from './components/fs/old-twocolor/Html404';
|
|
230
|
-
export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
|
|
231
|
-
export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
|
|
232
|
-
export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
|
|
233
|
-
export { default as MissFill } from './components/fs/old-twocolor/MissFill';
|
|
234
|
-
export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
|
|
235
|
-
export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
|
|
236
|
-
export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
|
|
237
|
-
export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
|
|
238
|
-
export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
|
|
239
|
-
export { default as ServerError } from './components/fs/old-twocolor/ServerError';
|
|
240
|
-
export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
|
|
241
|
-
export { default as Tishi } from './components/fs/old-twocolor/Tishi';
|
|
242
|
-
export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
|
|
243
|
-
export { default as Await } from './components/fs/suggestion/Await';
|
|
244
|
-
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
245
|
-
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
246
|
-
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
247
|
-
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
248
|
-
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
249
|
-
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
250
|
-
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
251
|
-
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
252
|
-
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
253
|
-
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
254
|
-
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
255
|
-
export { default as Information } from './components/fs/suggestion/Information';
|
|
256
|
-
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
257
|
-
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
258
|
-
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
259
|
-
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
260
|
-
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
261
|
-
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
262
|
-
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
263
|
-
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
264
|
-
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
265
|
-
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
266
|
-
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
267
|
-
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
268
|
-
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
269
|
-
export { default as Success } from './components/fs/suggestion/Success';
|
|
270
|
-
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
271
|
-
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
272
|
-
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
273
|
-
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
274
|
-
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
275
|
-
export { default as Warning } from './components/fs/suggestion/Warning';
|
|
276
240
|
export { default as Account } from './components/fs/old-outlined/Account';
|
|
277
241
|
export { default as AccountFill } from './components/fs/old-outlined/AccountFill';
|
|
278
242
|
export { default as AcountManage } from './components/fs/old-outlined/AcountManage';
|
|
@@ -466,21 +430,59 @@ export { default as Zhuantifenxi } from './components/fs/old-outlined/Zhuantifen
|
|
|
466
430
|
export { default as ZhuantifenxiFill } from './components/fs/old-outlined/ZhuantifenxiFill';
|
|
467
431
|
export { default as Zhutizhibiao } from './components/fs/old-outlined/Zhutizhibiao';
|
|
468
432
|
export { default as Zygl } from './components/fs/old-outlined/Zygl';
|
|
469
|
-
export { default as
|
|
470
|
-
export { default as
|
|
471
|
-
export { default as
|
|
472
|
-
export { default as
|
|
473
|
-
export { default as
|
|
474
|
-
export { default as
|
|
475
|
-
export { default as
|
|
476
|
-
export { default as
|
|
477
|
-
export { default as
|
|
478
|
-
export { default as
|
|
479
|
-
export { default as
|
|
480
|
-
export { default as
|
|
481
|
-
export { default as
|
|
482
|
-
export { default as
|
|
483
|
-
export { default as
|
|
484
|
-
export { default as
|
|
485
|
-
export { default as
|
|
486
|
-
export { default as
|
|
433
|
+
export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
|
|
434
|
+
export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
|
|
435
|
+
export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
|
|
436
|
+
export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
|
|
437
|
+
export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
|
|
438
|
+
export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
|
|
439
|
+
export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
|
|
440
|
+
export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
|
|
441
|
+
export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
|
|
442
|
+
export { default as Html404 } from './components/fs/old-twocolor/Html404';
|
|
443
|
+
export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
|
|
444
|
+
export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
|
|
445
|
+
export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
|
|
446
|
+
export { default as MissFill } from './components/fs/old-twocolor/MissFill';
|
|
447
|
+
export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
|
|
448
|
+
export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
|
|
449
|
+
export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
|
|
450
|
+
export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
|
|
451
|
+
export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
|
|
452
|
+
export { default as ServerError } from './components/fs/old-twocolor/ServerError';
|
|
453
|
+
export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
|
|
454
|
+
export { default as Tishi } from './components/fs/old-twocolor/Tishi';
|
|
455
|
+
export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
|
|
456
|
+
export { default as Await } from './components/fs/suggestion/Await';
|
|
457
|
+
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
458
|
+
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
459
|
+
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
460
|
+
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
461
|
+
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
462
|
+
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
463
|
+
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
464
|
+
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
465
|
+
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
466
|
+
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
467
|
+
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
468
|
+
export { default as Information } from './components/fs/suggestion/Information';
|
|
469
|
+
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
470
|
+
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
471
|
+
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
472
|
+
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
473
|
+
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
474
|
+
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
475
|
+
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
476
|
+
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
477
|
+
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
478
|
+
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
479
|
+
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
480
|
+
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
481
|
+
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
482
|
+
export { default as Success } from './components/fs/suggestion/Success';
|
|
483
|
+
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
484
|
+
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
485
|
+
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
486
|
+
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
487
|
+
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
488
|
+
export { default as Warning } from './components/fs/suggestion/Warning';
|
package/es/index.js
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
export { default as Payment } from "./components/sbt/business-menu/Payment";
|
|
2
|
+
export { default as PaymentFill } from "./components/sbt/business-menu/PaymentFill";
|
|
3
|
+
export { default as SbtRetract } from "./components/sbt/currency/SbtRetract";
|
|
4
|
+
export { default as SbtRetractFill } from "./components/sbt/currency/SbtRetractFill";
|
|
5
|
+
export { default as ApplyFail } from "./components/sbt/suggestion/ApplyFail";
|
|
6
|
+
export { default as ApplySuccess } from "./components/sbt/suggestion/ApplySuccess";
|
|
7
|
+
export { default as AttestationFail } from "./components/sbt/suggestion/AttestationFail";
|
|
8
|
+
export { default as Attestationing } from "./components/sbt/suggestion/Attestationing";
|
|
9
|
+
export { default as ClaimsAssessment } from "./components/sbt/suggestion/ClaimsAssessment";
|
|
10
|
+
export { default as Examine } from "./components/sbt/suggestion/Examine";
|
|
11
|
+
export { default as Finish } from "./components/sbt/suggestion/Finish";
|
|
12
|
+
export { default as ProcessFail } from "./components/sbt/suggestion/ProcessFail";
|
|
13
|
+
export { default as ProcessPass } from "./components/sbt/suggestion/ProcessPass";
|
|
14
|
+
export { default as QuickCompensation } from "./components/sbt/suggestion/QuickCompensation";
|
|
15
|
+
export { default as Revoke } from "./components/sbt/suggestion/Revoke";
|
|
16
|
+
export { default as SbtDirect } from "./components/sbt/suggestion/SbtDirect";
|
|
17
|
+
export { default as SbtDirectFill } from "./components/sbt/suggestion/SbtDirectFill";
|
|
18
|
+
export { default as SbtQuick } from "./components/sbt/suggestion/SbtQuick";
|
|
19
|
+
export { default as SbtQuickFill } from "./components/sbt/suggestion/SbtQuickFill";
|
|
20
|
+
export { default as Wait } from "./components/sbt/suggestion/Wait";
|
|
1
21
|
export { default as Analyse } from "./components/fs/business-menu/Analyse";
|
|
2
22
|
export { default as Annotate } from "./components/fs/business-menu/Annotate";
|
|
3
23
|
export { default as AppealFeedback } from "./components/fs/business-menu/AppealFeedback";
|
|
@@ -217,62 +237,6 @@ export { default as Unfold } from "./components/fs/currency/Unfold";
|
|
|
217
237
|
export { default as UnfoldFill } from "./components/fs/currency/UnfoldFill";
|
|
218
238
|
export { default as Visible } from "./components/fs/currency/Visible";
|
|
219
239
|
export { default as VisibleFill } from "./components/fs/currency/VisibleFill";
|
|
220
|
-
export { default as Bingzuwentifankui } from "./components/fs/old-twocolor/Bingzuwentifankui";
|
|
221
|
-
export { default as BingzuwentifankuiNew } from "./components/fs/old-twocolor/BingzuwentifankuiNew";
|
|
222
|
-
export { default as CasesDoubt } from "./components/fs/old-twocolor/CasesDoubt";
|
|
223
|
-
export { default as Empty404 } from "./components/fs/old-twocolor/Empty404";
|
|
224
|
-
export { default as EmptyNetwork } from "./components/fs/old-twocolor/EmptyNetwork";
|
|
225
|
-
export { default as EmptyNormal } from "./components/fs/old-twocolor/EmptyNormal";
|
|
226
|
-
export { default as EmptyPermission } from "./components/fs/old-twocolor/EmptyPermission";
|
|
227
|
-
export { default as EmptyTable } from "./components/fs/old-twocolor/EmptyTable";
|
|
228
|
-
export { default as FailCircle } from "./components/fs/old-twocolor/FailCircle";
|
|
229
|
-
export { default as Html404 } from "./components/fs/old-twocolor/Html404";
|
|
230
|
-
export { default as Huanzhejibenxinxi } from "./components/fs/old-twocolor/Huanzhejibenxinxi";
|
|
231
|
-
export { default as LoadingCircle } from "./components/fs/old-twocolor/LoadingCircle";
|
|
232
|
-
export { default as MasterMedicalOrder } from "./components/fs/old-twocolor/MasterMedicalOrder";
|
|
233
|
-
export { default as MissFill } from "./components/fs/old-twocolor/MissFill";
|
|
234
|
-
export { default as MonitorTrend } from "./components/fs/old-twocolor/MonitorTrend";
|
|
235
|
-
export { default as NoNetwork } from "./components/fs/old-twocolor/NoNetwork";
|
|
236
|
-
export { default as NoPermissions } from "./components/fs/old-twocolor/NoPermissions";
|
|
237
|
-
export { default as ReHospitalizedTag } from "./components/fs/old-twocolor/ReHospitalizedTag";
|
|
238
|
-
export { default as Ruotishi } from "./components/fs/old-twocolor/Ruotishi";
|
|
239
|
-
export { default as ServerError } from "./components/fs/old-twocolor/ServerError";
|
|
240
|
-
export { default as SuccessCircle } from "./components/fs/old-twocolor/SuccessCircle";
|
|
241
|
-
export { default as Tishi } from "./components/fs/old-twocolor/Tishi";
|
|
242
|
-
export { default as WaitCircle } from "./components/fs/old-twocolor/WaitCircle";
|
|
243
|
-
export { default as Await } from "./components/fs/suggestion/Await";
|
|
244
|
-
export { default as ClaimFinish } from "./components/fs/suggestion/ClaimFinish";
|
|
245
|
-
export { default as ClaimsFail } from "./components/fs/suggestion/ClaimsFail";
|
|
246
|
-
export { default as CostReturn } from "./components/fs/suggestion/CostReturn";
|
|
247
|
-
export { default as CostViolate } from "./components/fs/suggestion/CostViolate";
|
|
248
|
-
export { default as CostWarning } from "./components/fs/suggestion/CostWarning";
|
|
249
|
-
export { default as DailyOperation } from "./components/fs/suggestion/DailyOperation";
|
|
250
|
-
export { default as DrgsColor } from "./components/fs/suggestion/DrgsColor";
|
|
251
|
-
export { default as Fail } from "./components/fs/suggestion/Fail";
|
|
252
|
-
export { default as FailFill } from "./components/fs/suggestion/FailFill";
|
|
253
|
-
export { default as HospitalTransfer } from "./components/fs/suggestion/HospitalTransfer";
|
|
254
|
-
export { default as Inform } from "./components/fs/suggestion/Inform";
|
|
255
|
-
export { default as Information } from "./components/fs/suggestion/Information";
|
|
256
|
-
export { default as KeyGroup } from "./components/fs/suggestion/KeyGroup";
|
|
257
|
-
export { default as Keyoffice } from "./components/fs/suggestion/Keyoffice";
|
|
258
|
-
export { default as Lack } from "./components/fs/suggestion/Lack";
|
|
259
|
-
export { default as Notice } from "./components/fs/suggestion/Notice";
|
|
260
|
-
export { default as NoticeFill } from "./components/fs/suggestion/NoticeFill";
|
|
261
|
-
export { default as Overtime } from "./components/fs/suggestion/Overtime";
|
|
262
|
-
export { default as Problem } from "./components/fs/suggestion/Problem";
|
|
263
|
-
export { default as ProblemFill } from "./components/fs/suggestion/ProblemFill";
|
|
264
|
-
export { default as Processing } from "./components/fs/suggestion/Processing";
|
|
265
|
-
export { default as RecordQuality } from "./components/fs/suggestion/RecordQuality";
|
|
266
|
-
export { default as Rectification } from "./components/fs/suggestion/Rectification";
|
|
267
|
-
export { default as Rehospitalization } from "./components/fs/suggestion/Rehospitalization";
|
|
268
|
-
export { default as Sendback } from "./components/fs/suggestion/Sendback";
|
|
269
|
-
export { default as Success } from "./components/fs/suggestion/Success";
|
|
270
|
-
export { default as SuccessFill } from "./components/fs/suggestion/SuccessFill";
|
|
271
|
-
export { default as UndipAccountColor } from "./components/fs/suggestion/UndipAccountColor";
|
|
272
|
-
export { default as UndrgAccountColor } from "./components/fs/suggestion/UndrgAccountColor";
|
|
273
|
-
export { default as UninsuranceAccountColor } from "./components/fs/suggestion/UninsuranceAccountColor";
|
|
274
|
-
export { default as UnreasonableHospitalized } from "./components/fs/suggestion/UnreasonableHospitalized";
|
|
275
|
-
export { default as Warning } from "./components/fs/suggestion/Warning";
|
|
276
240
|
export { default as Account } from "./components/fs/old-outlined/Account";
|
|
277
241
|
export { default as AccountFill } from "./components/fs/old-outlined/AccountFill";
|
|
278
242
|
export { default as AcountManage } from "./components/fs/old-outlined/AcountManage";
|
|
@@ -466,21 +430,59 @@ export { default as Zhuantifenxi } from "./components/fs/old-outlined/Zhuantifen
|
|
|
466
430
|
export { default as ZhuantifenxiFill } from "./components/fs/old-outlined/ZhuantifenxiFill";
|
|
467
431
|
export { default as Zhutizhibiao } from "./components/fs/old-outlined/Zhutizhibiao";
|
|
468
432
|
export { default as Zygl } from "./components/fs/old-outlined/Zygl";
|
|
469
|
-
export { default as
|
|
470
|
-
export { default as
|
|
471
|
-
export { default as
|
|
472
|
-
export { default as
|
|
473
|
-
export { default as
|
|
474
|
-
export { default as
|
|
475
|
-
export { default as
|
|
476
|
-
export { default as
|
|
477
|
-
export { default as
|
|
478
|
-
export { default as
|
|
479
|
-
export { default as
|
|
480
|
-
export { default as
|
|
481
|
-
export { default as
|
|
482
|
-
export { default as
|
|
483
|
-
export { default as
|
|
484
|
-
export { default as
|
|
485
|
-
export { default as
|
|
486
|
-
export { default as
|
|
433
|
+
export { default as Bingzuwentifankui } from "./components/fs/old-twocolor/Bingzuwentifankui";
|
|
434
|
+
export { default as BingzuwentifankuiNew } from "./components/fs/old-twocolor/BingzuwentifankuiNew";
|
|
435
|
+
export { default as CasesDoubt } from "./components/fs/old-twocolor/CasesDoubt";
|
|
436
|
+
export { default as Empty404 } from "./components/fs/old-twocolor/Empty404";
|
|
437
|
+
export { default as EmptyNetwork } from "./components/fs/old-twocolor/EmptyNetwork";
|
|
438
|
+
export { default as EmptyNormal } from "./components/fs/old-twocolor/EmptyNormal";
|
|
439
|
+
export { default as EmptyPermission } from "./components/fs/old-twocolor/EmptyPermission";
|
|
440
|
+
export { default as EmptyTable } from "./components/fs/old-twocolor/EmptyTable";
|
|
441
|
+
export { default as FailCircle } from "./components/fs/old-twocolor/FailCircle";
|
|
442
|
+
export { default as Html404 } from "./components/fs/old-twocolor/Html404";
|
|
443
|
+
export { default as Huanzhejibenxinxi } from "./components/fs/old-twocolor/Huanzhejibenxinxi";
|
|
444
|
+
export { default as LoadingCircle } from "./components/fs/old-twocolor/LoadingCircle";
|
|
445
|
+
export { default as MasterMedicalOrder } from "./components/fs/old-twocolor/MasterMedicalOrder";
|
|
446
|
+
export { default as MissFill } from "./components/fs/old-twocolor/MissFill";
|
|
447
|
+
export { default as MonitorTrend } from "./components/fs/old-twocolor/MonitorTrend";
|
|
448
|
+
export { default as NoNetwork } from "./components/fs/old-twocolor/NoNetwork";
|
|
449
|
+
export { default as NoPermissions } from "./components/fs/old-twocolor/NoPermissions";
|
|
450
|
+
export { default as ReHospitalizedTag } from "./components/fs/old-twocolor/ReHospitalizedTag";
|
|
451
|
+
export { default as Ruotishi } from "./components/fs/old-twocolor/Ruotishi";
|
|
452
|
+
export { default as ServerError } from "./components/fs/old-twocolor/ServerError";
|
|
453
|
+
export { default as SuccessCircle } from "./components/fs/old-twocolor/SuccessCircle";
|
|
454
|
+
export { default as Tishi } from "./components/fs/old-twocolor/Tishi";
|
|
455
|
+
export { default as WaitCircle } from "./components/fs/old-twocolor/WaitCircle";
|
|
456
|
+
export { default as Await } from "./components/fs/suggestion/Await";
|
|
457
|
+
export { default as ClaimFinish } from "./components/fs/suggestion/ClaimFinish";
|
|
458
|
+
export { default as ClaimsFail } from "./components/fs/suggestion/ClaimsFail";
|
|
459
|
+
export { default as CostReturn } from "./components/fs/suggestion/CostReturn";
|
|
460
|
+
export { default as CostViolate } from "./components/fs/suggestion/CostViolate";
|
|
461
|
+
export { default as CostWarning } from "./components/fs/suggestion/CostWarning";
|
|
462
|
+
export { default as DailyOperation } from "./components/fs/suggestion/DailyOperation";
|
|
463
|
+
export { default as DrgsColor } from "./components/fs/suggestion/DrgsColor";
|
|
464
|
+
export { default as Fail } from "./components/fs/suggestion/Fail";
|
|
465
|
+
export { default as FailFill } from "./components/fs/suggestion/FailFill";
|
|
466
|
+
export { default as HospitalTransfer } from "./components/fs/suggestion/HospitalTransfer";
|
|
467
|
+
export { default as Inform } from "./components/fs/suggestion/Inform";
|
|
468
|
+
export { default as Information } from "./components/fs/suggestion/Information";
|
|
469
|
+
export { default as KeyGroup } from "./components/fs/suggestion/KeyGroup";
|
|
470
|
+
export { default as Keyoffice } from "./components/fs/suggestion/Keyoffice";
|
|
471
|
+
export { default as Lack } from "./components/fs/suggestion/Lack";
|
|
472
|
+
export { default as Notice } from "./components/fs/suggestion/Notice";
|
|
473
|
+
export { default as NoticeFill } from "./components/fs/suggestion/NoticeFill";
|
|
474
|
+
export { default as Overtime } from "./components/fs/suggestion/Overtime";
|
|
475
|
+
export { default as Problem } from "./components/fs/suggestion/Problem";
|
|
476
|
+
export { default as ProblemFill } from "./components/fs/suggestion/ProblemFill";
|
|
477
|
+
export { default as Processing } from "./components/fs/suggestion/Processing";
|
|
478
|
+
export { default as RecordQuality } from "./components/fs/suggestion/RecordQuality";
|
|
479
|
+
export { default as Rectification } from "./components/fs/suggestion/Rectification";
|
|
480
|
+
export { default as Rehospitalization } from "./components/fs/suggestion/Rehospitalization";
|
|
481
|
+
export { default as Sendback } from "./components/fs/suggestion/Sendback";
|
|
482
|
+
export { default as Success } from "./components/fs/suggestion/Success";
|
|
483
|
+
export { default as SuccessFill } from "./components/fs/suggestion/SuccessFill";
|
|
484
|
+
export { default as UndipAccountColor } from "./components/fs/suggestion/UndipAccountColor";
|
|
485
|
+
export { default as UndrgAccountColor } from "./components/fs/suggestion/UndrgAccountColor";
|
|
486
|
+
export { default as UninsuranceAccountColor } from "./components/fs/suggestion/UninsuranceAccountColor";
|
|
487
|
+
export { default as UnreasonableHospitalized } from "./components/fs/suggestion/UnreasonableHospitalized";
|
|
488
|
+
export { default as Warning } from "./components/fs/suggestion/Warning";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _Icon = _interopRequireDefault(require("../../../Icon"));
|
|
9
|
+
var _sbtDirectFill = _interopRequireDefault(require("../../../icons/sbt/suggestion/sbt-direct-fill"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
12
|
+
var _default = function _default() {
|
|
13
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
14
|
+
return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
|
|
15
|
+
rootNode: _sbtDirectFill.default,
|
|
16
|
+
iconName: 'sbt-direct-fill',
|
|
17
|
+
"icon-type": 'sbt/suggestion'
|
|
18
|
+
}));
|
|
19
|
+
};
|
|
20
|
+
exports.default = _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _Icon = _interopRequireDefault(require("../../../Icon"));
|
|
9
|
+
var _sbtQuickFill = _interopRequireDefault(require("../../../icons/sbt/suggestion/sbt-quick-fill"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
12
|
+
var _default = function _default() {
|
|
13
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
14
|
+
return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
|
|
15
|
+
rootNode: _sbtQuickFill.default,
|
|
16
|
+
iconName: 'sbt-quick-fill',
|
|
17
|
+
"icon-type": 'sbt/suggestion'
|
|
18
|
+
}));
|
|
19
|
+
};
|
|
20
|
+
exports.default = _default;
|
|
@@ -10,5 +10,7 @@ export { default as ProcessPass } from './ProcessPass';
|
|
|
10
10
|
export { default as QuickCompensation } from './QuickCompensation';
|
|
11
11
|
export { default as Revoke } from './Revoke';
|
|
12
12
|
export { default as SbtDirect } from './SbtDirect';
|
|
13
|
+
export { default as SbtDirectFill } from './SbtDirectFill';
|
|
13
14
|
export { default as SbtQuick } from './SbtQuick';
|
|
15
|
+
export { default as SbtQuickFill } from './SbtQuickFill';
|
|
14
16
|
export { default as Wait } from './Wait';
|
|
@@ -75,12 +75,24 @@ Object.defineProperty(exports, "SbtDirect", {
|
|
|
75
75
|
return _SbtDirect.default;
|
|
76
76
|
}
|
|
77
77
|
});
|
|
78
|
+
Object.defineProperty(exports, "SbtDirectFill", {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function get() {
|
|
81
|
+
return _SbtDirectFill.default;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
78
84
|
Object.defineProperty(exports, "SbtQuick", {
|
|
79
85
|
enumerable: true,
|
|
80
86
|
get: function get() {
|
|
81
87
|
return _SbtQuick.default;
|
|
82
88
|
}
|
|
83
89
|
});
|
|
90
|
+
Object.defineProperty(exports, "SbtQuickFill", {
|
|
91
|
+
enumerable: true,
|
|
92
|
+
get: function get() {
|
|
93
|
+
return _SbtQuickFill.default;
|
|
94
|
+
}
|
|
95
|
+
});
|
|
84
96
|
Object.defineProperty(exports, "Wait", {
|
|
85
97
|
enumerable: true,
|
|
86
98
|
get: function get() {
|
|
@@ -99,6 +111,8 @@ var _ProcessPass = _interopRequireDefault(require("./ProcessPass"));
|
|
|
99
111
|
var _QuickCompensation = _interopRequireDefault(require("./QuickCompensation"));
|
|
100
112
|
var _Revoke = _interopRequireDefault(require("./Revoke"));
|
|
101
113
|
var _SbtDirect = _interopRequireDefault(require("./SbtDirect"));
|
|
114
|
+
var _SbtDirectFill = _interopRequireDefault(require("./SbtDirectFill"));
|
|
102
115
|
var _SbtQuick = _interopRequireDefault(require("./SbtQuick"));
|
|
116
|
+
var _SbtQuickFill = _interopRequireDefault(require("./SbtQuickFill"));
|
|
103
117
|
var _Wait = _interopRequireDefault(require("./Wait"));
|
|
104
118
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var node = {
|
|
8
|
+
"name": "sbt-direct-fill",
|
|
9
|
+
"nodeTree": {
|
|
10
|
+
"tag": "svg",
|
|
11
|
+
"attrs": {
|
|
12
|
+
"viewBox": "0 0 1024 1024"
|
|
13
|
+
},
|
|
14
|
+
"children": [{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 28C280.04 92 92 280.04 92 512s188.04 420 420 420 420-188.04 420-420S743.96 92 512 92zm326.97 464.91C817.06 717.92 679.02 842 512 842c-105.99 0-200.31-49.97-260.69-127.63l14.74-3.95C323.98 782.14 412.63 828 512 828c157.9 0 288.76-115.82 312.25-267.14l14.72-3.95zM191.44 590.7l3.63 13.56c-1.3-4.48-2.51-9-3.63-13.56zM512 182c105.99 0 200.31 49.97 260.69 127.63l-14.74 3.95C700.02 241.87 611.37 196 512 196c-157.9 0-288.76 115.82-312.25 267.14l-14.72 3.95C206.94 306.08 344.98 182 512 182zm316.94 237.77a327.51 327.51 0 013.61 13.51l-3.61-13.51z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}, {
|
|
21
|
+
"tag": "path",
|
|
22
|
+
"attrs": {
|
|
23
|
+
"d": "M192.73 604.84l3.16 11.8 63.41-16.99-3.16-11.8zm64.06-75.85l3.3 12.31 45.2-12.11.51 7.94-29 7.77 19.41 72.45-17.08 4.58 3.2 11.93 112.39-30.12-3.2-11.93-17.7 4.75-19.42-72.45-35.16 9.42c-.17-2.65-.22-5.33-.39-7.97l48.72-13.06-3.3-12.3-46.7 12.51c-.5-2.83-.9-5.82-1.32-8.93l-13.82 1.68c.53 3.5 1.1 7.1 1.57 10.88L256.8 529zm52.48 84.86l-1.98-7.4 51.48-13.8 1.98 7.4-51.48 13.8zm-4.74-17.7l-2.02-7.54 51.48-13.8 2.02 7.54-51.48 13.8zm-4.78-17.83l-1.95-7.29 51.48-13.8 1.95 7.3-51.48 13.79zm-4.75-17.7l-2.05-7.67 51.49-13.8 2.05 7.67-51.49 13.8zm129.26-82.69l-43.57 11.68 22.14 82.62 11.42-3.06-19-70.95 21.09-5.65 18.54 69.19 11.05-2.96-21.67-80.87zm-21.32 26.44l11 41.06c2.52 10.9 3.25 20.13 2.18 27.68-1.34 7.09-5.73 13.78-13.13 20.34l9.45 8.64c7.49-6.72 12.12-14.55 13.92-23.38 1.73-9.62.84-21.49-2.62-35.9l-11-41.07-9.8 2.63zm31.98 60.07l-5.64 9.58c8.86 5.44 15.95 10.8 21.4 16.07l6.43-11.14a150.2 150.2 0 00-22.19-14.51zm-3.79-80.95l3.3 12.3 59.65-15.98-3.3-12.3-23.36 6.26c-2.4-3.94-4.86-7.58-7.18-10.73l-12.45 5.76a77.66 77.66 0 016.7 8.43l-23.36 6.26zm7.27 34.66l3.36 12.56 64.42-17.26-3.36-12.56-13.56 3.63c.98-5.37 1.86-11.13 2.32-17.44l-13.48-1.1a195.6 195.6 0 01-1.65 21.98l-10.68 2.86c-4.18-7.1-8.35-13.1-12.47-17.93l-10.68 7.85a120.94 120.94 0 0110.35 13.5l-14.57 3.91zm63.5 5.46l-51.1 13.7 13.26 49.47 12.3-3.3-1.58-5.9 26.62-7.13 1.58 5.9 12.18-3.27-13.25-49.47zm-30.42 41.66l-5.08-18.96 26.62-7.13 5.09 18.96-26.62 7.13zm144.98-130.5l-47.6 12.76a155.73 155.73 0 00-7.24-10.98l-14.27 6.51a77.86 77.86 0 016.7 8.44l-46.34 12.41 8.11 30.26 13.19-3.53-4.71-17.58L606.67 451l4.71 17.58 13.19-3.53-8.11-30.27zm-83.93 47.93l3.37 12.56 71.57-19.18-3.36-12.56-71.58 19.18zm-12.86 28.34l3.4 12.69 32.52-8.72c1.82 8.8 1.2 16.5-1.97 23.28-3.3 6.26-11.23 12.83-23.76 19.82l10.7 9.79c12.8-7.47 21.27-15.53 25.6-23.96 4.3-9.09 5.16-19.95 2.5-32.43l17.95-4.8 7.37 27.5c2.76 10.29 8.66 14.23 17.7 11.8l21.97-5.89c4.15-1.1 6.95-3.2 8.35-6 1.62-3 1.08-11.06-1.48-24.1l-13.47-.56c2.04 8.6 2.91 13.89 2.85 15.65-.2 1.8-.84 2.92-2.1 3.26l-15.44 4.13c-3.01.81-5.02-.67-6.03-4.44l-6.66-24.86 33.78-9.05-3.4-12.68-110.38 29.57zM716.81 393.9l-6.17 10.13a91.78 91.78 0 0115.01 7.82l-17.7 4.75a433.18 433.18 0 01-5.26-18.11l-13.3 3.57c1.68 6.27 3.32 12.43 5.12 18.14l-51.73 13.86 11.2 41.81c5.08 20.45 5.33 37.47.6 50.98l12.32 6.26c5.86-16.78 6-36.87.37-60.4l17.7-4.74c3.18 12.88 4.93 20.9 4.95 23.98.04 2.68-1 4.3-2.98 4.97-3.51.94-7.73 1.8-12.85 2.77l7.22 10.85c3.86-.63 7.32-1.29 10.34-2.1 6.74-1.94 10.43-5.75 11.03-11.56.58-6.35-2.06-21.25-7.94-44.71l-30.77 8.24-4.68-17.45 39.18-10.5c5.04 14.8 10.2 27.01 15.65 36.32a132.1 132.1 0 008.49 13.07 84.79 84.79 0 01-23.98 31.05l10.5 9.03a88.38 88.38 0 0023.07-28.39 58.27 58.27 0 007.04 6.19c8.14 5.76 14.92 7.98 20.45 6.5 6.28-1.68 8.54-11.84 7.06-30.42l-13.52-3.25c1.6 12.5 1.7 18.93.45 19.26-1.89.5-5.39-1.51-10.35-5.97a48.3 48.3 0 01-5.43-5.68c4.67-13.23 7.31-28.47 7.94-45.73l-13.31-1.95c-.24 12.17-1.66 23.45-4.32 33.59-.98-1.62-1.92-3.12-2.76-4.78-4.1-7.25-8.64-18.14-13.54-32.44l36.92-9.9-3.34-12.42-14.94 4 4.2-7.45a110.12 110.12 0 00-17.94-9.19zm54.17 56l3.16 11.81 63.41-16.99-3.16-11.8z"
|
|
24
|
+
},
|
|
25
|
+
"children": []
|
|
26
|
+
}]
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
var _default = node;
|
|
30
|
+
exports.default = _default;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var node = {
|
|
8
|
+
"name": "sbt-quick-fill",
|
|
9
|
+
"nodeTree": {
|
|
10
|
+
"tag": "svg",
|
|
11
|
+
"attrs": {
|
|
12
|
+
"viewBox": "0 0 1024 1024"
|
|
13
|
+
},
|
|
14
|
+
"children": [{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 28C280.04 92 92 280.04 92 512s188.04 420 420 420 420-188.04 420-420S743.96 92 512 92zm326.97 464.91C817.06 717.92 679.02 842 512 842c-105.99 0-200.31-49.97-260.69-127.63l14.74-3.95C323.98 782.14 412.63 828 512 828c157.9 0 288.76-115.82 312.25-267.14l14.72-3.95zM191.44 590.7l3.63 13.56c-1.3-4.48-2.51-9-3.63-13.56zM512 182c105.99 0 200.31 49.97 260.69 127.63l-14.74 3.95C700.02 241.87 611.37 196 512 196c-157.9 0-288.76 115.82-312.25 267.14l-14.72 3.95C206.94 306.08 344.98 182 512 182zm316.94 237.77a327.51 327.51 0 013.61 13.51l-3.61-13.51z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}, {
|
|
21
|
+
"tag": "path",
|
|
22
|
+
"attrs": {
|
|
23
|
+
"d": "M192.73 604.84l3.16 11.8 63.41-16.99-3.16-11.8zm107.12-78.9l3.26 12.18 20.84-5.59 2.56 9.54c1.48 5.53 2.52 10.9 3.11 16.13l-24.74 6.63 3.43 12.8 22.1-5.92c-.42 18.02-6.95 32.82-19.71 44.45l10.93 8.65c13.4-13.28 20.53-29.86 21.64-49.81 12.16 14.24 27.38 24.83 45.7 31.9l6.12-12.81c-17.88-5.44-32.64-14.81-44.08-27.9l30.76-8.24-3.43-12.8-8.16 2.18-10.06-37.54-26.62 7.13-4.75-17.7-12.8 3.43 4.74 17.7-20.84 5.59zm36.91 3.16l14.07-3.77 6.8 25.37-15.33 4.1c-.83-6.1-2-12.51-3.75-19.04l-1.79-6.66zm-77.13 15.02a173.45 173.45 0 014.59 34.7l11.35.19a209.97 209.97 0 00-5.7-36.83l-10.24 1.94zm34.03-12.62l-8.14 5.27-6.46-24.1-12.93 3.46 30.95 115.52 12.94-3.46-23.96-89.4c5.2 7.35 9.87 15.25 14.11 23.53l9.72-5.43a202.88 202.88 0 00-16.23-25.4zm130.6-53.57l-43.57 11.68 22.14 82.62 11.42-3.06-19-70.95 21.09-5.65 18.54 69.19 11.05-2.96-21.67-80.87zm-21.32 26.44l11 41.06c2.52 10.9 3.25 20.13 2.18 27.68-1.34 7.09-5.73 13.78-13.13 20.34l9.45 8.64c7.49-6.72 12.12-14.55 13.92-23.38 1.73-9.62.84-21.49-2.62-35.9l-11-41.07-9.8 2.63zm31.98 60.07l-5.64 9.58c8.86 5.44 15.95 10.8 21.4 16.07l6.43-11.14a150.2 150.2 0 00-22.19-14.51zm-3.79-80.95l3.3 12.3 59.65-15.98-3.3-12.3-23.36 6.26c-2.4-3.94-4.86-7.58-7.18-10.73l-12.45 5.76a77.66 77.66 0 016.7 8.43l-23.36 6.26zm7.27 34.66l3.36 12.56 64.42-17.26-3.36-12.56-13.56 3.63c.98-5.37 1.86-11.13 2.32-17.44l-13.48-1.1a195.6 195.6 0 01-1.65 21.98l-10.68 2.86c-4.18-7.1-8.35-13.1-12.47-17.93l-10.68 7.85a120.94 120.94 0 0110.35 13.5l-14.57 3.91zm63.5 5.46l-51.1 13.7 13.26 49.47 12.3-3.3-1.58-5.9 26.62-7.13 1.58 5.9 12.18-3.27-13.25-49.47zm-30.42 41.66l-5.08-18.96 26.62-7.13 5.09 18.96-26.62 7.13zm144.98-130.5l-47.6 12.76a155.73 155.73 0 00-7.24-10.98l-14.27 6.51a77.86 77.86 0 016.7 8.44l-46.34 12.41 8.11 30.26 13.19-3.53-4.71-17.58L606.67 451l4.71 17.58 13.19-3.53-8.11-30.27zm-83.93 47.93l3.37 12.56 71.57-19.18-3.36-12.56-71.58 19.18zm-12.86 28.34l3.4 12.69 32.52-8.72c1.82 8.8 1.2 16.5-1.97 23.28-3.3 6.26-11.23 12.83-23.76 19.82l10.7 9.79c12.8-7.47 21.27-15.53 25.6-23.96 4.3-9.09 5.16-19.95 2.5-32.43l17.95-4.8 7.37 27.5c2.76 10.29 8.66 14.23 17.7 11.8l21.97-5.89c4.15-1.1 6.95-3.2 8.35-6 1.62-3 1.08-11.06-1.48-24.1l-13.47-.56c2.04 8.6 2.91 13.89 2.85 15.65-.2 1.8-.84 2.92-2.1 3.26l-15.44 4.13c-3.01.81-5.02-.67-6.03-4.44l-6.66-24.86 33.78-9.05-3.4-12.68-110.38 29.57zM716.81 393.9l-6.17 10.13a91.78 91.78 0 0115.01 7.82l-17.7 4.75a433.18 433.18 0 01-5.26-18.11l-13.3 3.57c1.68 6.27 3.32 12.43 5.12 18.14l-51.73 13.86 11.2 41.81c5.08 20.45 5.33 37.47.6 50.98l12.32 6.26c5.86-16.78 6-36.87.37-60.4l17.7-4.74c3.18 12.88 4.93 20.9 4.95 23.98.04 2.68-1 4.3-2.98 4.97-3.51.94-7.73 1.8-12.85 2.77l7.22 10.85c3.86-.63 7.32-1.29 10.34-2.1 6.74-1.94 10.43-5.75 11.03-11.56.58-6.35-2.06-21.25-7.94-44.71l-30.77 8.24-4.68-17.45 39.18-10.5c5.04 14.8 10.2 27.01 15.65 36.32a132.1 132.1 0 008.49 13.07 84.79 84.79 0 01-23.98 31.05l10.5 9.03a88.38 88.38 0 0023.07-28.39 58.27 58.27 0 007.04 6.19c8.14 5.76 14.92 7.98 20.45 6.5 6.28-1.68 8.54-11.84 7.06-30.42l-13.52-3.25c1.6 12.5 1.7 18.93.45 19.26-1.89.5-5.39-1.51-10.35-5.97a48.3 48.3 0 01-5.43-5.68c4.67-13.23 7.31-28.47 7.94-45.73l-13.31-1.95c-.24 12.17-1.66 23.45-4.32 33.59-.98-1.62-1.92-3.12-2.76-4.78-4.1-7.25-8.64-18.14-13.54-32.44l36.92-9.9-3.34-12.42-14.94 4 4.2-7.45a110.12 110.12 0 00-17.94-9.19zm54.17 56l3.16 11.81 63.41-16.99-3.16-11.8z"
|
|
24
|
+
},
|
|
25
|
+
"children": []
|
|
26
|
+
}]
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
var _default = node;
|
|
30
|
+
exports.default = _default;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
export { default as Payment } from './components/sbt/business-menu/Payment';
|
|
2
|
+
export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
|
|
3
|
+
export { default as SbtRetract } from './components/sbt/currency/SbtRetract';
|
|
4
|
+
export { default as SbtRetractFill } from './components/sbt/currency/SbtRetractFill';
|
|
5
|
+
export { default as ApplyFail } from './components/sbt/suggestion/ApplyFail';
|
|
6
|
+
export { default as ApplySuccess } from './components/sbt/suggestion/ApplySuccess';
|
|
7
|
+
export { default as AttestationFail } from './components/sbt/suggestion/AttestationFail';
|
|
8
|
+
export { default as Attestationing } from './components/sbt/suggestion/Attestationing';
|
|
9
|
+
export { default as ClaimsAssessment } from './components/sbt/suggestion/ClaimsAssessment';
|
|
10
|
+
export { default as Examine } from './components/sbt/suggestion/Examine';
|
|
11
|
+
export { default as Finish } from './components/sbt/suggestion/Finish';
|
|
12
|
+
export { default as ProcessFail } from './components/sbt/suggestion/ProcessFail';
|
|
13
|
+
export { default as ProcessPass } from './components/sbt/suggestion/ProcessPass';
|
|
14
|
+
export { default as QuickCompensation } from './components/sbt/suggestion/QuickCompensation';
|
|
15
|
+
export { default as Revoke } from './components/sbt/suggestion/Revoke';
|
|
16
|
+
export { default as SbtDirect } from './components/sbt/suggestion/SbtDirect';
|
|
17
|
+
export { default as SbtDirectFill } from './components/sbt/suggestion/SbtDirectFill';
|
|
18
|
+
export { default as SbtQuick } from './components/sbt/suggestion/SbtQuick';
|
|
19
|
+
export { default as SbtQuickFill } from './components/sbt/suggestion/SbtQuickFill';
|
|
20
|
+
export { default as Wait } from './components/sbt/suggestion/Wait';
|
|
1
21
|
export { default as Analyse } from './components/fs/business-menu/Analyse';
|
|
2
22
|
export { default as Annotate } from './components/fs/business-menu/Annotate';
|
|
3
23
|
export { default as AppealFeedback } from './components/fs/business-menu/AppealFeedback';
|
|
@@ -217,62 +237,6 @@ export { default as Unfold } from './components/fs/currency/Unfold';
|
|
|
217
237
|
export { default as UnfoldFill } from './components/fs/currency/UnfoldFill';
|
|
218
238
|
export { default as Visible } from './components/fs/currency/Visible';
|
|
219
239
|
export { default as VisibleFill } from './components/fs/currency/VisibleFill';
|
|
220
|
-
export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
|
|
221
|
-
export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
|
|
222
|
-
export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
|
|
223
|
-
export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
|
|
224
|
-
export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
|
|
225
|
-
export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
|
|
226
|
-
export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
|
|
227
|
-
export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
|
|
228
|
-
export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
|
|
229
|
-
export { default as Html404 } from './components/fs/old-twocolor/Html404';
|
|
230
|
-
export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
|
|
231
|
-
export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
|
|
232
|
-
export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
|
|
233
|
-
export { default as MissFill } from './components/fs/old-twocolor/MissFill';
|
|
234
|
-
export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
|
|
235
|
-
export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
|
|
236
|
-
export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
|
|
237
|
-
export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
|
|
238
|
-
export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
|
|
239
|
-
export { default as ServerError } from './components/fs/old-twocolor/ServerError';
|
|
240
|
-
export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
|
|
241
|
-
export { default as Tishi } from './components/fs/old-twocolor/Tishi';
|
|
242
|
-
export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
|
|
243
|
-
export { default as Await } from './components/fs/suggestion/Await';
|
|
244
|
-
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
245
|
-
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
246
|
-
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
247
|
-
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
248
|
-
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
249
|
-
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
250
|
-
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
251
|
-
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
252
|
-
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
253
|
-
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
254
|
-
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
255
|
-
export { default as Information } from './components/fs/suggestion/Information';
|
|
256
|
-
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
257
|
-
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
258
|
-
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
259
|
-
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
260
|
-
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
261
|
-
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
262
|
-
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
263
|
-
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
264
|
-
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
265
|
-
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
266
|
-
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
267
|
-
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
268
|
-
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
269
|
-
export { default as Success } from './components/fs/suggestion/Success';
|
|
270
|
-
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
271
|
-
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
272
|
-
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
273
|
-
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
274
|
-
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
275
|
-
export { default as Warning } from './components/fs/suggestion/Warning';
|
|
276
240
|
export { default as Account } from './components/fs/old-outlined/Account';
|
|
277
241
|
export { default as AccountFill } from './components/fs/old-outlined/AccountFill';
|
|
278
242
|
export { default as AcountManage } from './components/fs/old-outlined/AcountManage';
|
|
@@ -466,21 +430,59 @@ export { default as Zhuantifenxi } from './components/fs/old-outlined/Zhuantifen
|
|
|
466
430
|
export { default as ZhuantifenxiFill } from './components/fs/old-outlined/ZhuantifenxiFill';
|
|
467
431
|
export { default as Zhutizhibiao } from './components/fs/old-outlined/Zhutizhibiao';
|
|
468
432
|
export { default as Zygl } from './components/fs/old-outlined/Zygl';
|
|
469
|
-
export { default as
|
|
470
|
-
export { default as
|
|
471
|
-
export { default as
|
|
472
|
-
export { default as
|
|
473
|
-
export { default as
|
|
474
|
-
export { default as
|
|
475
|
-
export { default as
|
|
476
|
-
export { default as
|
|
477
|
-
export { default as
|
|
478
|
-
export { default as
|
|
479
|
-
export { default as
|
|
480
|
-
export { default as
|
|
481
|
-
export { default as
|
|
482
|
-
export { default as
|
|
483
|
-
export { default as
|
|
484
|
-
export { default as
|
|
485
|
-
export { default as
|
|
486
|
-
export { default as
|
|
433
|
+
export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
|
|
434
|
+
export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
|
|
435
|
+
export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
|
|
436
|
+
export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
|
|
437
|
+
export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
|
|
438
|
+
export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
|
|
439
|
+
export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
|
|
440
|
+
export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
|
|
441
|
+
export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
|
|
442
|
+
export { default as Html404 } from './components/fs/old-twocolor/Html404';
|
|
443
|
+
export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
|
|
444
|
+
export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
|
|
445
|
+
export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
|
|
446
|
+
export { default as MissFill } from './components/fs/old-twocolor/MissFill';
|
|
447
|
+
export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
|
|
448
|
+
export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
|
|
449
|
+
export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
|
|
450
|
+
export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
|
|
451
|
+
export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
|
|
452
|
+
export { default as ServerError } from './components/fs/old-twocolor/ServerError';
|
|
453
|
+
export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
|
|
454
|
+
export { default as Tishi } from './components/fs/old-twocolor/Tishi';
|
|
455
|
+
export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
|
|
456
|
+
export { default as Await } from './components/fs/suggestion/Await';
|
|
457
|
+
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
458
|
+
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
459
|
+
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
460
|
+
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
461
|
+
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
462
|
+
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
463
|
+
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
464
|
+
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
465
|
+
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
466
|
+
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
467
|
+
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
468
|
+
export { default as Information } from './components/fs/suggestion/Information';
|
|
469
|
+
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
470
|
+
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
471
|
+
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
472
|
+
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
473
|
+
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
474
|
+
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
475
|
+
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
476
|
+
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
477
|
+
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
478
|
+
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
479
|
+
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
480
|
+
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
481
|
+
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
482
|
+
export { default as Success } from './components/fs/suggestion/Success';
|
|
483
|
+
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
484
|
+
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
485
|
+
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
486
|
+
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
487
|
+
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
488
|
+
export { default as Warning } from './components/fs/suggestion/Warning';
|
package/lib/index.js
CHANGED
|
@@ -2253,12 +2253,24 @@ Object.defineProperty(exports, "SbtDirect", {
|
|
|
2253
2253
|
return _SbtDirect.default;
|
|
2254
2254
|
}
|
|
2255
2255
|
});
|
|
2256
|
+
Object.defineProperty(exports, "SbtDirectFill", {
|
|
2257
|
+
enumerable: true,
|
|
2258
|
+
get: function get() {
|
|
2259
|
+
return _SbtDirectFill.default;
|
|
2260
|
+
}
|
|
2261
|
+
});
|
|
2256
2262
|
Object.defineProperty(exports, "SbtQuick", {
|
|
2257
2263
|
enumerable: true,
|
|
2258
2264
|
get: function get() {
|
|
2259
2265
|
return _SbtQuick.default;
|
|
2260
2266
|
}
|
|
2261
2267
|
});
|
|
2268
|
+
Object.defineProperty(exports, "SbtQuickFill", {
|
|
2269
|
+
enumerable: true,
|
|
2270
|
+
get: function get() {
|
|
2271
|
+
return _SbtQuickFill.default;
|
|
2272
|
+
}
|
|
2273
|
+
});
|
|
2262
2274
|
Object.defineProperty(exports, "SbtRetract", {
|
|
2263
2275
|
enumerable: true,
|
|
2264
2276
|
get: function get() {
|
|
@@ -2919,6 +2931,26 @@ Object.defineProperty(exports, "Zygl", {
|
|
|
2919
2931
|
return _Zygl.default;
|
|
2920
2932
|
}
|
|
2921
2933
|
});
|
|
2934
|
+
var _Payment = _interopRequireDefault(require("./components/sbt/business-menu/Payment"));
|
|
2935
|
+
var _PaymentFill = _interopRequireDefault(require("./components/sbt/business-menu/PaymentFill"));
|
|
2936
|
+
var _SbtRetract = _interopRequireDefault(require("./components/sbt/currency/SbtRetract"));
|
|
2937
|
+
var _SbtRetractFill = _interopRequireDefault(require("./components/sbt/currency/SbtRetractFill"));
|
|
2938
|
+
var _ApplyFail = _interopRequireDefault(require("./components/sbt/suggestion/ApplyFail"));
|
|
2939
|
+
var _ApplySuccess = _interopRequireDefault(require("./components/sbt/suggestion/ApplySuccess"));
|
|
2940
|
+
var _AttestationFail = _interopRequireDefault(require("./components/sbt/suggestion/AttestationFail"));
|
|
2941
|
+
var _Attestationing = _interopRequireDefault(require("./components/sbt/suggestion/Attestationing"));
|
|
2942
|
+
var _ClaimsAssessment = _interopRequireDefault(require("./components/sbt/suggestion/ClaimsAssessment"));
|
|
2943
|
+
var _Examine = _interopRequireDefault(require("./components/sbt/suggestion/Examine"));
|
|
2944
|
+
var _Finish = _interopRequireDefault(require("./components/sbt/suggestion/Finish"));
|
|
2945
|
+
var _ProcessFail = _interopRequireDefault(require("./components/sbt/suggestion/ProcessFail"));
|
|
2946
|
+
var _ProcessPass = _interopRequireDefault(require("./components/sbt/suggestion/ProcessPass"));
|
|
2947
|
+
var _QuickCompensation = _interopRequireDefault(require("./components/sbt/suggestion/QuickCompensation"));
|
|
2948
|
+
var _Revoke = _interopRequireDefault(require("./components/sbt/suggestion/Revoke"));
|
|
2949
|
+
var _SbtDirect = _interopRequireDefault(require("./components/sbt/suggestion/SbtDirect"));
|
|
2950
|
+
var _SbtDirectFill = _interopRequireDefault(require("./components/sbt/suggestion/SbtDirectFill"));
|
|
2951
|
+
var _SbtQuick = _interopRequireDefault(require("./components/sbt/suggestion/SbtQuick"));
|
|
2952
|
+
var _SbtQuickFill = _interopRequireDefault(require("./components/sbt/suggestion/SbtQuickFill"));
|
|
2953
|
+
var _Wait = _interopRequireDefault(require("./components/sbt/suggestion/Wait"));
|
|
2922
2954
|
var _Analyse = _interopRequireDefault(require("./components/fs/business-menu/Analyse"));
|
|
2923
2955
|
var _Annotate = _interopRequireDefault(require("./components/fs/business-menu/Annotate"));
|
|
2924
2956
|
var _AppealFeedback = _interopRequireDefault(require("./components/fs/business-menu/AppealFeedback"));
|
|
@@ -3138,62 +3170,6 @@ var _Unfold = _interopRequireDefault(require("./components/fs/currency/Unfold"))
|
|
|
3138
3170
|
var _UnfoldFill = _interopRequireDefault(require("./components/fs/currency/UnfoldFill"));
|
|
3139
3171
|
var _Visible = _interopRequireDefault(require("./components/fs/currency/Visible"));
|
|
3140
3172
|
var _VisibleFill = _interopRequireDefault(require("./components/fs/currency/VisibleFill"));
|
|
3141
|
-
var _Bingzuwentifankui = _interopRequireDefault(require("./components/fs/old-twocolor/Bingzuwentifankui"));
|
|
3142
|
-
var _BingzuwentifankuiNew = _interopRequireDefault(require("./components/fs/old-twocolor/BingzuwentifankuiNew"));
|
|
3143
|
-
var _CasesDoubt = _interopRequireDefault(require("./components/fs/old-twocolor/CasesDoubt"));
|
|
3144
|
-
var _Empty = _interopRequireDefault(require("./components/fs/old-twocolor/Empty404"));
|
|
3145
|
-
var _EmptyNetwork = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyNetwork"));
|
|
3146
|
-
var _EmptyNormal = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyNormal"));
|
|
3147
|
-
var _EmptyPermission = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyPermission"));
|
|
3148
|
-
var _EmptyTable = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyTable"));
|
|
3149
|
-
var _FailCircle = _interopRequireDefault(require("./components/fs/old-twocolor/FailCircle"));
|
|
3150
|
-
var _Html = _interopRequireDefault(require("./components/fs/old-twocolor/Html404"));
|
|
3151
|
-
var _Huanzhejibenxinxi = _interopRequireDefault(require("./components/fs/old-twocolor/Huanzhejibenxinxi"));
|
|
3152
|
-
var _LoadingCircle = _interopRequireDefault(require("./components/fs/old-twocolor/LoadingCircle"));
|
|
3153
|
-
var _MasterMedicalOrder = _interopRequireDefault(require("./components/fs/old-twocolor/MasterMedicalOrder"));
|
|
3154
|
-
var _MissFill = _interopRequireDefault(require("./components/fs/old-twocolor/MissFill"));
|
|
3155
|
-
var _MonitorTrend = _interopRequireDefault(require("./components/fs/old-twocolor/MonitorTrend"));
|
|
3156
|
-
var _NoNetwork = _interopRequireDefault(require("./components/fs/old-twocolor/NoNetwork"));
|
|
3157
|
-
var _NoPermissions = _interopRequireDefault(require("./components/fs/old-twocolor/NoPermissions"));
|
|
3158
|
-
var _ReHospitalizedTag = _interopRequireDefault(require("./components/fs/old-twocolor/ReHospitalizedTag"));
|
|
3159
|
-
var _Ruotishi = _interopRequireDefault(require("./components/fs/old-twocolor/Ruotishi"));
|
|
3160
|
-
var _ServerError = _interopRequireDefault(require("./components/fs/old-twocolor/ServerError"));
|
|
3161
|
-
var _SuccessCircle = _interopRequireDefault(require("./components/fs/old-twocolor/SuccessCircle"));
|
|
3162
|
-
var _Tishi = _interopRequireDefault(require("./components/fs/old-twocolor/Tishi"));
|
|
3163
|
-
var _WaitCircle = _interopRequireDefault(require("./components/fs/old-twocolor/WaitCircle"));
|
|
3164
|
-
var _Await = _interopRequireDefault(require("./components/fs/suggestion/Await"));
|
|
3165
|
-
var _ClaimFinish = _interopRequireDefault(require("./components/fs/suggestion/ClaimFinish"));
|
|
3166
|
-
var _ClaimsFail = _interopRequireDefault(require("./components/fs/suggestion/ClaimsFail"));
|
|
3167
|
-
var _CostReturn = _interopRequireDefault(require("./components/fs/suggestion/CostReturn"));
|
|
3168
|
-
var _CostViolate = _interopRequireDefault(require("./components/fs/suggestion/CostViolate"));
|
|
3169
|
-
var _CostWarning = _interopRequireDefault(require("./components/fs/suggestion/CostWarning"));
|
|
3170
|
-
var _DailyOperation = _interopRequireDefault(require("./components/fs/suggestion/DailyOperation"));
|
|
3171
|
-
var _DrgsColor = _interopRequireDefault(require("./components/fs/suggestion/DrgsColor"));
|
|
3172
|
-
var _Fail = _interopRequireDefault(require("./components/fs/suggestion/Fail"));
|
|
3173
|
-
var _FailFill = _interopRequireDefault(require("./components/fs/suggestion/FailFill"));
|
|
3174
|
-
var _HospitalTransfer = _interopRequireDefault(require("./components/fs/suggestion/HospitalTransfer"));
|
|
3175
|
-
var _Inform = _interopRequireDefault(require("./components/fs/suggestion/Inform"));
|
|
3176
|
-
var _Information = _interopRequireDefault(require("./components/fs/suggestion/Information"));
|
|
3177
|
-
var _KeyGroup = _interopRequireDefault(require("./components/fs/suggestion/KeyGroup"));
|
|
3178
|
-
var _Keyoffice = _interopRequireDefault(require("./components/fs/suggestion/Keyoffice"));
|
|
3179
|
-
var _Lack = _interopRequireDefault(require("./components/fs/suggestion/Lack"));
|
|
3180
|
-
var _Notice = _interopRequireDefault(require("./components/fs/suggestion/Notice"));
|
|
3181
|
-
var _NoticeFill = _interopRequireDefault(require("./components/fs/suggestion/NoticeFill"));
|
|
3182
|
-
var _Overtime = _interopRequireDefault(require("./components/fs/suggestion/Overtime"));
|
|
3183
|
-
var _Problem = _interopRequireDefault(require("./components/fs/suggestion/Problem"));
|
|
3184
|
-
var _ProblemFill = _interopRequireDefault(require("./components/fs/suggestion/ProblemFill"));
|
|
3185
|
-
var _Processing = _interopRequireDefault(require("./components/fs/suggestion/Processing"));
|
|
3186
|
-
var _RecordQuality = _interopRequireDefault(require("./components/fs/suggestion/RecordQuality"));
|
|
3187
|
-
var _Rectification = _interopRequireDefault(require("./components/fs/suggestion/Rectification"));
|
|
3188
|
-
var _Rehospitalization = _interopRequireDefault(require("./components/fs/suggestion/Rehospitalization"));
|
|
3189
|
-
var _Sendback = _interopRequireDefault(require("./components/fs/suggestion/Sendback"));
|
|
3190
|
-
var _Success = _interopRequireDefault(require("./components/fs/suggestion/Success"));
|
|
3191
|
-
var _SuccessFill = _interopRequireDefault(require("./components/fs/suggestion/SuccessFill"));
|
|
3192
|
-
var _UndipAccountColor = _interopRequireDefault(require("./components/fs/suggestion/UndipAccountColor"));
|
|
3193
|
-
var _UndrgAccountColor = _interopRequireDefault(require("./components/fs/suggestion/UndrgAccountColor"));
|
|
3194
|
-
var _UninsuranceAccountColor = _interopRequireDefault(require("./components/fs/suggestion/UninsuranceAccountColor"));
|
|
3195
|
-
var _UnreasonableHospitalized = _interopRequireDefault(require("./components/fs/suggestion/UnreasonableHospitalized"));
|
|
3196
|
-
var _Warning = _interopRequireDefault(require("./components/fs/suggestion/Warning"));
|
|
3197
3173
|
var _Account = _interopRequireDefault(require("./components/fs/old-outlined/Account"));
|
|
3198
3174
|
var _AccountFill = _interopRequireDefault(require("./components/fs/old-outlined/AccountFill"));
|
|
3199
3175
|
var _AcountManage = _interopRequireDefault(require("./components/fs/old-outlined/AcountManage"));
|
|
@@ -3387,22 +3363,60 @@ var _Zhuantifenxi = _interopRequireDefault(require("./components/fs/old-outlined
|
|
|
3387
3363
|
var _ZhuantifenxiFill = _interopRequireDefault(require("./components/fs/old-outlined/ZhuantifenxiFill"));
|
|
3388
3364
|
var _Zhutizhibiao = _interopRequireDefault(require("./components/fs/old-outlined/Zhutizhibiao"));
|
|
3389
3365
|
var _Zygl = _interopRequireDefault(require("./components/fs/old-outlined/Zygl"));
|
|
3390
|
-
var
|
|
3391
|
-
var
|
|
3392
|
-
var
|
|
3393
|
-
var
|
|
3394
|
-
var
|
|
3395
|
-
var
|
|
3396
|
-
var
|
|
3397
|
-
var
|
|
3398
|
-
var
|
|
3399
|
-
var
|
|
3400
|
-
var
|
|
3401
|
-
var
|
|
3402
|
-
var
|
|
3403
|
-
var
|
|
3404
|
-
var
|
|
3405
|
-
var
|
|
3406
|
-
var
|
|
3407
|
-
var
|
|
3366
|
+
var _Bingzuwentifankui = _interopRequireDefault(require("./components/fs/old-twocolor/Bingzuwentifankui"));
|
|
3367
|
+
var _BingzuwentifankuiNew = _interopRequireDefault(require("./components/fs/old-twocolor/BingzuwentifankuiNew"));
|
|
3368
|
+
var _CasesDoubt = _interopRequireDefault(require("./components/fs/old-twocolor/CasesDoubt"));
|
|
3369
|
+
var _Empty = _interopRequireDefault(require("./components/fs/old-twocolor/Empty404"));
|
|
3370
|
+
var _EmptyNetwork = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyNetwork"));
|
|
3371
|
+
var _EmptyNormal = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyNormal"));
|
|
3372
|
+
var _EmptyPermission = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyPermission"));
|
|
3373
|
+
var _EmptyTable = _interopRequireDefault(require("./components/fs/old-twocolor/EmptyTable"));
|
|
3374
|
+
var _FailCircle = _interopRequireDefault(require("./components/fs/old-twocolor/FailCircle"));
|
|
3375
|
+
var _Html = _interopRequireDefault(require("./components/fs/old-twocolor/Html404"));
|
|
3376
|
+
var _Huanzhejibenxinxi = _interopRequireDefault(require("./components/fs/old-twocolor/Huanzhejibenxinxi"));
|
|
3377
|
+
var _LoadingCircle = _interopRequireDefault(require("./components/fs/old-twocolor/LoadingCircle"));
|
|
3378
|
+
var _MasterMedicalOrder = _interopRequireDefault(require("./components/fs/old-twocolor/MasterMedicalOrder"));
|
|
3379
|
+
var _MissFill = _interopRequireDefault(require("./components/fs/old-twocolor/MissFill"));
|
|
3380
|
+
var _MonitorTrend = _interopRequireDefault(require("./components/fs/old-twocolor/MonitorTrend"));
|
|
3381
|
+
var _NoNetwork = _interopRequireDefault(require("./components/fs/old-twocolor/NoNetwork"));
|
|
3382
|
+
var _NoPermissions = _interopRequireDefault(require("./components/fs/old-twocolor/NoPermissions"));
|
|
3383
|
+
var _ReHospitalizedTag = _interopRequireDefault(require("./components/fs/old-twocolor/ReHospitalizedTag"));
|
|
3384
|
+
var _Ruotishi = _interopRequireDefault(require("./components/fs/old-twocolor/Ruotishi"));
|
|
3385
|
+
var _ServerError = _interopRequireDefault(require("./components/fs/old-twocolor/ServerError"));
|
|
3386
|
+
var _SuccessCircle = _interopRequireDefault(require("./components/fs/old-twocolor/SuccessCircle"));
|
|
3387
|
+
var _Tishi = _interopRequireDefault(require("./components/fs/old-twocolor/Tishi"));
|
|
3388
|
+
var _WaitCircle = _interopRequireDefault(require("./components/fs/old-twocolor/WaitCircle"));
|
|
3389
|
+
var _Await = _interopRequireDefault(require("./components/fs/suggestion/Await"));
|
|
3390
|
+
var _ClaimFinish = _interopRequireDefault(require("./components/fs/suggestion/ClaimFinish"));
|
|
3391
|
+
var _ClaimsFail = _interopRequireDefault(require("./components/fs/suggestion/ClaimsFail"));
|
|
3392
|
+
var _CostReturn = _interopRequireDefault(require("./components/fs/suggestion/CostReturn"));
|
|
3393
|
+
var _CostViolate = _interopRequireDefault(require("./components/fs/suggestion/CostViolate"));
|
|
3394
|
+
var _CostWarning = _interopRequireDefault(require("./components/fs/suggestion/CostWarning"));
|
|
3395
|
+
var _DailyOperation = _interopRequireDefault(require("./components/fs/suggestion/DailyOperation"));
|
|
3396
|
+
var _DrgsColor = _interopRequireDefault(require("./components/fs/suggestion/DrgsColor"));
|
|
3397
|
+
var _Fail = _interopRequireDefault(require("./components/fs/suggestion/Fail"));
|
|
3398
|
+
var _FailFill = _interopRequireDefault(require("./components/fs/suggestion/FailFill"));
|
|
3399
|
+
var _HospitalTransfer = _interopRequireDefault(require("./components/fs/suggestion/HospitalTransfer"));
|
|
3400
|
+
var _Inform = _interopRequireDefault(require("./components/fs/suggestion/Inform"));
|
|
3401
|
+
var _Information = _interopRequireDefault(require("./components/fs/suggestion/Information"));
|
|
3402
|
+
var _KeyGroup = _interopRequireDefault(require("./components/fs/suggestion/KeyGroup"));
|
|
3403
|
+
var _Keyoffice = _interopRequireDefault(require("./components/fs/suggestion/Keyoffice"));
|
|
3404
|
+
var _Lack = _interopRequireDefault(require("./components/fs/suggestion/Lack"));
|
|
3405
|
+
var _Notice = _interopRequireDefault(require("./components/fs/suggestion/Notice"));
|
|
3406
|
+
var _NoticeFill = _interopRequireDefault(require("./components/fs/suggestion/NoticeFill"));
|
|
3407
|
+
var _Overtime = _interopRequireDefault(require("./components/fs/suggestion/Overtime"));
|
|
3408
|
+
var _Problem = _interopRequireDefault(require("./components/fs/suggestion/Problem"));
|
|
3409
|
+
var _ProblemFill = _interopRequireDefault(require("./components/fs/suggestion/ProblemFill"));
|
|
3410
|
+
var _Processing = _interopRequireDefault(require("./components/fs/suggestion/Processing"));
|
|
3411
|
+
var _RecordQuality = _interopRequireDefault(require("./components/fs/suggestion/RecordQuality"));
|
|
3412
|
+
var _Rectification = _interopRequireDefault(require("./components/fs/suggestion/Rectification"));
|
|
3413
|
+
var _Rehospitalization = _interopRequireDefault(require("./components/fs/suggestion/Rehospitalization"));
|
|
3414
|
+
var _Sendback = _interopRequireDefault(require("./components/fs/suggestion/Sendback"));
|
|
3415
|
+
var _Success = _interopRequireDefault(require("./components/fs/suggestion/Success"));
|
|
3416
|
+
var _SuccessFill = _interopRequireDefault(require("./components/fs/suggestion/SuccessFill"));
|
|
3417
|
+
var _UndipAccountColor = _interopRequireDefault(require("./components/fs/suggestion/UndipAccountColor"));
|
|
3418
|
+
var _UndrgAccountColor = _interopRequireDefault(require("./components/fs/suggestion/UndrgAccountColor"));
|
|
3419
|
+
var _UninsuranceAccountColor = _interopRequireDefault(require("./components/fs/suggestion/UninsuranceAccountColor"));
|
|
3420
|
+
var _UnreasonableHospitalized = _interopRequireDefault(require("./components/fs/suggestion/UnreasonableHospitalized"));
|
|
3421
|
+
var _Warning = _interopRequireDefault(require("./components/fs/suggestion/Warning"));
|
|
3408
3422
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|