ls-pro-common 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common.css +18 -0
- package/dist/common.min.css +18 -0
- package/es/components/404.d.ts +3 -0
- package/es/components/404.jpg +0 -0
- package/es/components/404.js +9 -0
- package/es/components/Loading.d.ts +3 -0
- package/es/components/Loading.js +9 -0
- package/es/components/common.less +21 -0
- package/lib/components/404.d.ts +3 -0
- package/lib/components/404.jpg +0 -0
- package/lib/components/404.js +22 -0
- package/lib/components/Loading.d.ts +3 -0
- package/lib/components/Loading.js +24 -0
- package/lib/components/common.less +21 -0
- package/package.json +1 -1
package/dist/common.css
CHANGED
|
@@ -51,6 +51,24 @@
|
|
|
51
51
|
.flex-row .flex {
|
|
52
52
|
width: 0;
|
|
53
53
|
}
|
|
54
|
+
.page404 {
|
|
55
|
+
width: 100%;
|
|
56
|
+
height: 100%;
|
|
57
|
+
text-align: center;
|
|
58
|
+
padding-top: 20%;
|
|
59
|
+
vertical-align: middle;
|
|
60
|
+
}
|
|
61
|
+
.page404 img {
|
|
62
|
+
vertical-align: middle;
|
|
63
|
+
padding-right: 20px;
|
|
64
|
+
}
|
|
65
|
+
.loading {
|
|
66
|
+
height: 100%;
|
|
67
|
+
width: 100%;
|
|
68
|
+
text-align: center;
|
|
69
|
+
padding-top: 20%;
|
|
70
|
+
background: #fff;
|
|
71
|
+
}
|
|
54
72
|
|
|
55
73
|
.pro-table-tooltip-text span {
|
|
56
74
|
color: #fff;
|
package/dist/common.min.css
CHANGED
|
@@ -51,6 +51,24 @@
|
|
|
51
51
|
.flex-row .flex {
|
|
52
52
|
width: 0;
|
|
53
53
|
}
|
|
54
|
+
.page404 {
|
|
55
|
+
width: 100%;
|
|
56
|
+
height: 100%;
|
|
57
|
+
text-align: center;
|
|
58
|
+
padding-top: 20%;
|
|
59
|
+
vertical-align: middle;
|
|
60
|
+
}
|
|
61
|
+
.page404 img {
|
|
62
|
+
vertical-align: middle;
|
|
63
|
+
padding-right: 20px;
|
|
64
|
+
}
|
|
65
|
+
.loading {
|
|
66
|
+
height: 100%;
|
|
67
|
+
width: 100%;
|
|
68
|
+
text-align: center;
|
|
69
|
+
padding-top: 20%;
|
|
70
|
+
background: #fff;
|
|
71
|
+
}
|
|
54
72
|
|
|
55
73
|
.pro-table-tooltip-text span {
|
|
56
74
|
color: #fff;
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import './common.less';
|
|
3
|
+
export default (function () {
|
|
4
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
5
|
+
className: "page404"
|
|
6
|
+
}, /*#__PURE__*/React.createElement("img", {
|
|
7
|
+
src: "./404.jpg"
|
|
8
|
+
}), " \u60A8\u8BBF\u95EE\u7684\u8D44\u6E90\u4E0D\u5B58\u5728~~");
|
|
9
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import "antd/es/spin/style";
|
|
2
|
+
import _Spin from "antd/es/spin";
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import './common.less';
|
|
5
|
+
export default (function () {
|
|
6
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
7
|
+
className: "loading"
|
|
8
|
+
}, /*#__PURE__*/React.createElement(_Spin, null), "\u52A0\u8F7D\u4E2D... ");
|
|
9
|
+
});
|
|
@@ -61,4 +61,25 @@
|
|
|
61
61
|
.flex {
|
|
62
62
|
width: 0;
|
|
63
63
|
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.page404 {
|
|
67
|
+
width : 100%;
|
|
68
|
+
height : 100%;
|
|
69
|
+
text-align : center;
|
|
70
|
+
padding-top : 20%;
|
|
71
|
+
vertical-align: middle;
|
|
72
|
+
|
|
73
|
+
img {
|
|
74
|
+
vertical-align: middle;
|
|
75
|
+
padding-right : 20px;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.loading {
|
|
80
|
+
height : 100%;
|
|
81
|
+
width : 100%;
|
|
82
|
+
text-align : center;
|
|
83
|
+
padding-top: 20%;
|
|
84
|
+
background : #fff;
|
|
64
85
|
}
|
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
require("./common.less");
|
|
13
|
+
|
|
14
|
+
var _default = function _default() {
|
|
15
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
16
|
+
className: "page404"
|
|
17
|
+
}, /*#__PURE__*/_react.default.createElement("img", {
|
|
18
|
+
src: "./404.jpg"
|
|
19
|
+
}), " \u60A8\u8BBF\u95EE\u7684\u8D44\u6E90\u4E0D\u5B58\u5728~~");
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
exports.default = _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
|
|
10
|
+
require("antd/es/spin/style");
|
|
11
|
+
|
|
12
|
+
var _spin = _interopRequireDefault(require("antd/es/spin"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
require("./common.less");
|
|
17
|
+
|
|
18
|
+
var _default = function _default() {
|
|
19
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
20
|
+
className: "loading"
|
|
21
|
+
}, /*#__PURE__*/_react.default.createElement(_spin.default, null), "\u52A0\u8F7D\u4E2D... ");
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
exports.default = _default;
|
|
@@ -61,4 +61,25 @@
|
|
|
61
61
|
.flex {
|
|
62
62
|
width: 0;
|
|
63
63
|
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.page404 {
|
|
67
|
+
width : 100%;
|
|
68
|
+
height : 100%;
|
|
69
|
+
text-align : center;
|
|
70
|
+
padding-top : 20%;
|
|
71
|
+
vertical-align: middle;
|
|
72
|
+
|
|
73
|
+
img {
|
|
74
|
+
vertical-align: middle;
|
|
75
|
+
padding-right : 20px;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.loading {
|
|
80
|
+
height : 100%;
|
|
81
|
+
width : 100%;
|
|
82
|
+
text-align : center;
|
|
83
|
+
padding-top: 20%;
|
|
84
|
+
background : #fff;
|
|
64
85
|
}
|