@vtx/modals2 3.3.10 → 3.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/vm-case-modal/api.js +43 -0
- package/lib/vm-case-modal/api.js.map +1 -0
- package/lib/vm-case-modal/components/BaseInfo/fields.js +83 -0
- package/lib/vm-case-modal/components/BaseInfo/fields.js.map +1 -0
- package/lib/vm-case-modal/components/BaseInfo/index.css +182 -0
- package/lib/vm-case-modal/components/BaseInfo/index.js +139 -0
- package/lib/vm-case-modal/components/BaseInfo/index.js.map +1 -0
- package/lib/vm-case-modal/components/BaseInfo/index.less +134 -0
- package/lib/vm-case-modal/components/Picture/index.css +64 -0
- package/lib/vm-case-modal/components/Picture/index.js +423 -0
- package/lib/vm-case-modal/components/Picture/index.js.map +1 -0
- package/lib/vm-case-modal/components/Picture/index.less +58 -0
- package/lib/vm-case-modal/components/index.js +21 -0
- package/lib/vm-case-modal/components/index.js.map +1 -0
- package/lib/vm-case-modal/imgs/bg.png +0 -0
- package/lib/vm-case-modal/imgs/close-blue.png +0 -0
- package/lib/vm-case-modal/imgs/close-dark.png +0 -0
- package/lib/vm-case-modal/imgs/close.png +0 -0
- package/lib/vm-case-modal/imgs/collect.png +0 -0
- package/lib/vm-case-modal/imgs/collect_light.png +0 -0
- package/lib/vm-case-modal/imgs/dot.png +0 -0
- package/lib/vm-case-modal/imgs/point.png +0 -0
- package/lib/vm-case-modal/imgs/tab_bg.png +0 -0
- package/lib/vm-case-modal/imgs/tab_bg_blue.png +0 -0
- package/lib/vm-case-modal/imgs/tab_bg_light.png +0 -0
- package/lib/vm-case-modal/imgs/tab_selected.png +0 -0
- package/lib/vm-case-modal/imgs/tab_unsel.png +0 -0
- package/lib/vm-case-modal/imgs/title_bg.png +0 -0
- package/lib/vm-case-modal/imgs/title_bg_blue.png +0 -0
- package/lib/vm-case-modal/imgs/track.png +0 -0
- package/lib/vm-case-modal/imgs/track_light.png +0 -0
- package/lib/vm-case-modal/index.js +102 -0
- package/lib/vm-case-modal/index.js.map +1 -0
- package/lib/vm-case-modal/style/css.js +4 -0
- package/lib/vm-case-modal/style/css.js.map +1 -0
- package/lib/vm-case-modal/style/index.css +557 -0
- package/lib/vm-case-modal/style/index.js +4 -0
- package/lib/vm-case-modal/style/index.js.map +1 -0
- package/lib/vm-case-modal/style/index.less +589 -0
- package/lib/vtx-base-modal/style/index.css +1 -1
- package/lib/vtx-base-modal/style/index.less +1 -1
- package/lib/vtx-car-modal/api.js +13 -10
- package/lib/vtx-car-modal/api.js.map +1 -1
- package/lib/vtx-car-modal/components/RunAna/index.js +46 -18
- package/lib/vtx-car-modal/components/RunAna/index.js.map +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
.case-pic{
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
padding: 6px 10px;
|
|
5
|
+
.tabs{
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 52px;
|
|
8
|
+
line-height: 52px;
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: row;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
align-items: center;
|
|
13
|
+
.tab{
|
|
14
|
+
width: 90px;
|
|
15
|
+
height: 26px;
|
|
16
|
+
line-height: 26px;
|
|
17
|
+
text-align: center;
|
|
18
|
+
margin-right: 12px;
|
|
19
|
+
background-image: url(../../imgs/tab_unsel.png);
|
|
20
|
+
background-size: 100% 100%;
|
|
21
|
+
background-repeat: no-repeat;
|
|
22
|
+
font-size: 16px;
|
|
23
|
+
font-family: PingFang;
|
|
24
|
+
font-weight: 400;
|
|
25
|
+
color: #ffffff;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
.active{
|
|
29
|
+
width: 90px;
|
|
30
|
+
height: 26px;
|
|
31
|
+
line-height: 26px;
|
|
32
|
+
text-align: center;
|
|
33
|
+
margin-right: 12px;
|
|
34
|
+
background-image: url(../../imgs/tab_selected.png);
|
|
35
|
+
background-size: 100% 100%;
|
|
36
|
+
background-repeat: no-repeat;
|
|
37
|
+
font-size: 16px;
|
|
38
|
+
font-family: PingFang;
|
|
39
|
+
font-weight: 400;
|
|
40
|
+
color: #00FFEC;
|
|
41
|
+
cursor: pointer;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
h4{
|
|
45
|
+
color: #fff;
|
|
46
|
+
}
|
|
47
|
+
.piclist{
|
|
48
|
+
height: e('calc(100% - 70px)');
|
|
49
|
+
width: 100%;
|
|
50
|
+
overflow: auto;
|
|
51
|
+
.ant-empty-description{
|
|
52
|
+
color: #fff !important;
|
|
53
|
+
}
|
|
54
|
+
// .vtx-image-aspectFit {
|
|
55
|
+
// background: transparent !important;
|
|
56
|
+
// }
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "BaseInfo", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _BaseInfo["default"];
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "Picture", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _Picture["default"];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _BaseInfo = _interopRequireDefault(require("./BaseInfo"));
|
|
19
|
+
var _Picture = _interopRequireDefault(require("./Picture"));
|
|
20
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":["_BaseInfo","_interopRequireDefault","require","_Picture","obj","__esModule"],"sources":["vm-case-modal/components/index.js"],"sourcesContent":["import BaseInfo from './BaseInfo';\nimport Picture from './Picture';\nexport { BaseInfo, Picture, };\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA,IAAAA,SAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,QAAA,GAAAF,sBAAA,CAAAC,OAAA;AAAgC,SAAAD,uBAAAG,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,gBAAAA,GAAA"}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,102 @@
|
|
|
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 _vtxThemeProvider = _interopRequireDefault(require("../vtx-theme-provider"));
|
|
9
|
+
var _moment = _interopRequireDefault(require("moment"));
|
|
10
|
+
var _closeDark = _interopRequireDefault(require("./imgs/close-dark.png"));
|
|
11
|
+
var _closeBlue = _interopRequireDefault(require("./imgs/close-blue.png"));
|
|
12
|
+
var _close = _interopRequireDefault(require("./imgs/close.png"));
|
|
13
|
+
var _components = require("./components");
|
|
14
|
+
require("../style");
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
16
|
+
var getWidth = function getWidth() {
|
|
17
|
+
var clientWidth = document.body.clientWidth;
|
|
18
|
+
var contentWidth;
|
|
19
|
+
if (clientWidth > 1440) {
|
|
20
|
+
contentWidth = 1440;
|
|
21
|
+
} else if (clientWidth > 1366) {
|
|
22
|
+
contentWidth = 1300;
|
|
23
|
+
} else {
|
|
24
|
+
contentWidth = '100%';
|
|
25
|
+
}
|
|
26
|
+
return contentWidth;
|
|
27
|
+
};
|
|
28
|
+
var VtxCaseModal = function VtxCaseModal(props) {
|
|
29
|
+
var caseId = props.caseId,
|
|
30
|
+
title = props.title,
|
|
31
|
+
_props$theme = props.theme,
|
|
32
|
+
theme = _props$theme === void 0 ? 'blue' : _props$theme,
|
|
33
|
+
visible = props.visible,
|
|
34
|
+
onCancel = props.onCancel,
|
|
35
|
+
subTitle = props.subTitle;
|
|
36
|
+
var closeBtn = {
|
|
37
|
+
light: _close["default"],
|
|
38
|
+
dark: _closeDark["default"],
|
|
39
|
+
blue: _closeBlue["default"]
|
|
40
|
+
};
|
|
41
|
+
// const height = document.body?.offsetHeight - 150 || 600;
|
|
42
|
+
return !visible ? null : /*#__PURE__*/_react["default"].createElement(_vtxThemeProvider["default"], {
|
|
43
|
+
value: {
|
|
44
|
+
theme: theme,
|
|
45
|
+
chartFontColor: '#fff',
|
|
46
|
+
chartColor: [''],
|
|
47
|
+
startDate: (0, _moment["default"])().format('YYYY-MM-DD'),
|
|
48
|
+
endDate: (0, _moment["default"])().format('YYYY-MM-DD'),
|
|
49
|
+
defaultGrid: 9
|
|
50
|
+
}
|
|
51
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
52
|
+
className: "vtx-business-modal-wrap ".concat(theme)
|
|
53
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
54
|
+
className: "mask"
|
|
55
|
+
}), /*#__PURE__*/_react["default"].createElement("div", {
|
|
56
|
+
className: "vtx-business-modal ".concat(theme),
|
|
57
|
+
style: {
|
|
58
|
+
width: getWidth()
|
|
59
|
+
}
|
|
60
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
61
|
+
className: "vtx-business-modal--head"
|
|
62
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
63
|
+
className: "vtx-business-modal--head-title ".concat(theme)
|
|
64
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
65
|
+
className: "vtx-business-modal--head-title-bg ".concat(theme)
|
|
66
|
+
}), title, subTitle), /*#__PURE__*/_react["default"].createElement("div", {
|
|
67
|
+
className: "vtx-business-modal--head-btns"
|
|
68
|
+
}, /*#__PURE__*/_react["default"].createElement("img", {
|
|
69
|
+
className: "close-btn ".concat(theme),
|
|
70
|
+
src: closeBtn[theme],
|
|
71
|
+
alt: "",
|
|
72
|
+
onClick: function onClick() {
|
|
73
|
+
return onCancel && onCancel();
|
|
74
|
+
}
|
|
75
|
+
}))), /*#__PURE__*/_react["default"].createElement("div", {
|
|
76
|
+
className: 'vtx-business-modal--content',
|
|
77
|
+
style: {
|
|
78
|
+
height: '580px'
|
|
79
|
+
}
|
|
80
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
81
|
+
className: 'left',
|
|
82
|
+
style: {
|
|
83
|
+
width: '40%',
|
|
84
|
+
height: '100%',
|
|
85
|
+
overflow: 'auto'
|
|
86
|
+
}
|
|
87
|
+
}, /*#__PURE__*/_react["default"].createElement(_components.Picture, {
|
|
88
|
+
caseId: caseId
|
|
89
|
+
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
90
|
+
className: 'right',
|
|
91
|
+
style: {
|
|
92
|
+
width: '60%',
|
|
93
|
+
height: '100%',
|
|
94
|
+
overflow: 'auto'
|
|
95
|
+
}
|
|
96
|
+
}, /*#__PURE__*/_react["default"].createElement(_components.BaseInfo, {
|
|
97
|
+
caseId: caseId
|
|
98
|
+
}))))));
|
|
99
|
+
};
|
|
100
|
+
var _default = VtxCaseModal;
|
|
101
|
+
exports["default"] = _default;
|
|
102
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":["_react","_interopRequireDefault","require","_vtxThemeProvider","_moment","_closeDark","_closeBlue","_close","_components","obj","__esModule","getWidth","clientWidth","document","body","contentWidth","VtxCaseModal","props","caseId","title","_props$theme","theme","visible","onCancel","subTitle","closeBtn","light","closeImg","dark","closeImgDark","blue","closeImgBlue","React","createElement","VtxThemeProvider","value","chartFontColor","chartColor","startDate","moment","format","endDate","defaultGrid","className","concat","style","width","src","alt","onClick","height","overflow","Picture","BaseInfo","_default","exports"],"sources":["vm-case-modal/index.js"],"sourcesContent":["import React from 'react';\nimport VtxThemeProvider from '../vtx-theme-provider';\nimport moment from 'moment';\nimport closeImgDark from './imgs/close-dark.png';\nimport closeImgBlue from './imgs/close-blue.png';\nimport closeImg from './imgs/close.png';\nimport { BaseInfo, Picture, } from './components';\nimport '../style';\nconst getWidth = () => {\n const clientWidth = document.body.clientWidth;\n let contentWidth;\n if (clientWidth > 1440) {\n contentWidth = 1440;\n }\n else if (clientWidth > 1366) {\n contentWidth = 1300;\n }\n else {\n contentWidth = '100%';\n }\n return contentWidth;\n};\nconst VtxCaseModal = (props) => {\n const { caseId, title, theme = 'blue', visible, onCancel, subTitle } = props;\n const closeBtn = {\n light: closeImg,\n dark: closeImgDark,\n blue: closeImgBlue,\n };\n // const height = document.body?.offsetHeight - 150 || 600;\n return !visible ? null : (React.createElement(VtxThemeProvider, { value: {\n theme,\n chartFontColor: '#fff',\n chartColor: [''],\n startDate: moment().format('YYYY-MM-DD'),\n endDate: moment().format('YYYY-MM-DD'),\n defaultGrid: 9,\n } },\n React.createElement(\"div\", { className: `vtx-business-modal-wrap ${theme}` },\n React.createElement(\"div\", { className: \"mask\" }),\n React.createElement(\"div\", { className: `vtx-business-modal ${theme}`, style: {\n width: getWidth(),\n } },\n React.createElement(\"div\", { className: \"vtx-business-modal--head\" },\n React.createElement(\"div\", { className: `vtx-business-modal--head-title ${theme}` },\n React.createElement(\"div\", { className: `vtx-business-modal--head-title-bg ${theme}` }),\n title,\n subTitle),\n React.createElement(\"div\", { className: \"vtx-business-modal--head-btns\" },\n React.createElement(\"img\", { className: `close-btn ${theme}`, src: closeBtn[theme], alt: \"\", onClick: () => onCancel && onCancel() }))),\n React.createElement(\"div\", { className: 'vtx-business-modal--content', style: { height: '580px' } },\n React.createElement(\"div\", { className: 'left', style: { width: '40%', height: '100%', overflow: 'auto' } },\n React.createElement(Picture, { caseId: caseId })),\n React.createElement(\"div\", { className: 'right', style: { width: '60%', height: '100%', overflow: 'auto' } },\n React.createElement(BaseInfo, { caseId: caseId })))))));\n};\nexport default VtxCaseModal;\n"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"css.js","names":["require"],"sources":["vm-case-modal/style/index.js"],"sourcesContent":["import './index.less';\n"],"mappings":";;AAAAA,OAAA"}
|