Auto Submit

pull/1/head
autosubmit 2 years ago
parent 1c1c10c989
commit 48a562ec5a

@ -1,5 +1,5 @@
"use strict";
(self["webpackChunk"] = self["webpackChunk"] || []).push([[9888,35479],{
(self["webpackChunk"] = self["webpackChunk"] || []).push([[91983,35479],{
/***/ 88484:
/*!*******************************************************************************!*\
@ -64,6 +64,486 @@ const getRenderPropValue = propValue => {
/***/ }),
/***/ 38925:
/*!*********************************************************!*\
!*** ./node_modules/antd/es/alert/index.js + 3 modules ***!
\*********************************************************/
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
// EXPORTS
__webpack_require__.d(__webpack_exports__, {
"Z": function() { return /* binding */ es_alert; }
});
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js + 1 modules
var CheckCircleFilled = __webpack_require__(89739);
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js + 1 modules
var CloseCircleFilled = __webpack_require__(4340);
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CloseOutlined.js + 1 modules
var CloseOutlined = __webpack_require__(97937);
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.js + 1 modules
var ExclamationCircleFilled = __webpack_require__(21640);
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/InfoCircleFilled.js + 1 modules
var InfoCircleFilled = __webpack_require__(78860);
// EXTERNAL MODULE: ./node_modules/classnames/index.js
var classnames = __webpack_require__(94184);
var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
// EXTERNAL MODULE: ./node_modules/antd/node_modules/rc-motion/es/index.js + 18 modules
var es = __webpack_require__(38379);
// EXTERNAL MODULE: ./node_modules/antd/node_modules/rc-util/es/pickAttrs.js
var pickAttrs = __webpack_require__(1337);
// EXTERNAL MODULE: ./node_modules/react/index.js
var react = __webpack_require__(67294);
// EXTERNAL MODULE: ./node_modules/antd/es/_util/reactNode.js
var reactNode = __webpack_require__(96159);
// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js
var context = __webpack_require__(53124);
// EXTERNAL MODULE: ./node_modules/antd/es/style/index.js
var style = __webpack_require__(14747);
// EXTERNAL MODULE: ./node_modules/antd/es/theme/util/genComponentStyleHook.js
var genComponentStyleHook = __webpack_require__(67968);
// EXTERNAL MODULE: ./node_modules/antd/es/theme/util/statistic.js
var statistic = __webpack_require__(45503);
;// CONCATENATED MODULE: ./node_modules/antd/es/alert/style/index.js
const genAlertTypeStyle = (bgColor, borderColor, iconColor, token, alertCls) => ({
backgroundColor: bgColor,
border: `${token.lineWidth}px ${token.lineType} ${borderColor}`,
[`${alertCls}-icon`]: {
color: iconColor
}
});
const genBaseStyle = token => {
const {
componentCls,
motionDurationSlow: duration,
marginXS,
marginSM,
fontSize,
fontSizeLG,
lineHeight,
borderRadiusLG: borderRadius,
motionEaseInOutCirc,
alertIconSizeLG,
colorText,
paddingContentVerticalSM,
alertPaddingHorizontal,
paddingMD,
paddingContentHorizontalLG,
colorTextHeading
} = token;
return {
[componentCls]: Object.assign(Object.assign({}, (0,style/* resetComponent */.Wf)(token)), {
position: 'relative',
display: 'flex',
alignItems: 'center',
padding: `${paddingContentVerticalSM}px ${alertPaddingHorizontal}px`,
wordWrap: 'break-word',
borderRadius,
[`&${componentCls}-rtl`]: {
direction: 'rtl'
},
[`${componentCls}-content`]: {
flex: 1,
minWidth: 0
},
[`${componentCls}-icon`]: {
marginInlineEnd: marginXS,
lineHeight: 0
},
[`&-description`]: {
display: 'none',
fontSize,
lineHeight
},
'&-message': {
color: colorText
},
[`&${componentCls}-motion-leave`]: {
overflow: 'hidden',
opacity: 1,
transition: `max-height ${duration} ${motionEaseInOutCirc}, opacity ${duration} ${motionEaseInOutCirc},
padding-top ${duration} ${motionEaseInOutCirc}, padding-bottom ${duration} ${motionEaseInOutCirc},
margin-bottom ${duration} ${motionEaseInOutCirc}`
},
[`&${componentCls}-motion-leave-active`]: {
maxHeight: 0,
marginBottom: '0 !important',
paddingTop: 0,
paddingBottom: 0,
opacity: 0
}
}),
[`${componentCls}-with-description`]: {
alignItems: 'flex-start',
paddingInline: paddingContentHorizontalLG,
paddingBlock: paddingMD,
[`${componentCls}-icon`]: {
marginInlineEnd: marginSM,
fontSize: alertIconSizeLG,
lineHeight: 0
},
[`${componentCls}-message`]: {
display: 'block',
marginBottom: marginXS,
color: colorTextHeading,
fontSize: fontSizeLG
},
[`${componentCls}-description`]: {
display: 'block'
}
},
[`${componentCls}-banner`]: {
marginBottom: 0,
border: '0 !important',
borderRadius: 0
}
};
};
const genTypeStyle = token => {
const {
componentCls,
colorSuccess,
colorSuccessBorder,
colorSuccessBg,
colorWarning,
colorWarningBorder,
colorWarningBg,
colorError,
colorErrorBorder,
colorErrorBg,
colorInfo,
colorInfoBorder,
colorInfoBg
} = token;
return {
[componentCls]: {
'&-success': genAlertTypeStyle(colorSuccessBg, colorSuccessBorder, colorSuccess, token, componentCls),
'&-info': genAlertTypeStyle(colorInfoBg, colorInfoBorder, colorInfo, token, componentCls),
'&-warning': genAlertTypeStyle(colorWarningBg, colorWarningBorder, colorWarning, token, componentCls),
'&-error': Object.assign(Object.assign({}, genAlertTypeStyle(colorErrorBg, colorErrorBorder, colorError, token, componentCls)), {
[`${componentCls}-description > pre`]: {
margin: 0,
padding: 0
}
})
}
};
};
const genActionStyle = token => {
const {
componentCls,
iconCls,
motionDurationMid,
marginXS,
fontSizeIcon,
colorIcon,
colorIconHover
} = token;
return {
[componentCls]: {
[`&-action`]: {
marginInlineStart: marginXS
},
[`${componentCls}-close-icon`]: {
marginInlineStart: marginXS,
padding: 0,
overflow: 'hidden',
fontSize: fontSizeIcon,
lineHeight: `${fontSizeIcon}px`,
backgroundColor: 'transparent',
border: 'none',
outline: 'none',
cursor: 'pointer',
[`${iconCls}-close`]: {
color: colorIcon,
transition: `color ${motionDurationMid}`,
'&:hover': {
color: colorIconHover
}
}
},
'&-close-text': {
color: colorIcon,
transition: `color ${motionDurationMid}`,
'&:hover': {
color: colorIconHover
}
}
}
};
};
const genAlertStyle = token => [genBaseStyle(token), genTypeStyle(token), genActionStyle(token)];
/* harmony default export */ var alert_style = ((0,genComponentStyleHook/* default */.Z)('Alert', token => {
const {
fontSizeHeading3
} = token;
const alertToken = (0,statistic/* merge */.TS)(token, {
alertIconSizeLG: fontSizeHeading3,
alertPaddingHorizontal: 12 // Fixed value here.
});
return [genAlertStyle(alertToken)];
}));
;// CONCATENATED MODULE: ./node_modules/antd/es/alert/Alert.js
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;
};
// CSSINJS
const iconMapFilled = {
success: CheckCircleFilled/* default */.Z,
info: InfoCircleFilled/* default */.Z,
error: CloseCircleFilled/* default */.Z,
warning: ExclamationCircleFilled/* default */.Z
};
const IconNode = props => {
const {
icon,
prefixCls,
type
} = props;
const iconType = iconMapFilled[type] || null;
if (icon) {
return (0,reactNode/* replaceElement */.wm)(icon, /*#__PURE__*/react.createElement("span", {
className: `${prefixCls}-icon`
}, icon), () => ({
className: classnames_default()(`${prefixCls}-icon`, {
[icon.props.className]: icon.props.className
})
}));
}
return /*#__PURE__*/react.createElement(iconType, {
className: `${prefixCls}-icon`
});
};
const CloseIcon = props => {
const {
isClosable,
prefixCls,
closeIcon,
handleClose
} = props;
const mergedCloseIcon = closeIcon === true || closeIcon === undefined ? /*#__PURE__*/react.createElement(CloseOutlined/* default */.Z, null) : closeIcon;
return isClosable ? /*#__PURE__*/react.createElement("button", {
type: "button",
onClick: handleClose,
className: `${prefixCls}-close-icon`,
tabIndex: 0
}, mergedCloseIcon) : null;
};
const Alert = props => {
const {
description,
prefixCls: customizePrefixCls,
message,
banner,
className,
rootClassName,
style,
onMouseEnter,
onMouseLeave,
onClick,
afterClose,
showIcon,
closable,
closeText,
closeIcon,
action
} = props,
otherProps = __rest(props, ["description", "prefixCls", "message", "banner", "className", "rootClassName", "style", "onMouseEnter", "onMouseLeave", "onClick", "afterClose", "showIcon", "closable", "closeText", "closeIcon", "action"]);
const [closed, setClosed] = react.useState(false);
if (false) {}
const ref = react.useRef(null);
const {
getPrefixCls,
direction,
alert
} = react.useContext(context/* ConfigContext */.E_);
const prefixCls = getPrefixCls('alert', customizePrefixCls);
const [wrapSSR, hashId] = alert_style(prefixCls);
const handleClose = e => {
var _a;
setClosed(true);
(_a = props.onClose) === null || _a === void 0 ? void 0 : _a.call(props, e);
};
const type = react.useMemo(() => {
if (props.type !== undefined) {
return props.type;
}
// banner mode defaults to 'warning'
return banner ? 'warning' : 'info';
}, [props.type, banner]);
// closeable when closeText or closeIcon is assigned
const isClosable = react.useMemo(() => {
if (closeText) {
return true;
}
if (typeof closable === 'boolean') {
return closable;
}
// should be true when closeIcon is 0 or ''
return closeIcon !== false && closeIcon !== null && closeIcon !== undefined;
}, [closeText, closeIcon, closable]);
// banner mode defaults to Icon
const isShowIcon = banner && showIcon === undefined ? true : showIcon;
const alertCls = classnames_default()(prefixCls, `${prefixCls}-${type}`, {
[`${prefixCls}-with-description`]: !!description,
[`${prefixCls}-no-icon`]: !isShowIcon,
[`${prefixCls}-banner`]: !!banner,
[`${prefixCls}-rtl`]: direction === 'rtl'
}, alert === null || alert === void 0 ? void 0 : alert.className, className, rootClassName, hashId);
const restProps = (0,pickAttrs/* default */.Z)(otherProps, {
aria: true,
data: true
});
return wrapSSR( /*#__PURE__*/react.createElement(es["default"], {
visible: !closed,
motionName: `${prefixCls}-motion`,
motionAppear: false,
motionEnter: false,
onLeaveStart: node => ({
maxHeight: node.offsetHeight
}),
onLeaveEnd: afterClose
}, _ref => {
let {
className: motionClassName,
style: motionStyle
} = _ref;
return /*#__PURE__*/react.createElement("div", Object.assign({
ref: ref,
"data-show": !closed,
className: classnames_default()(alertCls, motionClassName),
style: Object.assign(Object.assign(Object.assign({}, alert === null || alert === void 0 ? void 0 : alert.style), style), motionStyle),
onMouseEnter: onMouseEnter,
onMouseLeave: onMouseLeave,
onClick: onClick,
role: "alert"
}, restProps), isShowIcon ? /*#__PURE__*/react.createElement(IconNode, {
description: description,
icon: props.icon,
prefixCls: prefixCls,
type: type
}) : null, /*#__PURE__*/react.createElement("div", {
className: `${prefixCls}-content`
}, message ? /*#__PURE__*/react.createElement("div", {
className: `${prefixCls}-message`
}, message) : null, description ? /*#__PURE__*/react.createElement("div", {
className: `${prefixCls}-description`
}, description) : null), action ? /*#__PURE__*/react.createElement("div", {
className: `${prefixCls}-action`
}, action) : null, /*#__PURE__*/react.createElement(CloseIcon, {
isClosable: isClosable,
prefixCls: prefixCls,
closeIcon: closeText || closeIcon,
handleClose: handleClose
}));
}));
};
if (false) {}
/* harmony default export */ var alert_Alert = (Alert);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/classCallCheck.js
var classCallCheck = __webpack_require__(15671);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/createClass.js
var createClass = __webpack_require__(43144);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/inherits.js
var inherits = __webpack_require__(60136);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/createSuper.js + 1 modules
var createSuper = __webpack_require__(51630);
;// CONCATENATED MODULE: ./node_modules/antd/es/alert/ErrorBoundary.js
let ErrorBoundary = /*#__PURE__*/function (_React$Component) {
(0,inherits/* default */.Z)(ErrorBoundary, _React$Component);
var _super = (0,createSuper/* default */.Z)(ErrorBoundary);
function ErrorBoundary() {
var _this;
(0,classCallCheck/* default */.Z)(this, ErrorBoundary);
_this = _super.apply(this, arguments);
_this.state = {
error: undefined,
info: {
componentStack: ''
}
};
return _this;
}
(0,createClass/* default */.Z)(ErrorBoundary, [{
key: "componentDidCatch",
value: function componentDidCatch(error, info) {
this.setState({
error,
info
});
}
}, {
key: "render",
value: function render() {
const {
message,
description,
children
} = this.props;
const {
error,
info
} = this.state;
const componentStack = info && info.componentStack ? info.componentStack : null;
const errorMessage = typeof message === 'undefined' ? (error || '').toString() : message;
const errorDescription = typeof description === 'undefined' ? componentStack : description;
if (error) {
return /*#__PURE__*/react.createElement(alert_Alert, {
type: "error",
message: errorMessage,
description: /*#__PURE__*/react.createElement("pre", {
style: {
fontSize: '0.9em',
overflowX: 'auto'
}
}, errorDescription)
});
}
return children;
}
}]);
return ErrorBoundary;
}(react.Component);
/* harmony default export */ var alert_ErrorBoundary = (ErrorBoundary);
;// CONCATENATED MODULE: ./node_modules/antd/es/alert/index.js
'use client';
const es_alert_Alert = alert_Alert;
es_alert_Alert.ErrorBoundary = alert_ErrorBoundary;
/* harmony default export */ var es_alert = (es_alert_Alert);
/***/ }),
/***/ 96074:
/*!***********************************************************!*\
!*** ./node_modules/antd/es/divider/index.js + 1 modules ***!

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

@ -22,7 +22,6 @@
.process_title {
font-size: 16px;
color: #333;
/* padding-left: 16px; */
margin-top: 20px;
font-weight: 600;
}
@ -50,7 +49,6 @@
}
#xianchangqueren:hover .icon {
color: rgb(1, 109, 173);
border-radius: 50%;
box-shadow: 0px 10px 10px 0px rgb(209, 232, 243);
}
@ -64,7 +62,6 @@
}
#panduanhujiu:hover .icon {
color: rgb(1, 109, 173);
border-radius: 50%;
box-shadow: 0px 10px 10px 0px rgb(209, 232, 243);
}
@ -91,7 +88,6 @@
}
#shiyongaed:hover .icon {
color: rgb(1, 109, 173);
border-radius: 50%;
box-shadow: 0px 10px 10px 0px rgb(209, 232, 243);
}
@ -105,9 +101,9 @@
}
.icon {
font-size: 80px;
color: rgb(1, 109, 173);
cursor: pointer;
display: inline-block;
height: 80px;
}
.wancheng {
@ -143,8 +139,9 @@
.line_slant {
position: absolute;
left: 50%;
margin-top: -80px;
translate: -70%;
margin-top: -82px;
margin-left:10px;
transform: translateX(-70%);
color: rgb(235, 238, 240);
}
@ -205,19 +202,18 @@
<div class="process_wrap">
<div class="step">
<div id="xianchangqueren" style="position:relative;" key="1">
<img src="./finish.png" class="wancheng hidden">
<!-- <i class="iconfont icon-yiwancheng6 wancheng hidden"></i> -->
<img src="./images/finish.png" class="wancheng hidden">
<span class="mask"></span>
<i class="iconfont icon-xianchangqueren icon"></i>
<img src="./images/xianchangqueren.png" width='80' class="icon">
<p>第一步<br />现场安全</p>
</div>
<div class="line1">
<i class="iconfont icon-shangbianxiantiao line-ver"></i>
</div>
<div id="panduanhujiu" style="position:relative;" key="2">
<img src="./finish.png" class="wancheng hidden">
<img src="./images/finish.png" class="wancheng hidden">
<span class="mask"></span>
<i class="iconfont icon-panduanhujiu icon"></i>
<img src="./images/panduanhujiu.png" width='80' class="icon">
<p>第二步<br />判断呼救</p>
</div>
</div>
@ -226,18 +222,18 @@
</div>
<div class="step">
<div id="xinzangfusu" style="position:relative;" key="3">
<img src="./finish.png" class="wancheng hidden">
<img src="./images/finish.png" class="wancheng hidden">
<span class="mask"></span>
<i class="iconfont icon-a-302 icon"></i>
<p>第三步<br />30 : 2</p>
<img src="./images/xinzangfusu.png" width="80" class="icon">
<p>第三步<br />心脏复苏</p>
</div>
<div class="line2">
<i class="iconfont icon-shangbianxiantiao line-ver"></i>
</div>
<div id="shiyongaed" style="position:relative;" key="4">
<img src="./finish.png" class="wancheng hidden">
<img src="./images/finish.png" class="wancheng hidden">
<span class="mask"></span>
<i class="iconfont icon-shiyongaed icon"></i>
<img src="./images/shiyongaed.png" width="80" class="icon">
<p>第四步<br />使用AED</p>
</div>
</div>
@ -287,10 +283,18 @@
const el = elems[i];
const key = el.getAttribute("key")
data.map(item => {
if (key == item.position) {
if (key == item?.position) {
el.addEventListener("click", function () {
// if (item.status == 2)
if (item?.status == 2 || item?.position ==1 || getIdentifier()== item?.identifier)
window.top.location.href = `https://educoder.net/tasks/${item?.identifier}`
else{
if(data?.[item.position - 2]?.status != 2){
const step = Upper[item?.position - 1]
window.top.location.href = `https://educoder.net/tasks/${getIdentifier()}?step=${step}`
}else{
window.top.location.href = `https://educoder.net/tasks/${item?.identifier}`
}
}
// else {
// if (item.position != 1 && data[item.position - 2].status != 2 && getIdentifier() != item
// .identifier) {

@ -1630,6 +1630,7 @@ var ShixunsListPage = function ShixunsListPage(_ref) {
if (res1.status === 0) {
setPreviewHtml(res1.html_content);
setcodeloding(false);
mathjax();
// setStatus(Status.Preview)
aaa();
}
@ -1948,12 +1949,12 @@ var ShixunsListPage = function ShixunsListPage(_ref) {
case 2:
res = _context11.sent;
if (!((res === null || res === void 0 ? void 0 : res.status) === 0)) {
_context11.next = 14;
_context11.next = 15;
break;
}
sethomeWorkReport(res.data);
if (!(res !== null && res !== void 0 && (_res$data4 = res.data) !== null && _res$data4 !== void 0 && (_res$data4$shixun_det = _res$data4.shixun_detail[0]) !== null && _res$data4$shixun_det !== void 0 && _res$data4$shixun_det.myshixun_identifier)) {
_context11.next = 14;
_context11.next = 15;
break;
}
setcodeloding(true);
@ -1969,14 +1970,14 @@ var ShixunsListPage = function ShixunsListPage(_ref) {
case 9:
res1 = _context11.sent;
if (!(res1.status === 0)) {
_context11.next = 14;
_context11.next = 15;
break;
}
setPreviewHtml(res1.html_content);
setcodeloding(false);
// setStatus(Status.Preview)
createDom(res1.html_content);
return _context11.abrupt("return");
case 14:
case 15:
case "end":
return _context11.stop();
}
@ -1986,6 +1987,47 @@ var ShixunsListPage = function ShixunsListPage(_ref) {
return _ref8.apply(this, arguments);
};
}();
var createDom = function createDom(html_content) {
var _html_content$match, _html_content$match$c;
html_content === null || html_content === void 0 ? void 0 : (_html_content$match = html_content.match) === null || _html_content$match === void 0 ? void 0 : (_html_content$match$c = _html_content$match.call(html_content, /<script [^>]*src=['"]([^'"]+)[^>]*>/gi)) === null || _html_content$match$c === void 0 ? void 0 : _html_content$match$c.map(function (item) {
var script = document.createElement("script");
script.src = /<script [^>]*src=['"]([^'"]+)[^>]*>/gi.exec(item)[1];
document.body.appendChild(script);
});
mathjax();
};
var mathjax = function mathjax() {
try {
if (window.MathJax) {
MathJax.Hub.Config({
TeX: {
equationNumbers: {
autoNumber: "AMS",
useLabelIds: true
}
},
tex2jax: {
inlineMath: [['$', '$'], ["\\\\(", "\\\\)"]],
displayMath: [['$$', '$$'], ["\\\\[", "\\\\]"]],
processEscapes: true,
processEnvironments: true
},
displayAlign: 'center',
CommonHTML: {
linebreaks: {
automatic: true
}
},
"HTML-CSS": {
linebreaks: {
automatic: true
}
}
});
MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
}
} catch (e) {}
};
var initData = /*#__PURE__*/function () {
var _ref9 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee10() {
return regeneratorRuntime_default()().wrap(function _callee10$(_context12) {

@ -5115,6 +5115,8 @@ var ShixunList = function ShixunList(_ref) {
_useState8 = slicedToArray_default()(_useState7, 2),
kong = _useState8[0],
setkong = _useState8[1];
params['category'] = params.categoryId;
params['id'] = params.coursesId;
function getlist() {
return _getlist.apply(this, arguments);
}

@ -112,6 +112,9 @@ var util = __webpack_require__(29427);
// EXTERNAL MODULE: ./node_modules/lodash/lodash.js
var lodash = __webpack_require__(96486);
var lodash_default = /*#__PURE__*/__webpack_require__.n(lodash);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/defineProperty.js
var defineProperty = __webpack_require__(38416);
var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty);
// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules
var es_form = __webpack_require__(25159);
// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 4 modules
@ -151,7 +154,9 @@ var jsx_runtime = __webpack_require__(85893);
var Interest = function Interest(_ref) {
var _useState19;
var pathsList = _ref.pathsList,
user = _ref.user,
dispatch = _ref.dispatch,
@ -194,11 +199,11 @@ var Interest = function Interest(_ref) {
_useState16 = slicedToArray_default()(_useState15, 2),
studentId = _useState16[0],
setStudentId = _useState16[1];
var _useState17 = (0,react.useState)({
var _useState17 = (0,react.useState)((_useState19 = {
1: "icon-chengxushejiyuyan",
19: "icon-jisuanjijichu",
16: "icon-jisuanjixitongnengli",
2: "icon-butaidong",
// 2: "icon-butaidong",
10: "icon-dashuju",
9: "icon-rengongzhineng",
18: "icon-ruanjiangongcheng",
@ -208,8 +213,11 @@ var Interest = function Interest(_ref) {
15: "icon-wangluoanquan",
22: "icon-butaidong",
20: "icon-butaidong",
24: "icon-butaidong"
}),
24: "icon-butaidong",
28: "icon-shuxueyutongji",
26: "icon-qukuailian1",
2: "icon-suanfasheji1"
}, defineProperty_default()(_useState19, "24", "icon-jingjiguanli"), defineProperty_default()(_useState19, "17", "icon-dianzixinxi1"), defineProperty_default()(_useState19, 62, "icon-jingpeikecheng"), defineProperty_default()(_useState19, 67, "icon-yunjisuan"), defineProperty_default()(_useState19, "22", "icon-qiyekecheng"), defineProperty_default()(_useState19, "20", "icon-xunifangzhen"), defineProperty_default()(_useState19, 63, "icon-wulianwang"), _useState19)),
_useState18 = slicedToArray_default()(_useState17, 2),
icons = _useState18[0],
setIcons = _useState18[1];
@ -1076,7 +1084,10 @@ var Page = function Page(_ref) {
dataSource: tabsMenu,
value: params === null || params === void 0 ? void 0 : params.order,
onChange: handleTabs
}), (0,authority/* isCommonSuperAdmin */.fn)() && /*#__PURE__*/(0,jsx_runtime.jsxs)(ui_customization/* CustomButton */.op, {
}),
/*#__PURE__*/
// isCommonSuperAdmin() &&
(0,jsx_runtime.jsxs)(ui_customization/* CustomButton */.op, {
className: "ml20",
onClick: function onClick() {
dispatch({

@ -15802,6 +15802,8 @@ function code_repository_reducer(state, action) {
})]
});
});
// EXTERNAL MODULE: ./node_modules/antd/es/alert/index.js + 3 modules
var es_alert = __webpack_require__(38925);
;// CONCATENATED MODULE: ./src/pages/tasks/code-repository/picture-panel/index.less
// extracted by mini-css-extract-plugin
@ -16932,9 +16934,16 @@ function tasks_reducer(state, action) {
_useState8 = slicedToArray_default()(_useState7, 2),
codeLoading = _useState8[0],
setCodeLoading = _useState8[1];
var _useState9 = (0,react.useState)(),
_useState10 = slicedToArray_default()(_useState9, 2),
step = _useState10[0],
setStep = _useState10[1];
(0,react.useEffect)(function () {
setTaskId(_params.taskId);
}, [_params]);
(0,react.useEffect)(function () {
setStep(searchParams.get("step"));
}, [searchParams]);
(0,react.useEffect)(function () {
tabActiveParamsRef.current = tabActiveParams;
}, [tabActiveParams]);
@ -18693,7 +18702,23 @@ function tasks_reducer(state, action) {
unity_3d_routes: unity_3d_routes && !with_code_file
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
className: "tasks-body",
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("section", {
children: [!!step && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
style: {
position: "absolute",
top: 0,
left: "50%",
marginLeft: "-140px",
width: "380px",
height: "50px",
zIndex: "100"
},
children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_alert/* default */.Z, {
message: "\u8BF7\u5148\u5B8C\u6210\u7B2C".concat(step, "\u6B65\uFF0C\u624D\u80FD\u8FDB\u5165\u4E0B\u4E00\u6B65"),
type: "error",
showIcon: true,
closable: true
})
}), /*#__PURE__*/(0,jsx_runtime.jsx)("section", {
id: "task-left-panel",
className: "left-panel ".concat(taskData !== null && taskData !== void 0 && taskData.hideLeftPanel ? "hide" : "", " "),
style: {

@ -20,6 +20,18 @@
display: flex;
flex-flow: row nowrap;
align-items: center;
position: relative;
}
.tasks-body div[class~='ant-alert-error'] {
background-color: #FEF0F0 !important;
border: 1px solid #FDE2E2 !important;
}
.tasks-body div[class~='ant-alert'] {
height: 100% !important;
border-radius: 4px !important;
}
.tasks-body div[class~='ant-alert-message'] {
color: #F56C6C !important;
}
.tasks-body .resize-x-bar {
width: 4px;

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Binary file not shown.

@ -292,10 +292,10 @@ mark {
\*************************************************************************************************************************************************************************************************************************************/
@font-face {
font-family: "iconfont"; /* Project id 653600 */
src: url(./static/iconfont.de7bf788.woff2) format('woff2'),
url(./static/iconfont.f9c02bd2.woff) format('woff'),
url(./static/iconfont.5ac5f779.ttf) format('truetype'),
url(./static/iconfont.df7da3a4.svg#iconfont) format('svg');
src: url(./static/iconfont.8b3a53d0.woff2) format('woff2'),
url(./static/iconfont.fa498901.woff) format('woff'),
url(./static/iconfont.0a6cfdc4.ttf) format('truetype'),
url(./static/iconfont.46257993.svg#iconfont) format('svg');
}
.iconfont {
@ -306,6 +306,94 @@ mark {
-moz-osx-font-smoothing: grayscale;
}
.icon-qukuailian1:before {
content: "\ebf9";
}
.icon-suanfasheji1:before {
content: "\ebf6";
}
.icon-jingjiguanli:before {
content: "\ebf7";
}
.icon-dianzixinxi1:before {
content: "\ebf8";
}
.icon-jingpeikecheng:before {
content: "\ebf1";
}
.icon-yunjisuan:before {
content: "\ebf2";
}
.icon-shuxueyutongji:before {
content: "\ebf3";
}
.icon-qiyekecheng:before {
content: "\ebf4";
}
.icon-xunifangzhen:before {
content: "\ebf5";
}
.icon-wulianwang:before {
content: "\ebf0";
}
.icon-zhangjieceshi:before {
content: "\ebef";
}
.icon-jiesuo1:before {
content: "\ebed";
}
.icon-suoding:before {
content: "\ebee";
}
.icon-xiaoxitongzhi:before {
content: "\ebec";
}
.icon-xuanzhong11:before {
content: "\ebea";
}
.icon-yiwancheng6:before {
content: "\ebeb";
}
.icon-shangbianxiantiao:before {
content: "\ebe9";
}
.icon-xiebianjiantou:before {
content: "\ebe8";
}
.icon-panduanhujiu:before {
content: "\ebe6";
}
.icon-shiyongaed:before {
content: "\ebe7";
}
.icon-a-302:before {
content: "\ebe5";
}
.icon-xianchangqueren:before {
content: "\ebe1";
}
.icon-duohangtiankongxiang:before {
content: "\ebe4";
}

@ -131432,10 +131432,10 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Graduation__Topics__Detail__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(83338), __webpack_require__.e(14533), __webpack_require__.e(282), __webpack_require__.e(46744), __webpack_require__.e(40673), __webpack_require__.e(63889), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(34755), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(21578)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Graduation/Topics/Detail/index.tsx */ 37525));
}),
'59': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Graduation__Topics__Add__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(46744), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(67390), __webpack_require__.e(80316), __webpack_require__.e(62603), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(66390), __webpack_require__.e(12325), __webpack_require__.e(3317)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Graduation/Topics/Add/index.tsx */ 40199));
return Promise.all(/*! import() | p__Classrooms__Lists__Graduation__Topics__Add__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(46744), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(67390), __webpack_require__.e(80316), __webpack_require__.e(19675), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(66390), __webpack_require__.e(12325), __webpack_require__.e(3317)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Graduation/Topics/Add/index.tsx */ 40199));
}),
'60': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Graduation__Topics__Edit__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(46744), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(67390), __webpack_require__.e(80316), __webpack_require__.e(19675), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(66390), __webpack_require__.e(12325), __webpack_require__.e(1482)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Graduation/Topics/Edit/index.tsx */ 3055));
return Promise.all(/*! import() | p__Classrooms__Lists__Graduation__Topics__Edit__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(46744), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(67390), __webpack_require__.e(80316), __webpack_require__.e(62603), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(66390), __webpack_require__.e(12325), __webpack_require__.e(1482)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Graduation/Topics/Edit/index.tsx */ 3055));
}),
'61': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Graduation__Tasks__Add__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(46744), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(84358), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(66390), __webpack_require__.e(64768), __webpack_require__.e(74795)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Graduation/Tasks/Add/index.tsx */ 69185));
@ -132110,19 +132110,19 @@ function _getRoutes() {
return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
}),
'285': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(83338), __webpack_require__.e(14533), __webpack_require__.e(282), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(40673), __webpack_require__.e(63889), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(34755), __webpack_require__.e(70736), __webpack_require__.e(28510), __webpack_require__.e(40542), __webpack_require__.e(61193), __webpack_require__.e(96304), __webpack_require__.e(52005), __webpack_require__.e(78830), __webpack_require__.e(9888), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(3482), __webpack_require__.e(62305), __webpack_require__.e(41794), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 31008));
return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(83338), __webpack_require__.e(14533), __webpack_require__.e(282), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(40673), __webpack_require__.e(63889), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(34755), __webpack_require__.e(70736), __webpack_require__.e(28510), __webpack_require__.e(40542), __webpack_require__.e(61193), __webpack_require__.e(96304), __webpack_require__.e(52005), __webpack_require__.e(78830), __webpack_require__.e(91983), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(3482), __webpack_require__.e(62305), __webpack_require__.e(41794), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 31008));
}),
'286': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__tasks__Jupyter__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(35479), __webpack_require__.e(52005), __webpack_require__.e(3219), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(64768), __webpack_require__.e(41794), __webpack_require__.e(20700)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/Jupyter/index.tsx */ 80133));
}),
'287': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(83338), __webpack_require__.e(14533), __webpack_require__.e(282), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(40673), __webpack_require__.e(63889), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(34755), __webpack_require__.e(70736), __webpack_require__.e(28510), __webpack_require__.e(40542), __webpack_require__.e(61193), __webpack_require__.e(96304), __webpack_require__.e(52005), __webpack_require__.e(78830), __webpack_require__.e(9888), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(3482), __webpack_require__.e(62305), __webpack_require__.e(41794), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 31008));
return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(83338), __webpack_require__.e(14533), __webpack_require__.e(282), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(40673), __webpack_require__.e(63889), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(34755), __webpack_require__.e(70736), __webpack_require__.e(28510), __webpack_require__.e(40542), __webpack_require__.e(61193), __webpack_require__.e(96304), __webpack_require__.e(52005), __webpack_require__.e(78830), __webpack_require__.e(91983), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(3482), __webpack_require__.e(62305), __webpack_require__.e(41794), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 31008));
}),
'288': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__tasks__Jupyter__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(35479), __webpack_require__.e(52005), __webpack_require__.e(3219), __webpack_require__.e(4977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(64768), __webpack_require__.e(41794), __webpack_require__.e(20700)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/Jupyter/index.tsx */ 80133));
}),
'289': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(83338), __webpack_require__.e(14533), __webpack_require__.e(282), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(40673), __webpack_require__.e(63889), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(34755), __webpack_require__.e(70736), __webpack_require__.e(28510), __webpack_require__.e(40542), __webpack_require__.e(61193), __webpack_require__.e(96304), __webpack_require__.e(52005), __webpack_require__.e(78830), __webpack_require__.e(9888), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(3482), __webpack_require__.e(62305), __webpack_require__.e(41794), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 31008));
return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(48555), __webpack_require__.e(62709), __webpack_require__.e(83062), __webpack_require__.e(90026), __webpack_require__.e(37402), __webpack_require__.e(90688), __webpack_require__.e(73358), __webpack_require__.e(15804), __webpack_require__.e(79035), __webpack_require__.e(17845), __webpack_require__.e(68508), __webpack_require__.e(35874), __webpack_require__.e(78045), __webpack_require__.e(25159), __webpack_require__.e(83338), __webpack_require__.e(14533), __webpack_require__.e(282), __webpack_require__.e(46744), __webpack_require__.e(21687), __webpack_require__.e(40673), __webpack_require__.e(63889), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(31795), __webpack_require__.e(69814), __webpack_require__.e(31365), __webpack_require__.e(53254), __webpack_require__.e(40477), __webpack_require__.e(34755), __webpack_require__.e(70736), __webpack_require__.e(28510), __webpack_require__.e(40542), __webpack_require__.e(61193), __webpack_require__.e(96304), __webpack_require__.e(52005), __webpack_require__.e(78830), __webpack_require__.e(91983), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(3482), __webpack_require__.e(62305), __webpack_require__.e(41794), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 31008));
}),
'290': /*#__PURE__*/react.lazy(function () {
return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));

Loading…
Cancel
Save