@vtx/modals2 3.3.10 → 3.3.12
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 +185 -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 +137 -0
- package/lib/vm-case-modal/components/Picture/index.css +111 -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 +106 -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/vm-map/index.js +11 -0
- package/lib/vm-map/index.js.map +1 -1
- 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 +3 -1
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
.case-pic {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
padding: 6px 10px;
|
|
5
|
+
}
|
|
6
|
+
.case-pic .tabs {
|
|
7
|
+
width: 100%;
|
|
8
|
+
height: 52px;
|
|
9
|
+
line-height: 52px;
|
|
10
|
+
display: -webkit-box;
|
|
11
|
+
display: -ms-flexbox;
|
|
12
|
+
display: flex;
|
|
13
|
+
-webkit-box-orient: horizontal;
|
|
14
|
+
-webkit-box-direction: normal;
|
|
15
|
+
-ms-flex-direction: row;
|
|
16
|
+
flex-direction: row;
|
|
17
|
+
-webkit-box-pack: center;
|
|
18
|
+
-ms-flex-pack: center;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
-webkit-box-align: center;
|
|
21
|
+
-ms-flex-align: center;
|
|
22
|
+
align-items: center;
|
|
23
|
+
}
|
|
24
|
+
.case-pic .tabs .tab {
|
|
25
|
+
width: 90px;
|
|
26
|
+
height: 26px;
|
|
27
|
+
line-height: 26px;
|
|
28
|
+
text-align: center;
|
|
29
|
+
margin-right: 12px;
|
|
30
|
+
background-image: url(../../imgs/tab_unsel.png);
|
|
31
|
+
background-size: 100% 100%;
|
|
32
|
+
background-repeat: no-repeat;
|
|
33
|
+
font-size: 16px;
|
|
34
|
+
font-family: PingFang;
|
|
35
|
+
font-weight: 400;
|
|
36
|
+
color: #ffffff;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
}
|
|
39
|
+
.case-pic .tabs .active {
|
|
40
|
+
width: 90px;
|
|
41
|
+
height: 26px;
|
|
42
|
+
line-height: 26px;
|
|
43
|
+
text-align: center;
|
|
44
|
+
margin-right: 12px;
|
|
45
|
+
background-image: url(../../imgs/tab_selected.png);
|
|
46
|
+
background-size: 100% 100%;
|
|
47
|
+
background-repeat: no-repeat;
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
font-family: PingFang;
|
|
50
|
+
font-weight: 400;
|
|
51
|
+
color: #00FFEC;
|
|
52
|
+
cursor: pointer;
|
|
53
|
+
}
|
|
54
|
+
.case-pic h4 {
|
|
55
|
+
color: #fff;
|
|
56
|
+
}
|
|
57
|
+
.case-pic .piclist {
|
|
58
|
+
height: calc(100% - 70px);
|
|
59
|
+
width: 100%;
|
|
60
|
+
overflow: auto;
|
|
61
|
+
}
|
|
62
|
+
.case-pic .piclist .ant-empty-description {
|
|
63
|
+
color: #fff !important;
|
|
64
|
+
}
|
|
65
|
+
.case-pic .piclist .picItem {
|
|
66
|
+
height: 200px;
|
|
67
|
+
width: 80%;
|
|
68
|
+
padding-left: 50px;
|
|
69
|
+
position: relative;
|
|
70
|
+
}
|
|
71
|
+
.case-pic .piclist .picItem .slick-list {
|
|
72
|
+
width: 100%;
|
|
73
|
+
height: 100% !important;
|
|
74
|
+
}
|
|
75
|
+
.case-pic .piclist .picItem .slick-slider {
|
|
76
|
+
width: 100%;
|
|
77
|
+
height: 100%;
|
|
78
|
+
position: relative;
|
|
79
|
+
text-align: center;
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
}
|
|
82
|
+
.case-pic .piclist .picItem .slick-slide > div {
|
|
83
|
+
height: 100%;
|
|
84
|
+
}
|
|
85
|
+
.case-pic .piclist .picItem .slick-slide > div > div {
|
|
86
|
+
height: 100%;
|
|
87
|
+
}
|
|
88
|
+
.case-pic .piclist .picItem .slick-track {
|
|
89
|
+
width: 100%;
|
|
90
|
+
height: 100%;
|
|
91
|
+
}
|
|
92
|
+
.case-pic .piclist .picItem .slick-prev {
|
|
93
|
+
left: 15px !important;
|
|
94
|
+
top: 50%;
|
|
95
|
+
z-index: 400;
|
|
96
|
+
width: 30px;
|
|
97
|
+
height: 30px;
|
|
98
|
+
}
|
|
99
|
+
.case-pic .piclist .picItem .slick-next {
|
|
100
|
+
right: 15px !important;
|
|
101
|
+
top: 50%;
|
|
102
|
+
z-index: 400;
|
|
103
|
+
width: 30px;
|
|
104
|
+
height: 30px;
|
|
105
|
+
}
|
|
106
|
+
.case-pic .piclist .picItem .slick-prev:before,
|
|
107
|
+
.case-pic .piclist .picItem .slick-next:before {
|
|
108
|
+
font-size: 30px;
|
|
109
|
+
-webkit-backdrop-filter: invert(20%);
|
|
110
|
+
backdrop-filter: invert(20%);
|
|
111
|
+
}
|
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
8
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _useSettings2 = _interopRequireDefault(require("../../../vm-hooks/useSettings"));
|
|
10
|
+
var _vmSubTitle = _interopRequireDefault(require("../../../vm-sub-title"));
|
|
11
|
+
require("./index.less");
|
|
12
|
+
var _reactSlick = _interopRequireDefault(require("react-slick"));
|
|
13
|
+
require("slick-carousel/slick/slick.css");
|
|
14
|
+
require("slick-carousel/slick/slick-theme.css");
|
|
15
|
+
var _antd = require("antd");
|
|
16
|
+
var _components = require("@vtx/components");
|
|
17
|
+
var _utils = require("@vtx/utils");
|
|
18
|
+
var _api = require("../../api");
|
|
19
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
20
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
22
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
23
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
24
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
25
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
26
|
+
function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
|
|
27
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
28
|
+
var tabs = [{
|
|
29
|
+
key: 'image',
|
|
30
|
+
name: '图片'
|
|
31
|
+
}, {
|
|
32
|
+
key: 'audio',
|
|
33
|
+
name: '音频'
|
|
34
|
+
}, {
|
|
35
|
+
key: 'video',
|
|
36
|
+
name: '视频'
|
|
37
|
+
}];
|
|
38
|
+
var Picture = function Picture(props) {
|
|
39
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
40
|
+
var caseId = props.caseId;
|
|
41
|
+
var _useSettings = (0, _useSettings2["default"])(),
|
|
42
|
+
theme = _useSettings.theme;
|
|
43
|
+
var showInfo = {};
|
|
44
|
+
var otherInfo = {};
|
|
45
|
+
var _useState = (0, _react.useState)('image'),
|
|
46
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
47
|
+
currentTab = _useState2[0],
|
|
48
|
+
setCurrentTab = _useState2[1];
|
|
49
|
+
var _BaseService$useCaseP = _api.BaseService.useCaseProcessData(caseId),
|
|
50
|
+
otherDetail = _BaseService$useCaseP.otherDetail;
|
|
51
|
+
if (otherDetail === null || otherDetail === void 0 ? void 0 : otherDetail.id) {
|
|
52
|
+
var reportAttach = otherDetail.reportAttach,
|
|
53
|
+
verifyAttach = otherDetail.verifyAttach,
|
|
54
|
+
disposeAttach = otherDetail.disposeAttach,
|
|
55
|
+
inspectAttach = otherDetail.inspectAttach;
|
|
56
|
+
var reportAttachs = reportAttach ? JSON.parse(reportAttach) : []; //上报
|
|
57
|
+
var verifyAttachs = verifyAttach ? JSON.parse(verifyAttach) : []; //核实
|
|
58
|
+
var disposeAttachs = disposeAttach ? JSON.parse(disposeAttach) : []; //处置
|
|
59
|
+
var inspectAttachs = inspectAttach ? JSON.parse(inspectAttach) : []; //核查
|
|
60
|
+
showInfo = {
|
|
61
|
+
reportAttach: reportAttachs.filter(function (item) {
|
|
62
|
+
if (typeof item.type == 'number') {
|
|
63
|
+
return item.type == 0;
|
|
64
|
+
} else {
|
|
65
|
+
return item.type.includes('image');
|
|
66
|
+
}
|
|
67
|
+
}),
|
|
68
|
+
verifyAttach: verifyAttachs.filter(function (item) {
|
|
69
|
+
if (typeof item.type == 'number') {
|
|
70
|
+
return item.type == 0;
|
|
71
|
+
} else {
|
|
72
|
+
return item.type.includes('image');
|
|
73
|
+
}
|
|
74
|
+
}),
|
|
75
|
+
disposeAttach: disposeAttachs.filter(function (item) {
|
|
76
|
+
if (typeof item.type == 'number') {
|
|
77
|
+
return item.type == 0;
|
|
78
|
+
} else {
|
|
79
|
+
return item.type.includes('image');
|
|
80
|
+
}
|
|
81
|
+
}),
|
|
82
|
+
inspectAttach: inspectAttachs.filter(function (item) {
|
|
83
|
+
if (typeof item.type == 'number') {
|
|
84
|
+
return item.type == 0;
|
|
85
|
+
} else {
|
|
86
|
+
return item.type.includes('image');
|
|
87
|
+
}
|
|
88
|
+
})
|
|
89
|
+
};
|
|
90
|
+
otherInfo = Object.assign(Object.assign({}, otherDetail), {
|
|
91
|
+
taskList: otherDetail === null || otherDetail === void 0 ? void 0 : otherDetail.taskList.map(function (item) {
|
|
92
|
+
return Object.assign(Object.assign({}, item), {
|
|
93
|
+
key: item.id
|
|
94
|
+
});
|
|
95
|
+
}),
|
|
96
|
+
reportAttach: reportAttachs,
|
|
97
|
+
verifyAttach: verifyAttachs,
|
|
98
|
+
disposeAttach: disposeAttachs,
|
|
99
|
+
inspectAttach: inspectAttachs
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
var sliderProps = {
|
|
103
|
+
dots: false,
|
|
104
|
+
arrows: true,
|
|
105
|
+
infinite: true,
|
|
106
|
+
accessibility: true,
|
|
107
|
+
speed: 500,
|
|
108
|
+
autoplay: false,
|
|
109
|
+
slidesToShow: 1,
|
|
110
|
+
slidesToScroll: 1
|
|
111
|
+
};
|
|
112
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
113
|
+
className: "case-pic ".concat(theme)
|
|
114
|
+
}, /*#__PURE__*/_react["default"].createElement(_vmSubTitle["default"], {
|
|
115
|
+
title: "\u6848\u4EF6\u591A\u5A92\u4F53\u8D44\u6599"
|
|
116
|
+
}), /*#__PURE__*/_react["default"].createElement("div", {
|
|
117
|
+
className: 'tabs'
|
|
118
|
+
}, tabs.map(function (item) {
|
|
119
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
120
|
+
key: item.key,
|
|
121
|
+
className: "tab ".concat(currentTab === item.key && 'active'),
|
|
122
|
+
onClick: function onClick() {
|
|
123
|
+
setCurrentTab(item.key);
|
|
124
|
+
var reportAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.reportAttach) || []; //上报
|
|
125
|
+
var verifyAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.verifyAttach) || []; //核实
|
|
126
|
+
var disposeAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.disposeAttach) || []; //处置
|
|
127
|
+
var inspectAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.inspectAttach) || []; //核查
|
|
128
|
+
if (item.key == 'image') {
|
|
129
|
+
showInfo = {
|
|
130
|
+
reportAttach: (reportAttach === null || reportAttach === void 0 ? void 0 : reportAttach.filter(function (item) {
|
|
131
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
132
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 0;
|
|
133
|
+
} else {
|
|
134
|
+
return item === null || item === void 0 ? void 0 : item.type.includes('image');
|
|
135
|
+
}
|
|
136
|
+
})) || [],
|
|
137
|
+
verifyAttach: (verifyAttach === null || verifyAttach === void 0 ? void 0 : verifyAttach.filter(function (item) {
|
|
138
|
+
var _a;
|
|
139
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
140
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 0;
|
|
141
|
+
} else {
|
|
142
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('image');
|
|
143
|
+
}
|
|
144
|
+
})) || [],
|
|
145
|
+
disposeAttach: (disposeAttach === null || disposeAttach === void 0 ? void 0 : disposeAttach.filter(function (item) {
|
|
146
|
+
var _a;
|
|
147
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
148
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 0;
|
|
149
|
+
} else {
|
|
150
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('image');
|
|
151
|
+
}
|
|
152
|
+
})) || [],
|
|
153
|
+
inspectAttach: (inspectAttach === null || inspectAttach === void 0 ? void 0 : inspectAttach.filter(function (item) {
|
|
154
|
+
var _a;
|
|
155
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
156
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 0;
|
|
157
|
+
} else {
|
|
158
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('image');
|
|
159
|
+
}
|
|
160
|
+
})) || []
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
if (item.key == 'audio') {
|
|
164
|
+
showInfo = {
|
|
165
|
+
reportAttach: (reportAttach === null || reportAttach === void 0 ? void 0 : reportAttach.filter(function (item) {
|
|
166
|
+
var _a;
|
|
167
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
168
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 2;
|
|
169
|
+
} else {
|
|
170
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');
|
|
171
|
+
}
|
|
172
|
+
})) || [],
|
|
173
|
+
verifyAttach: (verifyAttach === null || verifyAttach === void 0 ? void 0 : verifyAttach.filter(function (item) {
|
|
174
|
+
var _a;
|
|
175
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
176
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 2;
|
|
177
|
+
} else {
|
|
178
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');
|
|
179
|
+
}
|
|
180
|
+
})) || [],
|
|
181
|
+
disposeAttach: (disposeAttach === null || disposeAttach === void 0 ? void 0 : disposeAttach.filter(function (item) {
|
|
182
|
+
var _a;
|
|
183
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
184
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 2;
|
|
185
|
+
} else {
|
|
186
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');
|
|
187
|
+
}
|
|
188
|
+
})) || [],
|
|
189
|
+
inspectAttach: (inspectAttach === null || inspectAttach === void 0 ? void 0 : inspectAttach.filter(function (item) {
|
|
190
|
+
var _a;
|
|
191
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
192
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 2;
|
|
193
|
+
} else {
|
|
194
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');
|
|
195
|
+
}
|
|
196
|
+
})) || []
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
if (item.key == 'video') {
|
|
200
|
+
showInfo = {
|
|
201
|
+
reportAttach: (reportAttach === null || reportAttach === void 0 ? void 0 : reportAttach.filter(function (item) {
|
|
202
|
+
var _a;
|
|
203
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
204
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 1;
|
|
205
|
+
} else {
|
|
206
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('video');
|
|
207
|
+
}
|
|
208
|
+
})) || [],
|
|
209
|
+
verifyAttach: (verifyAttach === null || verifyAttach === void 0 ? void 0 : verifyAttach.filter(function (item) {
|
|
210
|
+
var _a;
|
|
211
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
212
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 1;
|
|
213
|
+
} else {
|
|
214
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('video');
|
|
215
|
+
}
|
|
216
|
+
})) || [],
|
|
217
|
+
disposeAttach: (disposeAttach === null || disposeAttach === void 0 ? void 0 : disposeAttach.filter(function (item) {
|
|
218
|
+
var _a;
|
|
219
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
220
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 1;
|
|
221
|
+
} else {
|
|
222
|
+
return (_a = item.type) === null || _a === void 0 ? void 0 : _a.includes('video');
|
|
223
|
+
}
|
|
224
|
+
})) || [],
|
|
225
|
+
inspectAttach: (inspectAttach === null || inspectAttach === void 0 ? void 0 : inspectAttach.filter(function (item) {
|
|
226
|
+
var _a;
|
|
227
|
+
if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {
|
|
228
|
+
return (item === null || item === void 0 ? void 0 : item.type) == 1;
|
|
229
|
+
} else {
|
|
230
|
+
return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('video');
|
|
231
|
+
}
|
|
232
|
+
})) || []
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}, item.name);
|
|
237
|
+
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
238
|
+
className: 'piclist'
|
|
239
|
+
}, /*#__PURE__*/_react["default"].createElement("h4", null, "\u4E0A\u62A5"), /*#__PURE__*/_react["default"].createElement("div", {
|
|
240
|
+
className: 'picItem'
|
|
241
|
+
}, ((_a = showInfo === null || showInfo === void 0 ? void 0 : showInfo.reportAttach) === null || _a === void 0 ? void 0 : _a.length) > 0 ? /*#__PURE__*/_react["default"].createElement(_reactSlick["default"], Object.assign({}, sliderProps), (_b = showInfo === null || showInfo === void 0 ? void 0 : showInfo.reportAttach) === null || _b === void 0 ? void 0 : _b.map(function (item) {
|
|
242
|
+
if (String(item.type) == '0' || String(item.type).includes('image')) {
|
|
243
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
244
|
+
style: {
|
|
245
|
+
textAlign: 'center'
|
|
246
|
+
},
|
|
247
|
+
key: item.id
|
|
248
|
+
}, /*#__PURE__*/_react["default"].createElement(_components.VtxImage, {
|
|
249
|
+
aspectFit: true,
|
|
250
|
+
width: "100%",
|
|
251
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
252
|
+
}));
|
|
253
|
+
} else if (String(item.type) == '2' || String(item.type).includes('audio')) {
|
|
254
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
255
|
+
style: {
|
|
256
|
+
textAlign: 'center'
|
|
257
|
+
},
|
|
258
|
+
key: item.id
|
|
259
|
+
}, /*#__PURE__*/_react["default"].createElement("audio", {
|
|
260
|
+
controls: true,
|
|
261
|
+
autoPlay: true,
|
|
262
|
+
muted: true,
|
|
263
|
+
preload: "preload",
|
|
264
|
+
loop: true,
|
|
265
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
266
|
+
}));
|
|
267
|
+
} else if (String(item.type) == '1' || String(item.type).includes('video')) {
|
|
268
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
269
|
+
style: {
|
|
270
|
+
textAlign: 'center'
|
|
271
|
+
},
|
|
272
|
+
key: item.id
|
|
273
|
+
}, /*#__PURE__*/_react["default"].createElement("video", {
|
|
274
|
+
controls: true,
|
|
275
|
+
autoPlay: true,
|
|
276
|
+
muted: true,
|
|
277
|
+
preload: "preload",
|
|
278
|
+
width: "100%",
|
|
279
|
+
loop: true,
|
|
280
|
+
height: "100%",
|
|
281
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
282
|
+
}));
|
|
283
|
+
}
|
|
284
|
+
})) : /*#__PURE__*/_react["default"].createElement(_antd.Empty, null)), /*#__PURE__*/_react["default"].createElement("h4", null, "\u6838\u5B9E"), /*#__PURE__*/_react["default"].createElement("div", {
|
|
285
|
+
className: 'picItem'
|
|
286
|
+
}, ((_c = showInfo === null || showInfo === void 0 ? void 0 : showInfo.verifyAttach) === null || _c === void 0 ? void 0 : _c.length) > 0 ? /*#__PURE__*/_react["default"].createElement(_reactSlick["default"], Object.assign({}, sliderProps), (_d = showInfo === null || showInfo === void 0 ? void 0 : showInfo.verifyAttach) === null || _d === void 0 ? void 0 : _d.map(function (item) {
|
|
287
|
+
if (String(item.type) == '0' || String(item.type).includes('image')) {
|
|
288
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
289
|
+
style: {
|
|
290
|
+
textAlign: 'center'
|
|
291
|
+
},
|
|
292
|
+
key: item.id
|
|
293
|
+
}, /*#__PURE__*/_react["default"].createElement(_components.VtxImage, {
|
|
294
|
+
aspectFit: true,
|
|
295
|
+
width: "100%",
|
|
296
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
297
|
+
}));
|
|
298
|
+
} else if (String(item.type) == '2' || String(item.type).includes('audio')) {
|
|
299
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
300
|
+
style: {
|
|
301
|
+
textAlign: 'center'
|
|
302
|
+
},
|
|
303
|
+
key: item.id
|
|
304
|
+
}, /*#__PURE__*/_react["default"].createElement("audio", {
|
|
305
|
+
controls: true,
|
|
306
|
+
autoPlay: true,
|
|
307
|
+
muted: true,
|
|
308
|
+
preload: "preload",
|
|
309
|
+
loop: true,
|
|
310
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item === null || item === void 0 ? void 0 : item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
311
|
+
}));
|
|
312
|
+
} else if (String(item.type) == '1' || String(item.type).includes('video')) {
|
|
313
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
314
|
+
style: {
|
|
315
|
+
textAlign: 'center'
|
|
316
|
+
},
|
|
317
|
+
key: item.id
|
|
318
|
+
}, /*#__PURE__*/_react["default"].createElement("video", {
|
|
319
|
+
controls: true,
|
|
320
|
+
autoPlay: true,
|
|
321
|
+
muted: true,
|
|
322
|
+
preload: "preload",
|
|
323
|
+
width: "100%",
|
|
324
|
+
loop: true,
|
|
325
|
+
height: "100%",
|
|
326
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
327
|
+
}));
|
|
328
|
+
}
|
|
329
|
+
})) : /*#__PURE__*/_react["default"].createElement(_antd.Empty, null)), /*#__PURE__*/_react["default"].createElement("h4", null, "\u5904\u7F6E"), /*#__PURE__*/_react["default"].createElement("div", {
|
|
330
|
+
className: 'picItem'
|
|
331
|
+
}, ((_e = showInfo === null || showInfo === void 0 ? void 0 : showInfo.disposeAttach) === null || _e === void 0 ? void 0 : _e.length) > 0 ? /*#__PURE__*/_react["default"].createElement(_reactSlick["default"], Object.assign({}, sliderProps), (_f = showInfo === null || showInfo === void 0 ? void 0 : showInfo.disposeAttach) === null || _f === void 0 ? void 0 : _f.map(function (item) {
|
|
332
|
+
if (String(item.type) == '0' || String(item.type).includes('image')) {
|
|
333
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
334
|
+
style: {
|
|
335
|
+
textAlign: 'center'
|
|
336
|
+
},
|
|
337
|
+
key: item.id
|
|
338
|
+
}, /*#__PURE__*/_react["default"].createElement(_components.VtxImage, {
|
|
339
|
+
aspectFit: true,
|
|
340
|
+
width: "100%",
|
|
341
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
342
|
+
}));
|
|
343
|
+
} else if (String(item.type) == '2' || String(item.type).includes('audio')) {
|
|
344
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
345
|
+
style: {
|
|
346
|
+
textAlign: 'center'
|
|
347
|
+
},
|
|
348
|
+
key: item.id
|
|
349
|
+
}, /*#__PURE__*/_react["default"].createElement("audio", {
|
|
350
|
+
controls: true,
|
|
351
|
+
autoPlay: true,
|
|
352
|
+
muted: true,
|
|
353
|
+
preload: "true",
|
|
354
|
+
loop: true,
|
|
355
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
356
|
+
}));
|
|
357
|
+
} else if (String(item.type) == '1' || String(item.type).includes('video')) {
|
|
358
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
359
|
+
style: {
|
|
360
|
+
textAlign: 'center'
|
|
361
|
+
},
|
|
362
|
+
key: item.id
|
|
363
|
+
}, /*#__PURE__*/_react["default"].createElement("video", {
|
|
364
|
+
controls: true,
|
|
365
|
+
autoPlay: true,
|
|
366
|
+
muted: true,
|
|
367
|
+
preload: "preload",
|
|
368
|
+
width: "100%",
|
|
369
|
+
loop: true,
|
|
370
|
+
height: "100%",
|
|
371
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
372
|
+
}));
|
|
373
|
+
}
|
|
374
|
+
})) : /*#__PURE__*/_react["default"].createElement(_antd.Empty, null)), /*#__PURE__*/_react["default"].createElement("h4", null, "\u6838\u67E5"), /*#__PURE__*/_react["default"].createElement("div", {
|
|
375
|
+
className: 'picItem'
|
|
376
|
+
}, ((_g = showInfo === null || showInfo === void 0 ? void 0 : showInfo.inspectAttach) === null || _g === void 0 ? void 0 : _g.length) > 0 ? /*#__PURE__*/_react["default"].createElement(_reactSlick["default"], Object.assign({}, sliderProps), (_h = showInfo === null || showInfo === void 0 ? void 0 : showInfo.inspectAttach) === null || _h === void 0 ? void 0 : _h.map(function (item) {
|
|
377
|
+
if (String(item.type) == '0' || String(item.type).includes('image')) {
|
|
378
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
379
|
+
style: {
|
|
380
|
+
textAlign: 'center'
|
|
381
|
+
},
|
|
382
|
+
key: item.id
|
|
383
|
+
}, /*#__PURE__*/_react["default"].createElement(_components.VtxImage, {
|
|
384
|
+
aspectFit: true,
|
|
385
|
+
width: "100%",
|
|
386
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
387
|
+
}));
|
|
388
|
+
} else if (String(item.type) == '2' || String(item.type).includes('audio')) {
|
|
389
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
390
|
+
style: {
|
|
391
|
+
textAlign: 'center'
|
|
392
|
+
},
|
|
393
|
+
key: item.id
|
|
394
|
+
}, /*#__PURE__*/_react["default"].createElement("audio", {
|
|
395
|
+
controls: true,
|
|
396
|
+
autoPlay: true,
|
|
397
|
+
muted: true,
|
|
398
|
+
preload: "preload",
|
|
399
|
+
loop: true,
|
|
400
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
401
|
+
}));
|
|
402
|
+
} else if (String(item.type) == '1' || String(item.type).includes('video')) {
|
|
403
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
404
|
+
style: {
|
|
405
|
+
textAlign: 'center'
|
|
406
|
+
},
|
|
407
|
+
key: item.id
|
|
408
|
+
}, /*#__PURE__*/_react["default"].createElement("video", {
|
|
409
|
+
controls: true,
|
|
410
|
+
autoPlay: true,
|
|
411
|
+
muted: true,
|
|
412
|
+
preload: "preload",
|
|
413
|
+
width: "100%",
|
|
414
|
+
loop: true,
|
|
415
|
+
height: "100%",
|
|
416
|
+
src: "/cloudFile/common/downloadFile?id=".concat(item.id, "&token=").concat((0, _utils.getUrlParam)('token'))
|
|
417
|
+
}));
|
|
418
|
+
}
|
|
419
|
+
})) : /*#__PURE__*/_react["default"].createElement(_antd.Empty, null))));
|
|
420
|
+
};
|
|
421
|
+
var _default = Picture;
|
|
422
|
+
exports["default"] = _default;
|
|
423
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":["_react","_interopRequireWildcard","require","_useSettings2","_interopRequireDefault","_vmSubTitle","_reactSlick","_antd","_components","_utils","_api","obj","__esModule","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","_typeof","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","_slicedToArray","arr","i","_arrayWithHoles","_iterableToArrayLimit","_unsupportedIterableToArray","_nonIterableRest","TypeError","o","minLen","_arrayLikeToArray","n","toString","slice","constructor","name","Array","from","test","len","length","arr2","_i","Symbol","iterator","_s","_e","_x","_r","_arr","_n","_d","next","done","push","value","err","isArray","tabs","Picture","props","_a","_b","_c","_f","_g","_h","caseId","_useSettings","useSettings","theme","showInfo","otherInfo","_useState","useState","_useState2","currentTab","setCurrentTab","_BaseService$useCaseP","BaseService","useCaseProcessData","otherDetail","id","reportAttach","verifyAttach","disposeAttach","inspectAttach","reportAttachs","JSON","parse","verifyAttachs","disposeAttachs","inspectAttachs","filter","item","type","includes","assign","taskList","map","sliderProps","dots","arrows","infinite","accessibility","speed","autoplay","slidesToShow","slidesToScroll","React","createElement","className","concat","VmSubTitle","title","onClick","Slider","String","style","textAlign","VtxImage","aspectFit","width","src","getUrlParam","controls","autoPlay","muted","preload","loop","height","Empty","_default","exports"],"sources":["vm-case-modal/components/Picture/index.js"],"sourcesContent":["import React, { useState } from \"react\";\nimport useSettings from '../../../vm-hooks/useSettings';\nimport VmSubTitle from '../../../vm-sub-title';\nimport './index.less';\nimport Slider from 'react-slick';\nimport 'slick-carousel/slick/slick.css';\nimport 'slick-carousel/slick/slick-theme.css';\nimport { Empty } from \"antd\";\nimport { VtxImage } from '@vtx/components';\nimport { getUrlParam } from '@vtx/utils';\nimport { BaseService } from '../../api';\nconst tabs = [\n { key: 'image', name: '图片' },\n { key: 'audio', name: '音频' },\n { key: 'video', name: '视频' },\n];\nconst Picture = props => {\n var _a, _b, _c, _d, _e, _f, _g, _h;\n const { caseId } = props;\n const { theme } = useSettings();\n let showInfo = {};\n let otherInfo = {};\n const [currentTab, setCurrentTab] = useState('image');\n const { otherDetail } = BaseService.useCaseProcessData(caseId);\n if (otherDetail === null || otherDetail === void 0 ? void 0 : otherDetail.id) {\n const { reportAttach, verifyAttach, disposeAttach, inspectAttach } = otherDetail;\n let reportAttachs = reportAttach ? JSON.parse(reportAttach) : []; //上报\n let verifyAttachs = verifyAttach ? JSON.parse(verifyAttach) : []; //核实\n let disposeAttachs = disposeAttach\n ? JSON.parse(disposeAttach)\n : []; //处置\n let inspectAttachs = inspectAttach\n ? JSON.parse(inspectAttach)\n : []; //核查\n showInfo = {\n reportAttach: reportAttachs.filter((item) => {\n if (typeof item.type == 'number') {\n return item.type == 0;\n }\n else {\n return item.type.includes('image');\n }\n }),\n verifyAttach: verifyAttachs.filter((item) => {\n if (typeof item.type == 'number') {\n return item.type == 0;\n }\n else {\n return item.type.includes('image');\n }\n }),\n disposeAttach: disposeAttachs.filter((item) => {\n if (typeof item.type == 'number') {\n return item.type == 0;\n }\n else {\n return item.type.includes('image');\n }\n }),\n inspectAttach: inspectAttachs.filter((item) => {\n if (typeof item.type == 'number') {\n return item.type == 0;\n }\n else {\n return item.type.includes('image');\n }\n }),\n };\n otherInfo = Object.assign(Object.assign({}, otherDetail), { taskList: otherDetail === null || otherDetail === void 0 ? void 0 : otherDetail.taskList.map((item) => {\n return Object.assign(Object.assign({}, item), { key: item.id });\n }), reportAttach: reportAttachs, verifyAttach: verifyAttachs, disposeAttach: disposeAttachs, inspectAttach: inspectAttachs });\n }\n const sliderProps = {\n dots: false,\n arrows: true,\n infinite: true,\n accessibility: true,\n speed: 500,\n autoplay: false,\n slidesToShow: 1,\n slidesToScroll: 1,\n };\n return (React.createElement(\"div\", { className: `case-pic ${theme}` },\n React.createElement(VmSubTitle, { title: \"\\u6848\\u4EF6\\u591A\\u5A92\\u4F53\\u8D44\\u6599\" }),\n React.createElement(\"div\", { className: 'tabs' }, tabs.map((item) => {\n return (React.createElement(\"div\", { key: item.key, className: `tab ${currentTab === item.key && 'active'}`, onClick: () => {\n setCurrentTab(item.key);\n let reportAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.reportAttach) || []; //上报\n let verifyAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.verifyAttach) || []; //核实\n let disposeAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.disposeAttach) || []; //处置\n let inspectAttach = (otherInfo === null || otherInfo === void 0 ? void 0 : otherInfo.inspectAttach) || []; //核查\n if (item.key == 'image') {\n showInfo = {\n reportAttach: (reportAttach === null || reportAttach === void 0 ? void 0 : reportAttach.filter((item) => {\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 0;\n }\n else {\n return item === null || item === void 0 ? void 0 : item.type.includes('image');\n }\n })) || [],\n verifyAttach: (verifyAttach === null || verifyAttach === void 0 ? void 0 : verifyAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 0;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('image');\n }\n })) || [],\n disposeAttach: (disposeAttach === null || disposeAttach === void 0 ? void 0 : disposeAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 0;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('image');\n }\n })) || [],\n inspectAttach: (inspectAttach === null || inspectAttach === void 0 ? void 0 : inspectAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 0;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('image');\n }\n })) || [],\n };\n }\n if (item.key == 'audio') {\n showInfo = {\n reportAttach: (reportAttach === null || reportAttach === void 0 ? void 0 : reportAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 2;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');\n }\n })) || [],\n verifyAttach: (verifyAttach === null || verifyAttach === void 0 ? void 0 : verifyAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 2;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');\n }\n })) || [],\n disposeAttach: (disposeAttach === null || disposeAttach === void 0 ? void 0 : disposeAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 2;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');\n }\n })) || [],\n inspectAttach: (inspectAttach === null || inspectAttach === void 0 ? void 0 : inspectAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 2;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('audio');\n }\n })) || [],\n };\n }\n if (item.key == 'video') {\n showInfo = {\n reportAttach: (reportAttach === null || reportAttach === void 0 ? void 0 : reportAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 1;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('video');\n }\n })) || [],\n verifyAttach: (verifyAttach === null || verifyAttach === void 0 ? void 0 : verifyAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 1;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('video');\n }\n })) || [],\n disposeAttach: (disposeAttach === null || disposeAttach === void 0 ? void 0 : disposeAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 1;\n }\n else {\n return (_a = item.type) === null || _a === void 0 ? void 0 : _a.includes('video');\n }\n })) || [],\n inspectAttach: (inspectAttach === null || inspectAttach === void 0 ? void 0 : inspectAttach.filter((item) => {\n var _a;\n if (typeof (item === null || item === void 0 ? void 0 : item.type) == 'number') {\n return (item === null || item === void 0 ? void 0 : item.type) == 1;\n }\n else {\n return (_a = item === null || item === void 0 ? void 0 : item.type) === null || _a === void 0 ? void 0 : _a.includes('video');\n }\n })) || [],\n };\n }\n } }, item.name));\n })),\n React.createElement(\"div\", { className: 'piclist' },\n React.createElement(\"h4\", null, \"\\u4E0A\\u62A5\"),\n React.createElement(\"div\", { className: 'picItem' }, ((_a = showInfo === null || showInfo === void 0 ? void 0 : showInfo.reportAttach) === null || _a === void 0 ? void 0 : _a.length) > 0 ? (React.createElement(Slider, Object.assign({}, sliderProps), (_b = showInfo === null || showInfo === void 0 ? void 0 : showInfo.reportAttach) === null || _b === void 0 ? void 0 : _b.map((item) => {\n if (String(item.type) == '0' ||\n String(item.type).includes('image')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(VtxImage, { aspectFit: true, width: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '2' ||\n String(item.type).includes('audio')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"audio\", { controls: true, autoPlay: true, muted: true, preload: \"preload\", loop: true, src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '1' ||\n String(item.type).includes('video')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"video\", { controls: true, autoPlay: true, muted: true, preload: \"preload\", width: \"100%\", loop: true, height: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n }))) : (React.createElement(Empty, null))),\n React.createElement(\"h4\", null, \"\\u6838\\u5B9E\"),\n React.createElement(\"div\", { className: 'picItem' }, ((_c = showInfo === null || showInfo === void 0 ? void 0 : showInfo.verifyAttach) === null || _c === void 0 ? void 0 : _c.length) > 0 ? (React.createElement(Slider, Object.assign({}, sliderProps), (_d = showInfo === null || showInfo === void 0 ? void 0 : showInfo.verifyAttach) === null || _d === void 0 ? void 0 : _d.map((item) => {\n if (String(item.type) == '0' ||\n String(item.type).includes('image')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(VtxImage, { aspectFit: true, width: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '2' ||\n String(item.type).includes('audio')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"audio\", { controls: true, autoPlay: true, muted: true, preload: \"preload\", loop: true, src: `/cloudFile/common/downloadFile?id=${item === null || item === void 0 ? void 0 : item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '1' ||\n String(item.type).includes('video')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"video\", { controls: true, autoPlay: true, muted: true, preload: \"preload\", width: \"100%\", loop: true, height: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n }))) : (React.createElement(Empty, null))),\n React.createElement(\"h4\", null, \"\\u5904\\u7F6E\"),\n React.createElement(\"div\", { className: 'picItem' }, ((_e = showInfo === null || showInfo === void 0 ? void 0 : showInfo.disposeAttach) === null || _e === void 0 ? void 0 : _e.length) > 0 ? (React.createElement(Slider, Object.assign({}, sliderProps), (_f = showInfo === null || showInfo === void 0 ? void 0 : showInfo.disposeAttach) === null || _f === void 0 ? void 0 : _f.map((item) => {\n if (String(item.type) == '0' ||\n String(item.type).includes('image')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(VtxImage, { aspectFit: true, width: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '2' ||\n String(item.type).includes('audio')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"audio\", { controls: true, autoPlay: true, muted: true, preload: \"true\", loop: true, src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '1' ||\n String(item.type).includes('video')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"video\", { controls: true, autoPlay: true, muted: true, preload: \"preload\", width: \"100%\", loop: true, height: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n }))) : (React.createElement(Empty, null))),\n React.createElement(\"h4\", null, \"\\u6838\\u67E5\"),\n React.createElement(\"div\", { className: 'picItem' }, ((_g = showInfo === null || showInfo === void 0 ? void 0 : showInfo.inspectAttach) === null || _g === void 0 ? void 0 : _g.length) > 0 ? (React.createElement(Slider, Object.assign({}, sliderProps), (_h = showInfo === null || showInfo === void 0 ? void 0 : showInfo.inspectAttach) === null || _h === void 0 ? void 0 : _h.map((item) => {\n if (String(item.type) == '0' ||\n String(item.type).includes('image')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(VtxImage, { aspectFit: true, width: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '2' ||\n String(item.type).includes('audio')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"audio\", { controls: true, autoPlay: true, muted: true, preload: \"preload\", loop: true, src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n else if (String(item.type) == '1' ||\n String(item.type).includes('video')) {\n return (React.createElement(\"div\", { style: { textAlign: 'center' }, key: item.id },\n React.createElement(\"video\", { controls: true, autoPlay: true, muted: true, preload: \"preload\", width: \"100%\", loop: true, height: \"100%\", src: `/cloudFile/common/downloadFile?id=${item.id}&token=${getUrlParam('token')}` })));\n }\n }))) : (React.createElement(Empty, null))))));\n};\nexport default Picture;\n"],"mappings":"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"}
|