parent
93985e5920
commit
1499f47c34
@ -0,0 +1,979 @@
|
||||
"use strict";
|
||||
(self["webpackChunk"] = self["webpackChunk"] || []).push([[8800],{
|
||||
|
||||
/***/ 56580:
|
||||
/*!**********************************************************************************************************!*\
|
||||
!*** ./node_modules/_@ant-design_icons@5.6.0@@ant-design/icons/es/icons/LeftCircleFilled.js + 1 modules ***!
|
||||
\**********************************************************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
Z: function() { return /* binding */ icons_LeftCircleFilled; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.26.7@@babel/runtime/helpers/esm/extends.js
|
||||
var esm_extends = __webpack_require__(16378);
|
||||
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
||||
var _react_17_0_2_react = __webpack_require__(59301);
|
||||
;// CONCATENATED MODULE: ./node_modules/_@ant-design_icons-svg@4.4.2@@ant-design/icons-svg/es/asn/LeftCircleFilled.js
|
||||
// This icon file is generated automatically.
|
||||
var LeftCircleFilled = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm104 316.9c0 10.2-4.9 19.9-13.2 25.9L457.4 512l145.4 105.2c8.3 6 13.2 15.6 13.2 25.9V690c0 6.5-7.4 10.3-12.7 6.5l-246-178a7.95 7.95 0 010-12.9l246-178a8 8 0 0112.7 6.5v46.8z" } }] }, "name": "left-circle", "theme": "filled" };
|
||||
/* harmony default export */ var asn_LeftCircleFilled = (LeftCircleFilled);
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/_@ant-design_icons@5.6.0@@ant-design/icons/es/components/AntdIcon.js + 3 modules
|
||||
var AntdIcon = __webpack_require__(31533);
|
||||
;// CONCATENATED MODULE: ./node_modules/_@ant-design_icons@5.6.0@@ant-design/icons/es/icons/LeftCircleFilled.js
|
||||
|
||||
// GENERATE BY ./scripts/generate.ts
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
|
||||
|
||||
|
||||
var LeftCircleFilled_LeftCircleFilled = function LeftCircleFilled(props, ref) {
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement(AntdIcon/* default */.Z, (0,esm_extends/* default */.Z)({}, props, {
|
||||
ref: ref,
|
||||
icon: asn_LeftCircleFilled
|
||||
}));
|
||||
};
|
||||
|
||||
/** */
|
||||
var RefIcon = /*#__PURE__*/_react_17_0_2_react.forwardRef(LeftCircleFilled_LeftCircleFilled);
|
||||
if (false) {}
|
||||
/* harmony default export */ var icons_LeftCircleFilled = (RefIcon);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 66104:
|
||||
/*!**************************************************************************!*\
|
||||
!*** ./node_modules/_antd@5.9.0@antd/es/breadcrumb/index.js + 6 modules ***!
|
||||
\**************************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
Z: function() { return /* binding */ breadcrumb; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/_classnames@2.5.1@classnames/index.js
|
||||
var _classnames_2_5_1_classnames = __webpack_require__(92310);
|
||||
var _classnames_2_5_1_classnames_default = /*#__PURE__*/__webpack_require__.n(_classnames_2_5_1_classnames);
|
||||
// EXTERNAL MODULE: ./node_modules/_rc-util@5.44.3@rc-util/es/Children/toArray.js
|
||||
var toArray = __webpack_require__(38298);
|
||||
// EXTERNAL MODULE: ./node_modules/_rc-util@5.44.3@rc-util/es/pickAttrs.js
|
||||
var pickAttrs = __webpack_require__(36994);
|
||||
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
||||
var _react_17_0_2_react = __webpack_require__(59301);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/_util/reactNode.js
|
||||
var reactNode = __webpack_require__(92343);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/config-provider/context.js
|
||||
var context = __webpack_require__(36355);
|
||||
// EXTERNAL MODULE: ./node_modules/_@ant-design_icons@5.6.0@@ant-design/icons/es/icons/DownOutlined.js + 1 modules
|
||||
var DownOutlined = __webpack_require__(76995);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/dropdown/dropdown.js
|
||||
var dropdown = __webpack_require__(91857);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/BreadcrumbSeparator.js
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
const BreadcrumbSeparator = _ref => {
|
||||
let {
|
||||
children
|
||||
} = _ref;
|
||||
const {
|
||||
getPrefixCls
|
||||
} = _react_17_0_2_react.useContext(context/* ConfigContext */.E_);
|
||||
const prefixCls = getPrefixCls('breadcrumb');
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement("li", {
|
||||
className: `${prefixCls}-separator`,
|
||||
"aria-hidden": "true"
|
||||
}, children === '' ? children : children || '/');
|
||||
};
|
||||
BreadcrumbSeparator.__ANT_BREADCRUMB_SEPARATOR = true;
|
||||
/* harmony default export */ var breadcrumb_BreadcrumbSeparator = (BreadcrumbSeparator);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/useItemRender.js
|
||||
"use client";
|
||||
|
||||
var __rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
function getBreadcrumbName(route, params) {
|
||||
if (route.title === undefined || route.title === null) {
|
||||
return null;
|
||||
}
|
||||
const paramsKeys = Object.keys(params).join('|');
|
||||
return typeof route.title === 'object' ? route.title : String(route.title).replace(new RegExp(`:(${paramsKeys})`, 'g'), (replacement, key) => params[key] || replacement);
|
||||
}
|
||||
function renderItem(prefixCls, item, children, href) {
|
||||
if (children === null || children === undefined) {
|
||||
return null;
|
||||
}
|
||||
const {
|
||||
className,
|
||||
onClick
|
||||
} = item,
|
||||
restItem = __rest(item, ["className", "onClick"]);
|
||||
const passedProps = Object.assign(Object.assign({}, (0,pickAttrs/* default */.Z)(restItem, {
|
||||
data: true,
|
||||
aria: true
|
||||
})), {
|
||||
onClick
|
||||
});
|
||||
if (href !== undefined) {
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement("a", Object.assign({}, passedProps, {
|
||||
className: _classnames_2_5_1_classnames_default()(`${prefixCls}-link`, className),
|
||||
href: href
|
||||
}), children);
|
||||
}
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement("span", Object.assign({}, passedProps, {
|
||||
className: _classnames_2_5_1_classnames_default()(`${prefixCls}-link`, className)
|
||||
}), children);
|
||||
}
|
||||
function useItemRender(prefixCls, itemRender) {
|
||||
const mergedItemRender = (item, params, routes, path, href) => {
|
||||
if (itemRender) {
|
||||
return itemRender(item, params, routes, path);
|
||||
}
|
||||
const name = getBreadcrumbName(item, params);
|
||||
return renderItem(prefixCls, item, name, href);
|
||||
};
|
||||
return mergedItemRender;
|
||||
}
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/BreadcrumbItem.js
|
||||
"use client";
|
||||
|
||||
var BreadcrumbItem_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
const InternalBreadcrumbItem = props => {
|
||||
const {
|
||||
prefixCls,
|
||||
separator = '/',
|
||||
children,
|
||||
menu,
|
||||
overlay,
|
||||
dropdownProps,
|
||||
href
|
||||
} = props;
|
||||
// Warning for deprecated usage
|
||||
if (false) {}
|
||||
/** If overlay is have Wrap a Dropdown */
|
||||
const renderBreadcrumbNode = breadcrumbItem => {
|
||||
if (menu || overlay) {
|
||||
const mergeDropDownProps = Object.assign({}, dropdownProps);
|
||||
if (menu) {
|
||||
const _a = menu || {},
|
||||
{
|
||||
items
|
||||
} = _a,
|
||||
menuProps = BreadcrumbItem_rest(_a, ["items"]);
|
||||
mergeDropDownProps.menu = Object.assign(Object.assign({}, menuProps), {
|
||||
items: items === null || items === void 0 ? void 0 : items.map((_a, index) => {
|
||||
var {
|
||||
key,
|
||||
title,
|
||||
label,
|
||||
path
|
||||
} = _a,
|
||||
itemProps = BreadcrumbItem_rest(_a, ["key", "title", "label", "path"]);
|
||||
let mergedLabel = label !== null && label !== void 0 ? label : title;
|
||||
if (path) {
|
||||
mergedLabel = /*#__PURE__*/_react_17_0_2_react.createElement("a", {
|
||||
href: `${href}${path}`
|
||||
}, mergedLabel);
|
||||
}
|
||||
return Object.assign(Object.assign({}, itemProps), {
|
||||
key: key !== null && key !== void 0 ? key : index,
|
||||
label: mergedLabel
|
||||
});
|
||||
})
|
||||
});
|
||||
} else if (overlay) {
|
||||
mergeDropDownProps.overlay = overlay;
|
||||
}
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement(dropdown/* default */.Z, Object.assign({
|
||||
placement: "bottom"
|
||||
}, mergeDropDownProps), /*#__PURE__*/_react_17_0_2_react.createElement("span", {
|
||||
className: `${prefixCls}-overlay-link`
|
||||
}, breadcrumbItem, /*#__PURE__*/_react_17_0_2_react.createElement(DownOutlined/* default */.Z, null)));
|
||||
}
|
||||
return breadcrumbItem;
|
||||
};
|
||||
// wrap to dropDown
|
||||
const link = renderBreadcrumbNode(children);
|
||||
if (link !== undefined && link !== null) {
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement(_react_17_0_2_react.Fragment, null, /*#__PURE__*/_react_17_0_2_react.createElement("li", null, link), separator && /*#__PURE__*/_react_17_0_2_react.createElement(breadcrumb_BreadcrumbSeparator, null, separator));
|
||||
}
|
||||
return null;
|
||||
};
|
||||
const BreadcrumbItem = props => {
|
||||
const {
|
||||
prefixCls: customizePrefixCls,
|
||||
children,
|
||||
href
|
||||
} = props,
|
||||
restProps = BreadcrumbItem_rest(props, ["prefixCls", "children", "href"]);
|
||||
const {
|
||||
getPrefixCls
|
||||
} = _react_17_0_2_react.useContext(context/* ConfigContext */.E_);
|
||||
const prefixCls = getPrefixCls('breadcrumb', customizePrefixCls);
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement(InternalBreadcrumbItem, Object.assign({}, restProps, {
|
||||
prefixCls: prefixCls
|
||||
}), renderItem(prefixCls, restProps, children, href));
|
||||
};
|
||||
BreadcrumbItem.__ANT_BREADCRUMB_ITEM = true;
|
||||
/* harmony default export */ var breadcrumb_BreadcrumbItem = (BreadcrumbItem);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/style/index.js
|
||||
var style = __webpack_require__(17313);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/genComponentStyleHook.js
|
||||
var genComponentStyleHook = __webpack_require__(83116);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/statistic.js
|
||||
var statistic = __webpack_require__(37613);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/style/index.js
|
||||
|
||||
|
||||
const genBreadcrumbStyle = token => {
|
||||
const {
|
||||
componentCls,
|
||||
iconCls
|
||||
} = token;
|
||||
return {
|
||||
[componentCls]: Object.assign(Object.assign({}, (0,style/* resetComponent */.Wf)(token)), {
|
||||
color: token.itemColor,
|
||||
fontSize: token.fontSize,
|
||||
[iconCls]: {
|
||||
fontSize: token.iconFontSize
|
||||
},
|
||||
ol: {
|
||||
display: 'flex',
|
||||
flexWrap: 'wrap',
|
||||
margin: 0,
|
||||
padding: 0,
|
||||
listStyle: 'none'
|
||||
},
|
||||
a: Object.assign({
|
||||
color: token.linkColor,
|
||||
transition: `color ${token.motionDurationMid}`,
|
||||
padding: `0 ${token.paddingXXS}px`,
|
||||
borderRadius: token.borderRadiusSM,
|
||||
height: token.lineHeight * token.fontSize,
|
||||
display: 'inline-block',
|
||||
marginInline: -token.marginXXS,
|
||||
'&:hover': {
|
||||
color: token.linkHoverColor,
|
||||
backgroundColor: token.colorBgTextHover
|
||||
}
|
||||
}, (0,style/* genFocusStyle */.Qy)(token)),
|
||||
[`li:last-child`]: {
|
||||
color: token.lastItemColor
|
||||
},
|
||||
[`${componentCls}-separator`]: {
|
||||
marginInline: token.separatorMargin,
|
||||
color: token.separatorColor
|
||||
},
|
||||
[`${componentCls}-link`]: {
|
||||
[`
|
||||
> ${iconCls} + span,
|
||||
> ${iconCls} + a
|
||||
`]: {
|
||||
marginInlineStart: token.marginXXS
|
||||
}
|
||||
},
|
||||
[`${componentCls}-overlay-link`]: {
|
||||
borderRadius: token.borderRadiusSM,
|
||||
height: token.lineHeight * token.fontSize,
|
||||
display: 'inline-block',
|
||||
padding: `0 ${token.paddingXXS}px`,
|
||||
marginInline: -token.marginXXS,
|
||||
[`> ${iconCls}`]: {
|
||||
marginInlineStart: token.marginXXS,
|
||||
fontSize: token.fontSizeIcon
|
||||
},
|
||||
'&:hover': {
|
||||
color: token.linkHoverColor,
|
||||
backgroundColor: token.colorBgTextHover,
|
||||
a: {
|
||||
color: token.linkHoverColor
|
||||
}
|
||||
},
|
||||
a: {
|
||||
'&:hover': {
|
||||
backgroundColor: 'transparent'
|
||||
}
|
||||
}
|
||||
},
|
||||
// rtl style
|
||||
[`&${token.componentCls}-rtl`]: {
|
||||
direction: 'rtl'
|
||||
}
|
||||
})
|
||||
};
|
||||
};
|
||||
// ============================== Export ==============================
|
||||
/* harmony default export */ var breadcrumb_style = ((0,genComponentStyleHook/* default */.Z)('Breadcrumb', token => {
|
||||
const BreadcrumbToken = (0,statistic/* merge */.TS)(token, {});
|
||||
return [genBreadcrumbStyle(BreadcrumbToken)];
|
||||
}, token => ({
|
||||
itemColor: token.colorTextDescription,
|
||||
lastItemColor: token.colorText,
|
||||
iconFontSize: token.fontSize,
|
||||
linkColor: token.colorTextDescription,
|
||||
linkHoverColor: token.colorText,
|
||||
separatorColor: token.colorTextDescription,
|
||||
separatorMargin: token.marginXS
|
||||
})));
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/useItems.js
|
||||
var useItems_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
function route2item(route) {
|
||||
const {
|
||||
breadcrumbName,
|
||||
children
|
||||
} = route,
|
||||
rest = useItems_rest(route, ["breadcrumbName", "children"]);
|
||||
const clone = Object.assign({
|
||||
title: breadcrumbName
|
||||
}, rest);
|
||||
if (children) {
|
||||
clone.menu = {
|
||||
items: children.map(_a => {
|
||||
var {
|
||||
breadcrumbName: itemBreadcrumbName
|
||||
} = _a,
|
||||
itemProps = useItems_rest(_a, ["breadcrumbName"]);
|
||||
return Object.assign(Object.assign({}, itemProps), {
|
||||
title: itemBreadcrumbName
|
||||
});
|
||||
})
|
||||
};
|
||||
}
|
||||
return clone;
|
||||
}
|
||||
function useItems(items, routes) {
|
||||
return (0,_react_17_0_2_react.useMemo)(() => {
|
||||
if (items) {
|
||||
return items;
|
||||
}
|
||||
if (routes) {
|
||||
return routes.map(route2item);
|
||||
}
|
||||
return null;
|
||||
}, [items, routes]);
|
||||
}
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/Breadcrumb.js
|
||||
"use client";
|
||||
|
||||
var Breadcrumb_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
const getPath = (params, path) => {
|
||||
if (path === undefined) {
|
||||
return path;
|
||||
}
|
||||
let mergedPath = (path || '').replace(/^\//, '');
|
||||
Object.keys(params).forEach(key => {
|
||||
mergedPath = mergedPath.replace(`:${key}`, params[key]);
|
||||
});
|
||||
return mergedPath;
|
||||
};
|
||||
const Breadcrumb = props => {
|
||||
const {
|
||||
prefixCls: customizePrefixCls,
|
||||
separator = '/',
|
||||
style,
|
||||
className,
|
||||
rootClassName,
|
||||
routes: legacyRoutes,
|
||||
items,
|
||||
children,
|
||||
itemRender,
|
||||
params = {}
|
||||
} = props,
|
||||
restProps = Breadcrumb_rest(props, ["prefixCls", "separator", "style", "className", "rootClassName", "routes", "items", "children", "itemRender", "params"]);
|
||||
const {
|
||||
getPrefixCls,
|
||||
direction,
|
||||
breadcrumb
|
||||
} = _react_17_0_2_react.useContext(context/* ConfigContext */.E_);
|
||||
let crumbs;
|
||||
const prefixCls = getPrefixCls('breadcrumb', customizePrefixCls);
|
||||
const [wrapSSR, hashId] = breadcrumb_style(prefixCls);
|
||||
const mergedItems = useItems(items, legacyRoutes);
|
||||
if (false) {}
|
||||
const mergedItemRender = useItemRender(prefixCls, itemRender);
|
||||
if (mergedItems && mergedItems.length > 0) {
|
||||
// generated by route
|
||||
const paths = [];
|
||||
const itemRenderRoutes = items || legacyRoutes;
|
||||
crumbs = mergedItems.map((item, index) => {
|
||||
const {
|
||||
path,
|
||||
key,
|
||||
type,
|
||||
menu,
|
||||
overlay,
|
||||
onClick,
|
||||
className: itemClassName,
|
||||
separator: itemSeparator,
|
||||
dropdownProps
|
||||
} = item;
|
||||
const mergedPath = getPath(params, path);
|
||||
if (mergedPath !== undefined) {
|
||||
paths.push(mergedPath);
|
||||
}
|
||||
const mergedKey = key !== null && key !== void 0 ? key : index;
|
||||
if (type === 'separator') {
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement(breadcrumb_BreadcrumbSeparator, {
|
||||
key: mergedKey
|
||||
}, itemSeparator);
|
||||
}
|
||||
const itemProps = {};
|
||||
const isLastItem = index === mergedItems.length - 1;
|
||||
if (menu) {
|
||||
itemProps.menu = menu;
|
||||
} else if (overlay) {
|
||||
itemProps.overlay = overlay;
|
||||
}
|
||||
let {
|
||||
href
|
||||
} = item;
|
||||
if (paths.length && mergedPath !== undefined) {
|
||||
href = `#/${paths.join('/')}`;
|
||||
}
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement(InternalBreadcrumbItem, Object.assign({
|
||||
key: mergedKey
|
||||
}, itemProps, (0,pickAttrs/* default */.Z)(item, {
|
||||
data: true,
|
||||
aria: true
|
||||
}), {
|
||||
className: itemClassName,
|
||||
dropdownProps: dropdownProps,
|
||||
href: href,
|
||||
separator: isLastItem ? '' : separator,
|
||||
onClick: onClick,
|
||||
prefixCls: prefixCls
|
||||
}), mergedItemRender(item, params, itemRenderRoutes, paths, href));
|
||||
});
|
||||
} else if (children) {
|
||||
const childrenLength = (0,toArray/* default */.Z)(children).length;
|
||||
crumbs = (0,toArray/* default */.Z)(children).map((element, index) => {
|
||||
if (!element) {
|
||||
return element;
|
||||
}
|
||||
// =================== Warning =====================
|
||||
if (false) {}
|
||||
false ? 0 : void 0;
|
||||
const isLastItem = index === childrenLength - 1;
|
||||
return (0,reactNode/* cloneElement */.Tm)(element, {
|
||||
separator: isLastItem ? '' : separator,
|
||||
key: index
|
||||
});
|
||||
});
|
||||
}
|
||||
const breadcrumbClassName = _classnames_2_5_1_classnames_default()(prefixCls, breadcrumb === null || breadcrumb === void 0 ? void 0 : breadcrumb.className, {
|
||||
[`${prefixCls}-rtl`]: direction === 'rtl'
|
||||
}, className, rootClassName, hashId);
|
||||
const mergedStyle = Object.assign(Object.assign({}, breadcrumb === null || breadcrumb === void 0 ? void 0 : breadcrumb.style), style);
|
||||
return wrapSSR( /*#__PURE__*/_react_17_0_2_react.createElement("nav", Object.assign({
|
||||
className: breadcrumbClassName,
|
||||
style: mergedStyle
|
||||
}, restProps), /*#__PURE__*/_react_17_0_2_react.createElement("ol", null, crumbs)));
|
||||
};
|
||||
Breadcrumb.Item = breadcrumb_BreadcrumbItem;
|
||||
Breadcrumb.Separator = breadcrumb_BreadcrumbSeparator;
|
||||
if (false) {}
|
||||
/* harmony default export */ var breadcrumb_Breadcrumb = (Breadcrumb);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/index.js
|
||||
"use client";
|
||||
|
||||
|
||||
/* harmony default export */ var breadcrumb = (breadcrumb_Breadcrumb);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 10777:
|
||||
/*!************************************************************************!*\
|
||||
!*** ./node_modules/_antd@5.9.0@antd/es/timeline/index.js + 5 modules ***!
|
||||
\************************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
Z: function() { return /* binding */ timeline; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/_classnames@2.5.1@classnames/index.js
|
||||
var _classnames_2_5_1_classnames = __webpack_require__(92310);
|
||||
var _classnames_2_5_1_classnames_default = /*#__PURE__*/__webpack_require__.n(_classnames_2_5_1_classnames);
|
||||
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
||||
var _react_17_0_2_react = __webpack_require__(59301);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/config-provider/context.js
|
||||
var context = __webpack_require__(36355);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/timeline/TimelineItem.js
|
||||
"use client";
|
||||
|
||||
var __rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
const TimelineItem = _a => {
|
||||
var {
|
||||
prefixCls: customizePrefixCls,
|
||||
className,
|
||||
color = 'blue',
|
||||
dot,
|
||||
pending = false,
|
||||
position /** Dead, but do not pass in <li {...omit()} */,
|
||||
label,
|
||||
children
|
||||
} = _a,
|
||||
restProps = __rest(_a, ["prefixCls", "className", "color", "dot", "pending", "position", "label", "children"]);
|
||||
const {
|
||||
getPrefixCls
|
||||
} = _react_17_0_2_react.useContext(context/* ConfigContext */.E_);
|
||||
const prefixCls = getPrefixCls('timeline', customizePrefixCls);
|
||||
const itemClassName = _classnames_2_5_1_classnames_default()(`${prefixCls}-item`, {
|
||||
[`${prefixCls}-item-pending`]: pending
|
||||
}, className);
|
||||
const customColor = /blue|red|green|gray/.test(color || '') ? undefined : color;
|
||||
const dotClassName = _classnames_2_5_1_classnames_default()(`${prefixCls}-item-head`, {
|
||||
[`${prefixCls}-item-head-custom`]: !!dot,
|
||||
[`${prefixCls}-item-head-${color}`]: !customColor
|
||||
});
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement("li", Object.assign({}, restProps, {
|
||||
className: itemClassName
|
||||
}), label && /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
||||
className: `${prefixCls}-item-label`
|
||||
}, label), /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
||||
className: `${prefixCls}-item-tail`
|
||||
}), /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
||||
className: dotClassName,
|
||||
style: {
|
||||
borderColor: customColor,
|
||||
color: customColor
|
||||
}
|
||||
}, dot), /*#__PURE__*/_react_17_0_2_react.createElement("div", {
|
||||
className: `${prefixCls}-item-content`
|
||||
}, children));
|
||||
};
|
||||
/* harmony default export */ var timeline_TimelineItem = (TimelineItem);
|
||||
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.26.7@@babel/runtime/helpers/esm/toConsumableArray.js + 2 modules
|
||||
var toConsumableArray = __webpack_require__(65093);
|
||||
// EXTERNAL MODULE: ./node_modules/_@ant-design_icons@5.6.0@@ant-design/icons/es/icons/LoadingOutlined.js + 1 modules
|
||||
var LoadingOutlined = __webpack_require__(78714);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/timeline/TimelineItemList.js
|
||||
"use client";
|
||||
|
||||
|
||||
var TimelineItemList_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
const TimelineItemList = _a => {
|
||||
var {
|
||||
prefixCls,
|
||||
className,
|
||||
pending = false,
|
||||
children,
|
||||
items,
|
||||
rootClassName,
|
||||
reverse = false,
|
||||
direction,
|
||||
hashId,
|
||||
pendingDot,
|
||||
mode = ''
|
||||
} = _a,
|
||||
restProps = TimelineItemList_rest(_a, ["prefixCls", "className", "pending", "children", "items", "rootClassName", "reverse", "direction", "hashId", "pendingDot", "mode"]);
|
||||
const getPositionCls = (position, idx) => {
|
||||
if (mode === 'alternate') {
|
||||
if (position === 'right') return `${prefixCls}-item-right`;
|
||||
if (position === 'left') return `${prefixCls}-item-left`;
|
||||
return idx % 2 === 0 ? `${prefixCls}-item-left` : `${prefixCls}-item-right`;
|
||||
}
|
||||
if (mode === 'left') return `${prefixCls}-item-left`;
|
||||
if (mode === 'right') return `${prefixCls}-item-right`;
|
||||
if (position === 'right') return `${prefixCls}-item-right`;
|
||||
return '';
|
||||
};
|
||||
const mergedItems = (0,toConsumableArray/* default */.Z)(items || []);
|
||||
const pendingNode = typeof pending === 'boolean' ? null : pending;
|
||||
if (pending) {
|
||||
mergedItems.push({
|
||||
pending: !!pending,
|
||||
dot: pendingDot || /*#__PURE__*/_react_17_0_2_react.createElement(LoadingOutlined/* default */.Z, null),
|
||||
children: pendingNode
|
||||
});
|
||||
}
|
||||
if (reverse) {
|
||||
mergedItems.reverse();
|
||||
}
|
||||
const itemsCount = mergedItems.length;
|
||||
const lastCls = `${prefixCls}-item-last`;
|
||||
const itemsList = mergedItems.filter(item => !!item).map((item, idx) => {
|
||||
var _a;
|
||||
const pendingClass = idx === itemsCount - 2 ? lastCls : '';
|
||||
const readyClass = idx === itemsCount - 1 ? lastCls : '';
|
||||
const {
|
||||
className: itemClassName
|
||||
} = item,
|
||||
itemProps = TimelineItemList_rest(item, ["className"]);
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement(timeline_TimelineItem, Object.assign({}, itemProps, {
|
||||
className: _classnames_2_5_1_classnames_default()([itemClassName, !reverse && !!pending ? pendingClass : readyClass, getPositionCls((_a = item === null || item === void 0 ? void 0 : item.position) !== null && _a !== void 0 ? _a : '', idx)]),
|
||||
/* eslint-disable-next-line react/no-array-index-key */
|
||||
key: (item === null || item === void 0 ? void 0 : item.key) || idx
|
||||
}));
|
||||
});
|
||||
const hasLabelItem = mergedItems.some(item => !!(item === null || item === void 0 ? void 0 : item.label));
|
||||
const classString = _classnames_2_5_1_classnames_default()(prefixCls, {
|
||||
[`${prefixCls}-pending`]: !!pending,
|
||||
[`${prefixCls}-reverse`]: !!reverse,
|
||||
[`${prefixCls}-${mode}`]: !!mode && !hasLabelItem,
|
||||
[`${prefixCls}-label`]: hasLabelItem,
|
||||
[`${prefixCls}-rtl`]: direction === 'rtl'
|
||||
}, className, rootClassName, hashId);
|
||||
return /*#__PURE__*/_react_17_0_2_react.createElement("ul", Object.assign({}, restProps, {
|
||||
className: classString
|
||||
}), itemsList);
|
||||
};
|
||||
/* harmony default export */ var timeline_TimelineItemList = (TimelineItemList);
|
||||
// EXTERNAL MODULE: ./node_modules/_rc-util@5.44.3@rc-util/es/Children/toArray.js
|
||||
var toArray = __webpack_require__(38298);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/timeline/useItems.js
|
||||
"use client";
|
||||
|
||||
|
||||
function useItems(items, children) {
|
||||
if (items && Array.isArray(items)) return items;
|
||||
return (0,toArray/* default */.Z)(children).map(ele => {
|
||||
var _a, _b;
|
||||
return Object.assign({
|
||||
children: (_b = (_a = ele === null || ele === void 0 ? void 0 : ele.props) === null || _a === void 0 ? void 0 : _a.children) !== null && _b !== void 0 ? _b : ''
|
||||
}, ele.props);
|
||||
});
|
||||
}
|
||||
/* harmony default export */ var timeline_useItems = (useItems);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/style/index.js
|
||||
var style = __webpack_require__(17313);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/genComponentStyleHook.js
|
||||
var genComponentStyleHook = __webpack_require__(83116);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/theme/util/statistic.js
|
||||
var statistic = __webpack_require__(37613);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/timeline/style/index.js
|
||||
|
||||
|
||||
const genTimelineStyle = token => {
|
||||
const {
|
||||
componentCls
|
||||
} = token;
|
||||
return {
|
||||
[componentCls]: Object.assign(Object.assign({}, (0,style/* resetComponent */.Wf)(token)), {
|
||||
margin: 0,
|
||||
padding: 0,
|
||||
listStyle: 'none',
|
||||
[`${componentCls}-item`]: {
|
||||
position: 'relative',
|
||||
margin: 0,
|
||||
paddingBottom: token.itemPaddingBottom,
|
||||
fontSize: token.fontSize,
|
||||
listStyle: 'none',
|
||||
'&-tail': {
|
||||
position: 'absolute',
|
||||
insetBlockStart: token.itemHeadSize,
|
||||
insetInlineStart: (token.itemHeadSize - token.tailWidth) / 2,
|
||||
height: `calc(100% - ${token.itemHeadSize}px)`,
|
||||
borderInlineStart: `${token.tailWidth}px ${token.lineType} ${token.tailColor}`
|
||||
},
|
||||
'&-pending': {
|
||||
[`${componentCls}-item-head`]: {
|
||||
fontSize: token.fontSizeSM,
|
||||
backgroundColor: 'transparent'
|
||||
},
|
||||
[`${componentCls}-item-tail`]: {
|
||||
display: 'none'
|
||||
}
|
||||
},
|
||||
'&-head': {
|
||||
position: 'absolute',
|
||||
width: token.itemHeadSize,
|
||||
height: token.itemHeadSize,
|
||||
backgroundColor: token.dotBg,
|
||||
border: `${token.dotBorderWidth}px ${token.lineType} transparent`,
|
||||
borderRadius: '50%',
|
||||
'&-blue': {
|
||||
color: token.colorPrimary,
|
||||
borderColor: token.colorPrimary
|
||||
},
|
||||
'&-red': {
|
||||
color: token.colorError,
|
||||
borderColor: token.colorError
|
||||
},
|
||||
'&-green': {
|
||||
color: token.colorSuccess,
|
||||
borderColor: token.colorSuccess
|
||||
},
|
||||
'&-gray': {
|
||||
color: token.colorTextDisabled,
|
||||
borderColor: token.colorTextDisabled
|
||||
}
|
||||
},
|
||||
'&-head-custom': {
|
||||
position: 'absolute',
|
||||
insetBlockStart: token.itemHeadSize / 2,
|
||||
insetInlineStart: token.itemHeadSize / 2,
|
||||
width: 'auto',
|
||||
height: 'auto',
|
||||
marginBlockStart: 0,
|
||||
paddingBlock: token.customHeadPaddingVertical,
|
||||
lineHeight: 1,
|
||||
textAlign: 'center',
|
||||
border: 0,
|
||||
borderRadius: 0,
|
||||
transform: `translate(-50%, -50%)`
|
||||
},
|
||||
'&-content': {
|
||||
position: 'relative',
|
||||
insetBlockStart: -(token.fontSize * token.lineHeight - token.fontSize) + token.lineWidth,
|
||||
marginInlineStart: token.margin + token.itemHeadSize,
|
||||
marginInlineEnd: 0,
|
||||
marginBlockStart: 0,
|
||||
marginBlockEnd: 0,
|
||||
wordBreak: 'break-word'
|
||||
},
|
||||
'&-last': {
|
||||
[`> ${componentCls}-item-tail`]: {
|
||||
display: 'none'
|
||||
},
|
||||
[`> ${componentCls}-item-content`]: {
|
||||
minHeight: token.controlHeightLG * 1.2
|
||||
}
|
||||
}
|
||||
},
|
||||
[`&${componentCls}-alternate,
|
||||
&${componentCls}-right,
|
||||
&${componentCls}-label`]: {
|
||||
[`${componentCls}-item`]: {
|
||||
'&-tail, &-head, &-head-custom': {
|
||||
insetInlineStart: '50%'
|
||||
},
|
||||
'&-head': {
|
||||
marginInlineStart: `-${token.marginXXS}px`,
|
||||
'&-custom': {
|
||||
marginInlineStart: token.tailWidth / 2
|
||||
}
|
||||
},
|
||||
'&-left': {
|
||||
[`${componentCls}-item-content`]: {
|
||||
insetInlineStart: `calc(50% - ${token.marginXXS}px)`,
|
||||
width: `calc(50% - ${token.marginSM}px)`,
|
||||
textAlign: 'start'
|
||||
}
|
||||
},
|
||||
'&-right': {
|
||||
[`${componentCls}-item-content`]: {
|
||||
width: `calc(50% - ${token.marginSM}px)`,
|
||||
margin: 0,
|
||||
textAlign: 'end'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
[`&${componentCls}-right`]: {
|
||||
[`${componentCls}-item-right`]: {
|
||||
[`${componentCls}-item-tail,
|
||||
${componentCls}-item-head,
|
||||
${componentCls}-item-head-custom`]: {
|
||||
insetInlineStart: `calc(100% - ${(token.itemHeadSize + token.tailWidth) / 2}px)`
|
||||
},
|
||||
[`${componentCls}-item-content`]: {
|
||||
width: `calc(100% - ${token.itemHeadSize + token.marginXS}px)`
|
||||
}
|
||||
}
|
||||
},
|
||||
[`&${componentCls}-pending
|
||||
${componentCls}-item-last
|
||||
${componentCls}-item-tail`]: {
|
||||
display: 'block',
|
||||
height: `calc(100% - ${token.margin}px)`,
|
||||
borderInlineStart: `${token.tailWidth}px dotted ${token.tailColor}`
|
||||
},
|
||||
[`&${componentCls}-reverse
|
||||
${componentCls}-item-last
|
||||
${componentCls}-item-tail`]: {
|
||||
display: 'none'
|
||||
},
|
||||
[`&${componentCls}-reverse ${componentCls}-item-pending`]: {
|
||||
[`${componentCls}-item-tail`]: {
|
||||
insetBlockStart: token.margin,
|
||||
display: 'block',
|
||||
height: `calc(100% - ${token.margin}px)`,
|
||||
borderInlineStart: `${token.tailWidth}px dotted ${token.tailColor}`
|
||||
},
|
||||
[`${componentCls}-item-content`]: {
|
||||
minHeight: token.controlHeightLG * 1.2
|
||||
}
|
||||
},
|
||||
[`&${componentCls}-label`]: {
|
||||
[`${componentCls}-item-label`]: {
|
||||
position: 'absolute',
|
||||
insetBlockStart: -(token.fontSize * token.lineHeight - token.fontSize) + token.tailWidth,
|
||||
width: `calc(50% - ${token.marginSM}px)`,
|
||||
textAlign: 'end'
|
||||
},
|
||||
[`${componentCls}-item-right`]: {
|
||||
[`${componentCls}-item-label`]: {
|
||||
insetInlineStart: `calc(50% + ${token.marginSM}px)`,
|
||||
width: `calc(50% - ${token.marginSM}px)`,
|
||||
textAlign: 'start'
|
||||
}
|
||||
}
|
||||
},
|
||||
// ====================== RTL =======================
|
||||
'&-rtl': {
|
||||
direction: 'rtl',
|
||||
[`${componentCls}-item-head-custom`]: {
|
||||
transform: `translate(50%, -50%)`
|
||||
}
|
||||
}
|
||||
})
|
||||
};
|
||||
};
|
||||
// ============================== Export ==============================
|
||||
/* harmony default export */ var timeline_style = ((0,genComponentStyleHook/* default */.Z)('Timeline', token => {
|
||||
const timeLineToken = (0,statistic/* merge */.TS)(token, {
|
||||
itemHeadSize: 10,
|
||||
customHeadPaddingVertical: token.paddingXXS,
|
||||
paddingInlineEnd: 2
|
||||
});
|
||||
return [genTimelineStyle(timeLineToken)];
|
||||
}, token => ({
|
||||
tailColor: token.colorSplit,
|
||||
tailWidth: token.lineWidthBold,
|
||||
dotBorderWidth: token.wireframe ? token.lineWidthBold : token.lineWidth * 3,
|
||||
dotBg: token.colorBgContainer,
|
||||
itemPaddingBottom: token.padding * 1.25
|
||||
})));
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/timeline/Timeline.js
|
||||
"use client";
|
||||
|
||||
var Timeline_rest = undefined && undefined.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// CSSINJS
|
||||
|
||||
const Timeline = props => {
|
||||
const {
|
||||
getPrefixCls,
|
||||
direction,
|
||||
timeline
|
||||
} = _react_17_0_2_react.useContext(context/* ConfigContext */.E_);
|
||||
const {
|
||||
prefixCls: customizePrefixCls,
|
||||
children,
|
||||
items,
|
||||
className,
|
||||
style
|
||||
} = props,
|
||||
restProps = Timeline_rest(props, ["prefixCls", "children", "items", "className", "style"]);
|
||||
const prefixCls = getPrefixCls('timeline', customizePrefixCls);
|
||||
// =================== Warning =====================
|
||||
if (false) {}
|
||||
// Style
|
||||
const [wrapSSR, hashId] = timeline_style(prefixCls);
|
||||
const mergedItems = timeline_useItems(items, children);
|
||||
return wrapSSR( /*#__PURE__*/_react_17_0_2_react.createElement(timeline_TimelineItemList, Object.assign({}, restProps, {
|
||||
className: _classnames_2_5_1_classnames_default()(timeline === null || timeline === void 0 ? void 0 : timeline.className, className),
|
||||
style: Object.assign(Object.assign({}, timeline === null || timeline === void 0 ? void 0 : timeline.style), style),
|
||||
prefixCls: prefixCls,
|
||||
direction: direction,
|
||||
items: mergedItems,
|
||||
hashId: hashId
|
||||
})));
|
||||
};
|
||||
Timeline.Item = timeline_TimelineItem;
|
||||
if (false) {}
|
||||
/* harmony default export */ var timeline_Timeline = (Timeline);
|
||||
;// CONCATENATED MODULE: ./node_modules/_antd@5.9.0@antd/es/timeline/index.js
|
||||
"use client";
|
||||
|
||||
|
||||
/* harmony default export */ var timeline = (timeline_Timeline);
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
@ -0,0 +1,837 @@
|
||||
"use strict";
|
||||
(self["webpackChunk"] = self["webpackChunk"] || []).push([[39859],{
|
||||
|
||||
/***/ 39741:
|
||||
/*!***********************************************************************!*\
|
||||
!*** ./src/pages/Materials/ItemAssets/InfoCode/index.tsx + 1 modules ***!
|
||||
\***********************************************************************/
|
||||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
// ESM COMPAT FLAG
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// EXPORTS
|
||||
__webpack_require__.d(__webpack_exports__, {
|
||||
"default": function() { return /* binding */ InfoCode; }
|
||||
});
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/objectSpread2.js
|
||||
var objectSpread2 = __webpack_require__(82242);
|
||||
var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
|
||||
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/regeneratorRuntime.js
|
||||
var regeneratorRuntime = __webpack_require__(7557);
|
||||
var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
|
||||
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/asyncToGenerator.js
|
||||
var asyncToGenerator = __webpack_require__(41498);
|
||||
var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
|
||||
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/slicedToArray.js
|
||||
var slicedToArray = __webpack_require__(79800);
|
||||
var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
|
||||
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
||||
var _react_17_0_2_react = __webpack_require__(59301);
|
||||
// EXTERNAL MODULE: ./src/.umi-production/exports.ts
|
||||
var _umi_production_exports = __webpack_require__(88271);
|
||||
;// CONCATENATED MODULE: ./src/pages/Materials/ItemAssets/InfoCode/index.less?modules
|
||||
// extracted by mini-css-extract-plugin
|
||||
/* harmony default export */ var InfoCodemodules = ({"wrap":"wrap___z4HXQ","back_style":"back_style___d0i6N","headerWrp":"headerWrp____Qkdt","header":"header___JHqrw","header_img":"header_img___NTrvE","header_params":"header_params___riVNv","header_title":"header_title___t2Wyy","header_content_wrp":"header_content_wrp___dIQwB","header_content":"header_content___Qyx_E","file_list":"file_list___UVIbe","file_list_title":"file_list_title___n952B","file_list_size":"file_list_size___T7S4U","search_params":"search_params___iUmay","search_params_left":"search_params_left___On7ph","search_params_right":"search_params_right___xLKj1","search":"search___XiPxs","searchIcon":"searchIcon___DpPF0","formWrap":"formWrap___M6vbm","shangchuan_button":"shangchuan_button___LgAG9","breadcrumb":"breadcrumb___uogFN"});
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/form/index.js + 19 modules
|
||||
var es_form = __webpack_require__(78241);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/tooltip/index.js + 3 modules
|
||||
var tooltip = __webpack_require__(6848);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/breadcrumb/index.js + 6 modules
|
||||
var breadcrumb = __webpack_require__(66104);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/select/index.js
|
||||
var es_select = __webpack_require__(57809);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/input/index.js + 3 modules
|
||||
var input = __webpack_require__(92832);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/table/index.js + 85 modules
|
||||
var table = __webpack_require__(36546);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/pagination/index.js + 10 modules
|
||||
var pagination = __webpack_require__(19871);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/modal/index.js + 16 modules
|
||||
var modal = __webpack_require__(43418);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/message/index.js + 4 modules
|
||||
var message = __webpack_require__(8591);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/date-picker/index.js + 66 modules
|
||||
var date_picker = __webpack_require__(251);
|
||||
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/timeline/index.js + 5 modules
|
||||
var timeline = __webpack_require__(10777);
|
||||
// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
|
||||
var env = __webpack_require__(69423);
|
||||
// EXTERNAL MODULE: ./src/components/PreviewAll/index.tsx + 3 modules
|
||||
var PreviewAll = __webpack_require__(97672);
|
||||
// EXTERNAL MODULE: ./src/service/materials.ts
|
||||
var materials = __webpack_require__(80231);
|
||||
// EXTERNAL MODULE: ./src/assets/images/roomInitImgMaterials.png
|
||||
var roomInitImgMaterials = __webpack_require__(3416);
|
||||
// EXTERNAL MODULE: ./node_modules/_dayjs@1.11.13@dayjs/dayjs.min.js
|
||||
var dayjs_min = __webpack_require__(61186);
|
||||
var dayjs_min_default = /*#__PURE__*/__webpack_require__.n(dayjs_min);
|
||||
// EXTERNAL MODULE: ./src/components/NoData/index.tsx
|
||||
var NoData = __webpack_require__(63017);
|
||||
// EXTERNAL MODULE: ./node_modules/_@ant-design_icons@5.6.0@@ant-design/icons/es/icons/LeftCircleFilled.js + 1 modules
|
||||
var LeftCircleFilled = __webpack_require__(56580);
|
||||
// EXTERNAL MODULE: ./node_modules/_react-jsbarcode@1.0.1@react-jsbarcode/lib/index.mjs
|
||||
var lib = __webpack_require__(64727);
|
||||
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/jsx-runtime.js
|
||||
var jsx_runtime = __webpack_require__(37712);
|
||||
;// CONCATENATED MODULE: ./src/pages/Materials/ItemAssets/InfoCode/index.tsx
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var unitType = {
|
||||
1: '个',
|
||||
2: '套',
|
||||
3: '袋',
|
||||
4: '条',
|
||||
5: '根',
|
||||
6: '升',
|
||||
7: '毫升'
|
||||
};
|
||||
var Navigation = function Navigation(_ref) {
|
||||
var loading = _ref.loading,
|
||||
user = _ref.user,
|
||||
dispatch = _ref.dispatch,
|
||||
account = _ref.account;
|
||||
var params = (0,_umi_production_exports.useParams)();
|
||||
var _useState = (0,_react_17_0_2_react.useState)({}),
|
||||
_useState2 = slicedToArray_default()(_useState, 2),
|
||||
itemAsssInfo = _useState2[0],
|
||||
setItemAsssInfo = _useState2[1];
|
||||
var _useState3 = (0,_react_17_0_2_react.useState)({
|
||||
content: "",
|
||||
type: ""
|
||||
}),
|
||||
_useState4 = slicedToArray_default()(_useState3, 2),
|
||||
data = _useState4[0],
|
||||
setData = _useState4[1];
|
||||
var _useSearchParams = (0,_umi_production_exports.useSearchParams)(),
|
||||
_useSearchParams2 = slicedToArray_default()(_useSearchParams, 1),
|
||||
searchParams = _useSearchParams2[0];
|
||||
var _useState5 = (0,_react_17_0_2_react.useState)(),
|
||||
_useState6 = slicedToArray_default()(_useState5, 2),
|
||||
keyword = _useState6[0],
|
||||
setkeyword = _useState6[1];
|
||||
//物资弹窗
|
||||
var _useState7 = (0,_react_17_0_2_react.useState)(''),
|
||||
_useState8 = slicedToArray_default()(_useState7, 2),
|
||||
boxId = _useState8[0],
|
||||
setBoxId = _useState8[1];
|
||||
var _useState9 = (0,_react_17_0_2_react.useState)(false),
|
||||
_useState10 = slicedToArray_default()(_useState9, 2),
|
||||
openBox = _useState10[0],
|
||||
setOpenBox = _useState10[1];
|
||||
var _Form$useForm = es_form/* default */.Z.useForm(),
|
||||
_Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
|
||||
myForm = _Form$useForm2[0];
|
||||
//状态
|
||||
var _useState11 = (0,_react_17_0_2_react.useState)(''),
|
||||
_useState12 = slicedToArray_default()(_useState11, 2),
|
||||
status = _useState12[0],
|
||||
setStatus = _useState12[1];
|
||||
//分页
|
||||
var _useState13 = (0,_react_17_0_2_react.useState)(0),
|
||||
_useState14 = slicedToArray_default()(_useState13, 2),
|
||||
total = _useState14[0],
|
||||
setTotal = _useState14[1];
|
||||
var _useState15 = (0,_react_17_0_2_react.useState)(1),
|
||||
_useState16 = slicedToArray_default()(_useState15, 2),
|
||||
page = _useState16[0],
|
||||
setPage = _useState16[1];
|
||||
var _useState17 = (0,_react_17_0_2_react.useState)(10),
|
||||
_useState18 = slicedToArray_default()(_useState17, 2),
|
||||
limit = _useState18[0],
|
||||
setLimit = _useState18[1];
|
||||
var _useState19 = (0,_react_17_0_2_react.useState)([]),
|
||||
_useState20 = slicedToArray_default()(_useState19, 2),
|
||||
tableData = _useState20[0],
|
||||
setTableData = _useState20[1];
|
||||
//使用轨迹
|
||||
var _useState21 = (0,_react_17_0_2_react.useState)(false),
|
||||
_useState22 = slicedToArray_default()(_useState21, 2),
|
||||
openHistory = _useState22[0],
|
||||
setOpenHistory = _useState22[1];
|
||||
var _useState23 = (0,_react_17_0_2_react.useState)(''),
|
||||
_useState24 = slicedToArray_default()(_useState23, 2),
|
||||
startTime = _useState24[0],
|
||||
setStartTime = _useState24[1];
|
||||
var _useState25 = (0,_react_17_0_2_react.useState)(''),
|
||||
_useState26 = slicedToArray_default()(_useState25, 2),
|
||||
endTime = _useState26[0],
|
||||
setEndTime = _useState26[1];
|
||||
var _useState27 = (0,_react_17_0_2_react.useState)([]),
|
||||
_useState28 = slicedToArray_default()(_useState27, 2),
|
||||
historyData = _useState28[0],
|
||||
setHistoryData = _useState28[1];
|
||||
var _useState29 = (0,_react_17_0_2_react.useState)(false),
|
||||
_useState30 = slicedToArray_default()(_useState29, 2),
|
||||
confirmLoading = _useState30[0],
|
||||
setConfirmLoading = _useState30[1];
|
||||
var _useState31 = (0,_react_17_0_2_react.useState)(false),
|
||||
_useState32 = slicedToArray_default()(_useState31, 2),
|
||||
tableLoading = _useState32[0],
|
||||
setTableLoading = _useState32[1];
|
||||
var statusType = {
|
||||
'not_exported': '未导出',
|
||||
'exported': '已导出',
|
||||
'stored': '已入库'
|
||||
};
|
||||
|
||||
//资产表格
|
||||
var columns = [{
|
||||
title: '物资编号',
|
||||
dataIndex: 'number',
|
||||
ellipsis: true,
|
||||
render: function render(text) {
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
placement: "bottomLeft",
|
||||
title: text,
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: text || '--'
|
||||
})
|
||||
});
|
||||
}
|
||||
}, {
|
||||
title: '物资名称',
|
||||
dataIndex: 'title',
|
||||
ellipsis: true,
|
||||
render: function render(text) {
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
placement: "bottomLeft",
|
||||
title: text,
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: text || '--'
|
||||
})
|
||||
});
|
||||
}
|
||||
}, {
|
||||
title: '条形码状态',
|
||||
dataIndex: 'status',
|
||||
ellipsis: true,
|
||||
render: function render(text) {
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
placement: "bottomLeft",
|
||||
title: '已导出',
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)(jsx_runtime.Fragment, {
|
||||
children: statusType[text]
|
||||
})
|
||||
});
|
||||
}
|
||||
}, {
|
||||
title: '规格',
|
||||
dataIndex: 'model',
|
||||
ellipsis: true,
|
||||
render: function render(text) {
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
placement: "bottomLeft",
|
||||
title: text,
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: text || '--'
|
||||
})
|
||||
});
|
||||
}
|
||||
}, {
|
||||
title: '单位',
|
||||
dataIndex: 'unit',
|
||||
ellipsis: true,
|
||||
render: function render(text) {
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
placement: "bottomLeft",
|
||||
title: text,
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: text || '--'
|
||||
})
|
||||
});
|
||||
}
|
||||
}, {
|
||||
title: '条形码',
|
||||
dataIndex: 'number',
|
||||
width: 160,
|
||||
render: function render(text) {
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsx)(lib/* ReactBarcode */.e, {
|
||||
value: text,
|
||||
className: "barcode"
|
||||
});
|
||||
}
|
||||
}, {
|
||||
title: '操作',
|
||||
ellipsis: true,
|
||||
width: 120,
|
||||
render: function render(text, record) {
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsx)(jsx_runtime.Fragment, {
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
|
||||
style: {
|
||||
color: "#165DFF",
|
||||
cursor: "pointer",
|
||||
marginLeft: "10px"
|
||||
},
|
||||
href: "".concat(env/* default */.Z.API_SERVER, "/api/yn_classrooms/substance_details/").concat(record === null || record === void 0 ? void 0 : record.id, "/download.json"),
|
||||
download: true,
|
||||
onClick: function onClick() {
|
||||
setTimeout(function () {
|
||||
getData(false);
|
||||
}, 500);
|
||||
},
|
||||
children: "\u5BFC\u51FA\u6761\u5F62\u7801"
|
||||
})
|
||||
});
|
||||
}
|
||||
}].filter(function (item) {
|
||||
return !!item;
|
||||
});
|
||||
//正则校验
|
||||
var validateInput = function validateInput(rule, value, callback) {
|
||||
var pattern = /^[0-9a-zA-Z]+$/;
|
||||
if (!pattern.test(value)) {
|
||||
callback('请输入数字和字母');
|
||||
} else {
|
||||
callback();
|
||||
}
|
||||
};
|
||||
(0,_react_17_0_2_react.useEffect)(function () {
|
||||
getInfo();
|
||||
}, []);
|
||||
(0,_react_17_0_2_react.useEffect)(function () {
|
||||
getData(false);
|
||||
}, [page]);
|
||||
(0,_react_17_0_2_react.useEffect)(function () {
|
||||
getData(true);
|
||||
}, [keyword, limit, status]);
|
||||
(0,_react_17_0_2_react.useEffect)(function () {
|
||||
if (openHistory) {
|
||||
(0,materials/* tracks_info */.ER)({
|
||||
id: boxId,
|
||||
start_time: startTime ? dayjs_min_default()(startTime === null || startTime === void 0 ? void 0 : startTime.$d).format('YYYY-MM-DD') : '',
|
||||
end_time: endTime ? dayjs_min_default()(endTime === null || endTime === void 0 ? void 0 : endTime.$d).format('YYYY-MM-DD') : ''
|
||||
}).then(function (res) {
|
||||
if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
|
||||
var _res$data;
|
||||
setHistoryData(res === null || res === void 0 || (_res$data = res.data) === null || _res$data === void 0 ? void 0 : _res$data.list);
|
||||
}
|
||||
});
|
||||
}
|
||||
}, [startTime, endTime]);
|
||||
var onShowSizeChange = function onShowSizeChange(page, size) {
|
||||
setPage(page);
|
||||
setLimit(size);
|
||||
};
|
||||
var getData = /*#__PURE__*/function () {
|
||||
var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(flag) {
|
||||
return regeneratorRuntime_default()().wrap(function _callee$(_context) {
|
||||
while (1) switch (_context.prev = _context.next) {
|
||||
case 0:
|
||||
if (flag) {
|
||||
setPage(1);
|
||||
}
|
||||
setTableLoading(true);
|
||||
_context.next = 4;
|
||||
return (0,materials/* substance_details_query */.cO)({
|
||||
page: page,
|
||||
limit: limit,
|
||||
keyword: keyword,
|
||||
scrapped: 0,
|
||||
status: status,
|
||||
substance_id: params === null || params === void 0 ? void 0 : params.itemAssetsId
|
||||
}).then(function (res) {
|
||||
var _res$data2, _res$data3;
|
||||
setTableData(res === null || res === void 0 || (_res$data2 = res.data) === null || _res$data2 === void 0 ? void 0 : _res$data2.list);
|
||||
setTotal(res === null || res === void 0 || (_res$data3 = res.data) === null || _res$data3 === void 0 ? void 0 : _res$data3.count);
|
||||
});
|
||||
case 4:
|
||||
setTableLoading(false);
|
||||
case 5:
|
||||
case "end":
|
||||
return _context.stop();
|
||||
}
|
||||
}, _callee);
|
||||
}));
|
||||
return function getData(_x) {
|
||||
return _ref2.apply(this, arguments);
|
||||
};
|
||||
}();
|
||||
var getInfo = function getInfo() {
|
||||
(0,materials/* substances_info */.os)({
|
||||
id: params === null || params === void 0 ? void 0 : params.itemAssetsId
|
||||
}).then(function (res) {
|
||||
setItemAsssInfo(res === null || res === void 0 ? void 0 : res.data);
|
||||
});
|
||||
};
|
||||
return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.wrap,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
className: "mb20",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)(breadcrumb/* default */.Z, {
|
||||
className: InfoCodemodules.breadcrumb,
|
||||
items: [{
|
||||
href: '',
|
||||
title: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
|
||||
onClick: function onClick() {
|
||||
_umi_production_exports.history.push("".concat(searchParams.get('backUrl')));
|
||||
},
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(LeftCircleFilled/* default */.Z, {
|
||||
className: "mr5",
|
||||
style: {
|
||||
fontSize: 12
|
||||
}
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: "\u7269\u8D44\u7BA1\u7406"
|
||||
})]
|
||||
})
|
||||
}, {
|
||||
title: '打印条形码'
|
||||
}]
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
style: {
|
||||
display: "flex"
|
||||
},
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
|
||||
className: InfoCodemodules.header_img,
|
||||
src: itemAsssInfo !== null && itemAsssInfo !== void 0 && itemAsssInfo.image ? env/* default */.Z.API_SERVER + '/' + (itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.image) : roomInitImgMaterials
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_params,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
className: InfoCodemodules.header_title,
|
||||
children: itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.title
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_content_wrp,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_content,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
title: itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.number,
|
||||
placement: "topLeft",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: (itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.number) || "--"
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: "\u7269\u8D44\u7F16\u53F7"
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_content,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
title: itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.model,
|
||||
placement: "topLeft",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: (itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.model) || "--"
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: "\u578B\u53F7\u89C4\u683C"
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_content,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
title: itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.classroom_room_title,
|
||||
placement: "topLeft",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: (itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.classroom_room_title) || "--"
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: "\u6240\u5728\u5B9E\u9A8C\u5BA4\u5206\u5BA4"
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_content,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
title: itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.classroom_room_title,
|
||||
placement: "topLeft",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: (itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.classroom_room_title) || "--"
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: "\u4F7F\u7528\u6708\u6570"
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_content,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
title: "".concat(itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.price, "\u5143"),
|
||||
placement: "topLeft",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
|
||||
children: [(itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.price) || "--", "\u5143"]
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: "\u5355\u4EF7"
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.header_content,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
||||
title: itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.substance_category_title,
|
||||
placement: "topLeft",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: (itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.substance_category_title) || "--"
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
children: "\u7269\u8D44\u5206\u7C7B"
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
className: "".concat(InfoCodemodules.header_content, " hidden")
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
className: "".concat(InfoCodemodules.header_content, " hidden")
|
||||
})]
|
||||
})]
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.search_params,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.search_params_left,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, {
|
||||
colon: false,
|
||||
label: "\u72B6\u6001",
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select["default"], {
|
||||
style: {
|
||||
width: 160
|
||||
},
|
||||
defaultValue: status,
|
||||
value: status,
|
||||
onChange: function onChange(e) {
|
||||
setStatus(e);
|
||||
},
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
||||
value: '',
|
||||
children: "\u5168\u90E8"
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
||||
value: 2,
|
||||
children: "\u5DF2\u5BFC\u51FA"
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
||||
value: 1,
|
||||
children: "\u672A\u5BFC\u51FA"
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
||||
value: 3,
|
||||
children: "\u5DF2\u5165\u5E93"
|
||||
})]
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z.Search, {
|
||||
placeholder: "\u8BF7\u641C\u7D22\u8D44\u4EA7\u7F16\u53F7",
|
||||
size: "large",
|
||||
className: InfoCodemodules.search,
|
||||
value: keyword,
|
||||
onChange: function onChange(e) {
|
||||
setkeyword(e.target.value);
|
||||
},
|
||||
onSearch: function onSearch(value) {
|
||||
setkeyword(value);
|
||||
},
|
||||
suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
|
||||
className: "iconfont icon-sousuo9 font14 ".concat(InfoCodemodules.searchIcon),
|
||||
onClick: function onClick() {
|
||||
setkeyword(keyword);
|
||||
getData(true);
|
||||
}
|
||||
})
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
className: InfoCodemodules.search_params_right,
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("a", {
|
||||
className: "text-wrapper_4 flex-col",
|
||||
href: "".concat(env/* default */.Z.API_SERVER, "/api/yn_classrooms/substance_details/batch_download.json?substance_id=").concat(itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.id, "&status=").concat(status, "&scrapped=0"),
|
||||
download: true,
|
||||
onClick: function onClick() {
|
||||
setTimeout(function () {
|
||||
getData(false);
|
||||
}, 500);
|
||||
},
|
||||
children: "\u6279\u91CF\u5BFC\u51FA\u6761\u5F62\u7801"
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
className: "text-wrapper_4 flex-col",
|
||||
onClick: function onClick() {
|
||||
setBoxId('');
|
||||
(0,materials/* random_number */.br)({
|
||||
substance_id: itemAsssInfo.id
|
||||
}).then(function (res) {
|
||||
if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
|
||||
var _res$data4;
|
||||
myForm.setFieldsValue({
|
||||
number: res === null || res === void 0 || (_res$data4 = res.data) === null || _res$data4 === void 0 ? void 0 : _res$data4.code,
|
||||
num: 1
|
||||
});
|
||||
setOpenBox(true);
|
||||
}
|
||||
});
|
||||
},
|
||||
children: "\u6DFB\u52A0"
|
||||
})]
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
className: "materials-table-wrp mt20",
|
||||
style: {
|
||||
marginRight: 0
|
||||
},
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
|
||||
loading: tableLoading,
|
||||
pagination: false,
|
||||
dataSource: tableData,
|
||||
columns: columns,
|
||||
className: "materials-table"
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("aside", {
|
||||
children: total > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
style: {
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'space-between',
|
||||
padding: '10px 7px 20px 7px'
|
||||
},
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
|
||||
style: {
|
||||
color: '#656F87'
|
||||
},
|
||||
children: ["\u5171", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
className: "c-light-primary",
|
||||
children: total
|
||||
}), "\u6761\u6570\u636E"]
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, {
|
||||
showSizeChanger: true,
|
||||
showQuickJumper: true,
|
||||
onChange: onShowSizeChange,
|
||||
defaultCurrent: 1,
|
||||
pageSizeOptions: ['10', '20', '50', '100'],
|
||||
current: page || 1,
|
||||
pageSize: limit || 10,
|
||||
defaultPageSize: 10,
|
||||
total: total
|
||||
})]
|
||||
}) : ''
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(PreviewAll/* default */.Z, {
|
||||
close: true,
|
||||
data: data === null || data === void 0 ? void 0 : data.content,
|
||||
type: data === null || data === void 0 ? void 0 : data.type,
|
||||
hasMask: true,
|
||||
monacoEditor: {
|
||||
language: "txt",
|
||||
onChange: function onChange() {},
|
||||
options: {
|
||||
readOnly: true,
|
||||
fontSize: 14,
|
||||
minimap: {
|
||||
enabled: false
|
||||
}
|
||||
}
|
||||
},
|
||||
onClose: function onClose() {
|
||||
setData({
|
||||
content: "",
|
||||
type: ""
|
||||
});
|
||||
}
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
|
||||
maskClosable: false,
|
||||
confirmLoading: confirmLoading,
|
||||
centered: true,
|
||||
keyboard: false,
|
||||
destroyOnClose: true,
|
||||
open: openBox,
|
||||
title: '添加',
|
||||
width: "400px",
|
||||
onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
|
||||
return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
|
||||
while (1) switch (_context2.prev = _context2.next) {
|
||||
case 0:
|
||||
_context2.next = 2;
|
||||
return myForm.validateFields();
|
||||
case 2:
|
||||
setConfirmLoading(true);
|
||||
_context2.next = 5;
|
||||
return (0,materials/* new_substance_create_details */.NP)({
|
||||
substance_detail: {
|
||||
substance_id: itemAsssInfo === null || itemAsssInfo === void 0 ? void 0 : itemAsssInfo.id,
|
||||
num: myForm.getFieldValue('num')
|
||||
}
|
||||
}).then(function (res) {
|
||||
if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
|
||||
message/* default */.ZP.success('新建成功');
|
||||
setOpenBox(false);
|
||||
getData(true);
|
||||
myForm.setFieldValue('image', '');
|
||||
}
|
||||
});
|
||||
case 5:
|
||||
setConfirmLoading(false);
|
||||
case 6:
|
||||
case "end":
|
||||
return _context2.stop();
|
||||
}
|
||||
}, _callee2);
|
||||
})),
|
||||
onCancel: function onCancel() {
|
||||
setOpenBox(false);
|
||||
myForm.resetFields();
|
||||
},
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
|
||||
className: InfoCodemodules.formWrap,
|
||||
form: myForm,
|
||||
wrapperCol: {
|
||||
span: 20
|
||||
},
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, {
|
||||
colon: false,
|
||||
label: "\u6570\u91CF",
|
||||
name: "num",
|
||||
rules: [{
|
||||
required: true,
|
||||
message: '请输入数量'
|
||||
}, {
|
||||
required: false,
|
||||
pattern: /^(0|[1-9]\d*)$/,
|
||||
message: '请输入正数'
|
||||
}, {
|
||||
validator: function validator(_, value) {
|
||||
if (value === undefined || value === null || value === '') {
|
||||
return Promise.resolve();
|
||||
}
|
||||
if (value > 100) {
|
||||
return Promise.reject('数量不能超过100');
|
||||
}
|
||||
return Promise.resolve();
|
||||
}
|
||||
}],
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
|
||||
size: "large",
|
||||
type: "number",
|
||||
max: 100,
|
||||
onChange: function onChange(e) {
|
||||
var _e$target;
|
||||
myForm.setFieldValue('num', e === null || e === void 0 || (_e$target = e.target) === null || _e$target === void 0 || (_e$target = _e$target.value) === null || _e$target === void 0 ? void 0 : _e$target.trim());
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
|
||||
maskClosable: false,
|
||||
centered: true,
|
||||
keyboard: false,
|
||||
destroyOnClose: true,
|
||||
open: openHistory,
|
||||
title: "\u4F7F\u7528\u8F68\u8FF9",
|
||||
width: "600px",
|
||||
footer: null,
|
||||
onCancel: function onCancel() {
|
||||
setOpenHistory(false);
|
||||
},
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
style: {
|
||||
display: "flex"
|
||||
},
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(date_picker["default"], {
|
||||
size: "large",
|
||||
style: {
|
||||
width: '200px'
|
||||
},
|
||||
defaultValue: startTime,
|
||||
value: startTime,
|
||||
onChange: function onChange(e) {
|
||||
if (endTime && e > endTime) {
|
||||
setEndTime('');
|
||||
message/* default */.ZP.error('开始时间必须小于结束时间');
|
||||
} else {
|
||||
setStartTime(e);
|
||||
}
|
||||
}
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
style: {
|
||||
height: '40px',
|
||||
lineHeight: '40px',
|
||||
width: "50px",
|
||||
textAlign: "center"
|
||||
},
|
||||
children: "\u81F3"
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)(date_picker["default"], {
|
||||
size: "large",
|
||||
style: {
|
||||
width: '200px'
|
||||
},
|
||||
defaultValue: endTime,
|
||||
value: endTime,
|
||||
onChange: function onChange(e) {
|
||||
if (startTime && e < startTime) {
|
||||
setEndTime('');
|
||||
message/* default */.ZP.error('开始时间必须小于结束时间');
|
||||
} else {
|
||||
setEndTime(e);
|
||||
}
|
||||
}
|
||||
})]
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
style: {
|
||||
margin: '20px auto',
|
||||
height: '300px',
|
||||
overflowY: 'auto',
|
||||
paddingTop: '10px'
|
||||
},
|
||||
children: (historyData === null || historyData === void 0 ? void 0 : historyData.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsx)(timeline/* default */.Z
|
||||
// historyData
|
||||
, {
|
||||
items: historyData === null || historyData === void 0 ? void 0 : historyData.map(function (item, index) {
|
||||
return {
|
||||
children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
||||
style: {
|
||||
color: '#9096A3'
|
||||
},
|
||||
children: dayjs_min_default()(item === null || item === void 0 ? void 0 : item.created_at).format('YYYY-MM_DD HH:mm:ss')
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
||||
style: {
|
||||
marginTop: '6px'
|
||||
},
|
||||
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
style: {
|
||||
color: '#000000'
|
||||
},
|
||||
children: item === null || item === void 0 ? void 0 : item.user_name
|
||||
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
||||
style: {
|
||||
color: '#5F6367',
|
||||
marginLeft: '20px'
|
||||
},
|
||||
children: item === null || item === void 0 ? void 0 : item.content
|
||||
})]
|
||||
})]
|
||||
}, index)
|
||||
};
|
||||
})
|
||||
}) : /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {
|
||||
customText: "\u6682\u65E0\u6570\u636E",
|
||||
styles: {
|
||||
margin: '30px auto'
|
||||
}
|
||||
})
|
||||
})]
|
||||
})]
|
||||
});
|
||||
};
|
||||
/* harmony default export */ var InfoCode = ((0,_umi_production_exports.connect)(function (_ref4) {
|
||||
var loading = _ref4.loading,
|
||||
user = _ref4.user,
|
||||
engineeringNavigtion = _ref4.engineeringNavigtion,
|
||||
account = _ref4.account,
|
||||
dispatch = _ref4.dispatch;
|
||||
return objectSpread2_default()(objectSpread2_default()({
|
||||
loading: loading,
|
||||
user: user
|
||||
}, engineeringNavigtion), {}, {
|
||||
account: account,
|
||||
dispatch: dispatch
|
||||
});
|
||||
})(Navigation));
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue