diff --git a/76563.async.js b/10015.async.js similarity index 99% rename from 76563.async.js rename to 10015.async.js index 832b58aac7..c54b93c9c6 100644 --- a/76563.async.js +++ b/10015.async.js @@ -1,5 +1,5 @@ "use strict"; -(self["webpackChunk"] = self["webpackChunk"] || []).push([[76563],{ +(self["webpackChunk"] = self["webpackChunk"] || []).push([[10015],{ /***/ 509: /*!*********************************************************************!*\ diff --git a/18710.async.js b/18710.async.js index 4e672bc0b1..c19f853cbd 100644 --- a/18710.async.js +++ b/18710.async.js @@ -2168,8 +2168,8 @@ var shixuns = __webpack_require__(56088); var util = __webpack_require__(29427); // EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules var verifyLogin = __webpack_require__(7303); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Shixuns/Edit/body/Warehouse/components/Tree.tsx diff --git a/36204.async.js b/18976.async.js similarity index 70% rename from 36204.async.js rename to 18976.async.js index 55b4950a42..e2929ff257 100644 --- a/36204.async.js +++ b/18976.async.js @@ -1,5 +1,5 @@ "use strict"; -(self["webpackChunk"] = self["webpackChunk"] || []).push([[36204],{ +(self["webpackChunk"] = self["webpackChunk"] || []).push([[18976],{ /***/ 37653: /*!*****************************************************************!*\ @@ -64,6 +64,315 @@ RightOutlined.displayName = 'RightOutlined'; // extracted by mini-css-extract-plugin +/***/ }), + +/***/ 32808: +/*!************************************************************!*\ + !*** ./node_modules/antd/es/checkbox/index.js + 2 modules ***! + \************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ es_checkbox; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/rc-checkbox/es/index.js +var es = __webpack_require__(50132); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var config_provider_context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/form/context.js +var context = __webpack_require__(65223); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 2 modules +var toConsumableArray = __webpack_require__(74902); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules +var slicedToArray = __webpack_require__(97685); +// EXTERNAL MODULE: ./node_modules/rc-util/es/omit.js +var omit = __webpack_require__(98423); +;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/Group.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; +}; + + + + + +var GroupContext = /*#__PURE__*/react.createContext(null); +var InternalCheckboxGroup = function InternalCheckboxGroup(_a, ref) { + var defaultValue = _a.defaultValue, + children = _a.children, + _a$options = _a.options, + options = _a$options === void 0 ? [] : _a$options, + customizePrefixCls = _a.prefixCls, + className = _a.className, + style = _a.style, + onChange = _a.onChange, + restProps = __rest(_a, ["defaultValue", "children", "options", "prefixCls", "className", "style", "onChange"]); + var _React$useContext = react.useContext(config_provider_context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var _React$useState = react.useState(restProps.value || defaultValue || []), + _React$useState2 = (0,slicedToArray/* default */.Z)(_React$useState, 2), + value = _React$useState2[0], + setValue = _React$useState2[1]; + var _React$useState3 = react.useState([]), + _React$useState4 = (0,slicedToArray/* default */.Z)(_React$useState3, 2), + registeredValues = _React$useState4[0], + setRegisteredValues = _React$useState4[1]; + react.useEffect(function () { + if ('value' in restProps) { + setValue(restProps.value || []); + } + }, [restProps.value]); + var getOptions = function getOptions() { + return options.map(function (option) { + if (typeof option === 'string' || typeof option === 'number') { + return { + label: option, + value: option + }; + } + return option; + }); + }; + var cancelValue = function cancelValue(val) { + setRegisteredValues(function (prevValues) { + return prevValues.filter(function (v) { + return v !== val; + }); + }); + }; + var registerValue = function registerValue(val) { + setRegisteredValues(function (prevValues) { + return [].concat((0,toConsumableArray/* default */.Z)(prevValues), [val]); + }); + }; + var toggleOption = function toggleOption(option) { + var optionIndex = value.indexOf(option.value); + var newValue = (0,toConsumableArray/* default */.Z)(value); + if (optionIndex === -1) { + newValue.push(option.value); + } else { + newValue.splice(optionIndex, 1); + } + if (!('value' in restProps)) { + setValue(newValue); + } + var opts = getOptions(); + onChange === null || onChange === void 0 ? void 0 : onChange(newValue.filter(function (val) { + return registeredValues.includes(val); + }).sort(function (a, b) { + var indexA = opts.findIndex(function (opt) { + return opt.value === a; + }); + var indexB = opts.findIndex(function (opt) { + return opt.value === b; + }); + return indexA - indexB; + })); + }; + var prefixCls = getPrefixCls('checkbox', customizePrefixCls); + var groupPrefixCls = "".concat(prefixCls, "-group"); + var domProps = (0,omit/* default */.Z)(restProps, ['value', 'disabled']); + if (options && options.length > 0) { + children = getOptions().map(function (option) { + return /*#__PURE__*/react.createElement(checkbox_Checkbox, { + prefixCls: prefixCls, + key: option.value.toString(), + disabled: 'disabled' in option ? option.disabled : restProps.disabled, + value: option.value, + checked: value.includes(option.value), + onChange: option.onChange, + className: "".concat(groupPrefixCls, "-item"), + style: option.style + }, option.label); + }); + } + // eslint-disable-next-line react/jsx-no-constructed-context-values + var context = { + toggleOption: toggleOption, + value: value, + disabled: restProps.disabled, + name: restProps.name, + // https://github.com/ant-design/ant-design/issues/16376 + registerValue: registerValue, + cancelValue: cancelValue + }; + var classString = classnames_default()(groupPrefixCls, (0,defineProperty/* default */.Z)({}, "".concat(groupPrefixCls, "-rtl"), direction === 'rtl'), className); + return /*#__PURE__*/react.createElement("div", (0,esm_extends/* default */.Z)({ + className: classString, + style: style + }, domProps, { + ref: ref + }), /*#__PURE__*/react.createElement(GroupContext.Provider, { + value: context + }, children)); +}; +var CheckboxGroup = /*#__PURE__*/react.forwardRef(InternalCheckboxGroup); +/* harmony default export */ var Group = (/*#__PURE__*/react.memo(CheckboxGroup)); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/DisabledContext.js +var DisabledContext = __webpack_require__(98866); +;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/Checkbox.js + + +var Checkbox_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; +}; + + + + + + + + + +var InternalCheckbox = function InternalCheckbox(_a, ref) { + var _classNames; + var _b; + var customizePrefixCls = _a.prefixCls, + className = _a.className, + children = _a.children, + _a$indeterminate = _a.indeterminate, + indeterminate = _a$indeterminate === void 0 ? false : _a$indeterminate, + style = _a.style, + onMouseEnter = _a.onMouseEnter, + onMouseLeave = _a.onMouseLeave, + _a$skipGroup = _a.skipGroup, + skipGroup = _a$skipGroup === void 0 ? false : _a$skipGroup, + disabled = _a.disabled, + restProps = Checkbox_rest(_a, ["prefixCls", "className", "children", "indeterminate", "style", "onMouseEnter", "onMouseLeave", "skipGroup", "disabled"]); + var _React$useContext = react.useContext(config_provider_context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var checkboxGroup = react.useContext(GroupContext); + var _useContext = (0,react.useContext)(context/* FormItemInputContext */.aM), + isFormItemInput = _useContext.isFormItemInput; + var contextDisabled = (0,react.useContext)(DisabledContext/* default */.Z); + var mergedDisabled = (_b = (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.disabled) || disabled) !== null && _b !== void 0 ? _b : contextDisabled; + var prevValue = react.useRef(restProps.value); + react.useEffect(function () { + checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.registerValue(restProps.value); + false ? 0 : void 0; + }, []); + react.useEffect(function () { + if (skipGroup) { + return; + } + if (restProps.value !== prevValue.current) { + checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.cancelValue(prevValue.current); + checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.registerValue(restProps.value); + prevValue.current = restProps.value; + } + return function () { + return checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.cancelValue(restProps.value); + }; + }, [restProps.value]); + var prefixCls = getPrefixCls('checkbox', customizePrefixCls); + var checkboxProps = (0,esm_extends/* default */.Z)({}, restProps); + if (checkboxGroup && !skipGroup) { + checkboxProps.onChange = function () { + if (restProps.onChange) { + restProps.onChange.apply(restProps, arguments); + } + if (checkboxGroup.toggleOption) { + checkboxGroup.toggleOption({ + label: children, + value: restProps.value + }); + } + }; + checkboxProps.name = checkboxGroup.name; + checkboxProps.checked = checkboxGroup.value.includes(restProps.value); + } + var classString = classnames_default()((_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper"), true), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-checked"), checkboxProps.checked), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-disabled"), mergedDisabled), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-in-form-item"), isFormItemInput), _classNames), className); + var checkboxClass = classnames_default()((0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-indeterminate"), indeterminate)); + var ariaChecked = indeterminate ? 'mixed' : undefined; + return ( + /*#__PURE__*/ + // eslint-disable-next-line jsx-a11y/label-has-associated-control + react.createElement("label", { + className: classString, + style: style, + onMouseEnter: onMouseEnter, + onMouseLeave: onMouseLeave + }, /*#__PURE__*/react.createElement(es/* default */.Z, (0,esm_extends/* default */.Z)({ + "aria-checked": ariaChecked + }, checkboxProps, { + prefixCls: prefixCls, + className: checkboxClass, + disabled: mergedDisabled, + ref: ref + })), children !== undefined && /*#__PURE__*/react.createElement("span", null, children)) + ); +}; +var Checkbox = /*#__PURE__*/react.forwardRef(InternalCheckbox); +if (false) {} +/* harmony default export */ var checkbox_Checkbox = (Checkbox); +;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/index.js + + +var es_checkbox_Checkbox = checkbox_Checkbox; +es_checkbox_Checkbox.Group = Group; +es_checkbox_Checkbox.__ANT_CHECKBOX = true; +/* harmony default export */ var es_checkbox = (es_checkbox_Checkbox); + +/***/ }), + +/***/ 82000: +/*!******************************************************************!*\ + !*** ./node_modules/antd/es/checkbox/style/index.js + 1 modules ***! + \******************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/style/index.less +// extracted by mini-css-extract-plugin + +;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/style/index.js + + +// deps-lint-skip: form + +/***/ }), + +/***/ 13013: +/*!************************************************!*\ + !*** ./node_modules/antd/es/dropdown/index.js ***! + \************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +/* harmony import */ var _dropdown__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dropdown */ 18562); + +/* harmony default export */ __webpack_exports__["Z"] = (_dropdown__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z); + /***/ }), /***/ 69309: diff --git a/36204.chunk.css b/18976.chunk.css similarity index 68% rename from 36204.chunk.css rename to 18976.chunk.css index c69a146af3..9c2e8dc0af 100644 --- a/36204.chunk.css +++ b/18976.chunk.css @@ -1,1335 +1,1214 @@ -/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/layout/style/index.less ***! - \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/rate/style/index.less ***! + \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -.ant-layout { - display: flex; - flex: auto; - flex-direction: column; - /* fix firefox can't set height smaller than content on flex item */ - min-height: 0; - background: #f0f2f5; -} -.ant-layout, -.ant-layout * { +.ant-rate { box-sizing: border-box; -} -.ant-layout.ant-layout-has-sider { - flex-direction: row; -} -.ant-layout.ant-layout-has-sider > .ant-layout, -.ant-layout.ant-layout-has-sider > .ant-layout-content { - width: 0; -} -.ant-layout-header, -.ant-layout-footer { - flex: 0 0 auto; -} -.ant-layout-header { - height: 64px; - padding: 0 50px; - color: rgba(0, 0, 0, 0.85); - line-height: 64px; - background: #001529; -} -.ant-layout-footer { - padding: 24px 50px; color: rgba(0, 0, 0, 0.85); font-size: 12px; - background: #f0f2f5; + font-variant: tabular-nums; + line-height: 1.66667; + font-feature-settings: tnum, "tnum"; + display: inline-block; + margin: 0; + padding: 0; + color: #fadb14; + font-size: 16px; + line-height: inherit; + list-style: none; + outline: none; +} +.ant-rate-disabled .ant-rate-star { + cursor: default; } -.ant-layout-content { - flex: auto; - /* fix firefox can't set height smaller than content on flex item */ - min-height: 0; +.ant-rate-disabled .ant-rate-star > div:hover { + transform: scale(1); } -.ant-layout-sider { +.ant-rate-star { position: relative; - /* fix firefox can't set width smaller than content on flex item */ - min-width: 0; - background: #001529; - transition: all 0.2s; + display: inline-block; + color: inherit; + cursor: pointer; } -.ant-layout-sider-children { - height: 100%; - margin-top: -0.1px; - padding-top: 0.1px; +.ant-rate-star:not(:last-child) { + margin-right: 8px; } -.ant-layout-sider-children .ant-menu.ant-menu-inline-collapsed { - width: auto; +.ant-rate-star > div { + transition: all 0.3s, outline 0s; } -.ant-layout-sider-has-trigger { - padding-bottom: 48px; +.ant-rate-star > div:hover { + transform: scale(1.1); } -.ant-layout-sider-right { - order: 1; +.ant-rate-star > div:focus { + outline: 0; } -.ant-layout-sider-trigger { - position: fixed; - bottom: 0; - z-index: 1; - height: 48px; - color: #fff; - line-height: 48px; - text-align: center; - background: #002140; - cursor: pointer; - transition: all 0.2s; +.ant-rate-star > div:focus-visible { + outline: 1px dashed #fadb14; + transform: scale(1.1); } -.ant-layout-sider-zero-width > * { - overflow: hidden; +.ant-rate-star-first, +.ant-rate-star-second { + color: #f0f0f0; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } -.ant-layout-sider-zero-width-trigger { - position: absolute; - top: 64px; - right: -36px; - z-index: 1; - width: 36px; - height: 42px; - color: #fff; - font-size: 18px; - line-height: 42px; - text-align: center; - background: #001529; - border-radius: 0 2px 2px 0; - cursor: pointer; - transition: background 0.3s ease; +.ant-rate-star-first .anticon, +.ant-rate-star-second .anticon { + vertical-align: middle; } -.ant-layout-sider-zero-width-trigger::after { +.ant-rate-star-first { position: absolute; top: 0; - right: 0; - bottom: 0; left: 0; - background: transparent; - transition: all 0.3s; - content: ''; + width: 50%; + height: 100%; + overflow: hidden; + opacity: 0; } -.ant-layout-sider-zero-width-trigger:hover::after { - background: rgba(255, 255, 255, 0.1); +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-half .ant-rate-star-second { + opacity: 1; } -.ant-layout-sider-zero-width-trigger-right { - left: -36px; - border-radius: 2px 0 0 2px; +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-full .ant-rate-star-second { + color: inherit; } -.ant-layout-sider-light { - background: #fff; +.ant-rate-text { + display: inline-block; + margin: 0 8px; + font-size: 12px; } -.ant-layout-sider-light .ant-layout-sider-trigger { - color: rgba(0, 0, 0, 0.85); - background: #fff; +.ant-rate-rtl { + direction: rtl; } -.ant-layout-sider-light .ant-layout-sider-zero-width-trigger { - color: rgba(0, 0, 0, 0.85); - background: #fff; +.ant-rate-rtl .ant-rate-star:not(:last-child) { + margin-right: 0; + margin-left: 8px; } -.ant-layout-rtl { - direction: rtl; +.ant-rate-rtl .ant-rate-star-first { + right: 0; + left: auto; } /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/radio/style/index.less ***! - \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -.ant-radio-group { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; - display: inline-block; - font-size: 0; -} -.ant-radio-group .ant-badge-count { - z-index: 1; +/*!***************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[2]!./node_modules/swiper/css/swiper.css ***! + \***************************************************************************************************************************************************************************************************************************************/ +/** + * Swiper 5.4.5 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * http://swiperjs.com + * + * Copyright 2014-2020 Vladimir Kharlampidi + * + * Released under the MIT License + * + * Released on: June 16, 2020 + */ + +@font-face { + font-family: 'swiper-icons'; + src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff"); + font-weight: 400; + font-style: normal; } -.ant-radio-group > .ant-badge:not(:first-child) > .ant-radio-button-wrapper { - border-left: none; +:root { + --swiper-theme-color: #007aff; } -.ant-radio-wrapper { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; +.swiper-container { + margin-left: auto; + margin-right: auto; position: relative; - display: inline-flex; - align-items: baseline; - margin-right: 6px; - cursor: pointer; -} -.ant-radio-wrapper-disabled { - cursor: not-allowed; -} -.ant-radio-wrapper::after { - display: inline-block; - width: 0; overflow: hidden; - content: '\a0'; + list-style: none; + padding: 0; + /* Fix of Webkit flickering */ + z-index: 1; } -.ant-radio-wrapper.ant-radio-wrapper-in-form-item input[type='radio'] { - width: 14px; - height: 14px; +.swiper-container-vertical > .swiper-wrapper { + flex-direction: column; } -.ant-radio { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; +.swiper-wrapper { position: relative; - top: 0.2em; - display: inline-block; - outline: none; - cursor: pointer; + width: 100%; + height: 100%; + z-index: 1; + display: flex; + transition-property: transform; + box-sizing: content-box; } -.ant-radio-wrapper:hover .ant-radio, -.ant-radio:hover .ant-radio-inner, -.ant-radio-input:focus + .ant-radio-inner { - border-color: #3061D0; +.swiper-container-android .swiper-slide, +.swiper-wrapper { + transform: translate3d(0px, 0, 0); +} +.swiper-container-multirow > .swiper-wrapper { + flex-wrap: wrap; } -.ant-radio-input:focus + .ant-radio-inner { - box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +.swiper-container-multirow-column > .swiper-wrapper { + flex-wrap: wrap; + flex-direction: column; } -.ant-radio-checked::after { - position: absolute; - top: 0; - left: 0; +.swiper-container-free-mode > .swiper-wrapper { + transition-timing-function: ease-out; + margin: 0 auto; +} +.swiper-slide { + flex-shrink: 0; width: 100%; height: 100%; - border: 1px solid #3061D0; - border-radius: 50%; + position: relative; + transition-property: transform; +} +.swiper-slide-invisible-blank { visibility: hidden; - animation: antRadioEffect 0.36s ease-in-out; - animation-fill-mode: both; - content: ''; } -.ant-radio:hover::after, -.ant-radio-wrapper:hover .ant-radio::after { - visibility: visible; +/* Auto Height */ +.swiper-container-autoheight, +.swiper-container-autoheight .swiper-slide { + height: auto; } -.ant-radio-inner { - position: relative; - top: 0; - left: 0; - display: block; - width: 14px; - height: 14px; - background-color: #fff; - border-color: #d9d9d9; - border-style: solid; - border-width: 1px; - border-radius: 50%; - transition: all 0.3s; +.swiper-container-autoheight .swiper-wrapper { + align-items: flex-start; + transition-property: transform, height; } -.ant-radio-inner::after { - position: absolute; - top: 50%; - left: 50%; - display: block; - width: 14px; - height: 14px; - margin-top: -7px; - margin-left: -7px; - background-color: #3061D0; - border-top: 0; - border-left: 0; - border-radius: 14px; - transform: scale(0); - opacity: 0; - transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); - content: ' '; +/* 3D Effects */ +.swiper-container-3d { + perspective: 1200px; +} +.swiper-container-3d .swiper-wrapper, +.swiper-container-3d .swiper-slide, +.swiper-container-3d .swiper-slide-shadow-left, +.swiper-container-3d .swiper-slide-shadow-right, +.swiper-container-3d .swiper-slide-shadow-top, +.swiper-container-3d .swiper-slide-shadow-bottom, +.swiper-container-3d .swiper-cube-shadow { + transform-style: preserve-3d; } -.ant-radio-input { +.swiper-container-3d .swiper-slide-shadow-left, +.swiper-container-3d .swiper-slide-shadow-right, +.swiper-container-3d .swiper-slide-shadow-top, +.swiper-container-3d .swiper-slide-shadow-bottom { position: absolute; - top: 0; - right: 0; - bottom: 0; left: 0; - z-index: 1; - cursor: pointer; - opacity: 0; + top: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 10; } -.ant-radio.ant-radio-disabled .ant-radio-inner { - border-color: #d9d9d9; +.swiper-container-3d .swiper-slide-shadow-left { + background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); } -.ant-radio-checked .ant-radio-inner { - border-color: #3061D0; +.swiper-container-3d .swiper-slide-shadow-right { + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); } -.ant-radio-checked .ant-radio-inner::after { - transform: scale(0.42857143); - opacity: 1; - transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); +.swiper-container-3d .swiper-slide-shadow-top { + background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); } -.ant-radio-disabled { - cursor: not-allowed; +.swiper-container-3d .swiper-slide-shadow-bottom { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); } -.ant-radio-disabled .ant-radio-inner { - background-color: #f5f5f5; - cursor: not-allowed; +/* CSS Mode */ +.swiper-container-css-mode > .swiper-wrapper { + overflow: auto; + scrollbar-width: none; + /* For Firefox */ + -ms-overflow-style: none; + /* For Internet Explorer and Edge */ } -.ant-radio-disabled .ant-radio-inner::after { - background-color: rgba(0, 0, 0, 0.2); +.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar { + display: none; } -.ant-radio-disabled .ant-radio-input { - cursor: not-allowed; +.swiper-container-css-mode > .swiper-wrapper > .swiper-slide { + scroll-snap-align: start start; } -.ant-radio-disabled + span { - color: rgba(0, 0, 0, 0.25); - cursor: not-allowed; +.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper { + -webkit-scroll-snap-type: x mandatory; + -ms-scroll-snap-type: x mandatory; + scroll-snap-type: x mandatory; } -span.ant-radio + * { - padding-right: 8px; - padding-left: 8px; +.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper { + -webkit-scroll-snap-type: y mandatory; + -ms-scroll-snap-type: y mandatory; + scroll-snap-type: y mandatory; } -.ant-radio-button-wrapper { - position: relative; - display: inline-block; - height: 28px; - margin: 0; - padding: 0 7px; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - line-height: 26px; - background: #fff; - border: 1px solid #d9d9d9; - border-top-width: 1.02px; - border-left-width: 0; +:root { + --swiper-navigation-size: 44px; + /* + --swiper-navigation-color: var(--swiper-theme-color); + */ +} +.swiper-button-prev, +.swiper-button-next { + position: absolute; + top: 50%; + width: calc(44px / 44 * 27); + width: calc(var(--swiper-navigation-size) / 44 * 27); + height: 44px; + height: var(--swiper-navigation-size); + margin-top: calc(-1 * 44px / 2); + margin-top: calc(-1 * var(--swiper-navigation-size) / 2); + z-index: 10; cursor: pointer; - transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s; + display: flex; + align-items: center; + justify-content: center; + color: #007aff; + color: var(--swiper-navigation-color, var(--swiper-theme-color)); } -.ant-radio-button-wrapper a { - color: rgba(0, 0, 0, 0.85); +.swiper-button-prev.swiper-button-disabled, +.swiper-button-next.swiper-button-disabled { + opacity: 0.35; + cursor: auto; + pointer-events: none; } -.ant-radio-button-wrapper > .ant-radio-button { - position: absolute; - top: 0; - left: 0; - z-index: -1; - width: 100%; - height: 100%; +.swiper-button-prev:after, +.swiper-button-next:after { + font-family: swiper-icons; + font-size: 44px; + font-size: var(--swiper-navigation-size); + text-transform: none !important; + letter-spacing: 0; + text-transform: none; + font-feature-settings: ; + font-variant: normal; + font-variant: initial; + line-height: 1; } -.ant-radio-group-large .ant-radio-button-wrapper { - height: 32px; - font-size: 14px; - line-height: 30px; +.swiper-button-prev, +.swiper-container-rtl .swiper-button-next { + left: 10px; + right: auto; } -.ant-radio-group-small .ant-radio-button-wrapper { - height: 22px; - padding: 0 7px; - line-height: 20px; +.swiper-button-prev:after, +.swiper-container-rtl .swiper-button-next:after { + content: 'prev'; +} +.swiper-button-next, +.swiper-container-rtl .swiper-button-prev { + right: 10px; + left: auto; +} +.swiper-button-next:after, +.swiper-container-rtl .swiper-button-prev:after { + content: 'next'; +} +.swiper-button-prev.swiper-button-white, +.swiper-button-next.swiper-button-white { + --swiper-navigation-color: #ffffff; +} +.swiper-button-prev.swiper-button-black, +.swiper-button-next.swiper-button-black { + --swiper-navigation-color: #000000; +} +.swiper-button-lock { + display: none; +} +:root { + /* + --swiper-pagination-color: var(--swiper-theme-color); + */ } -.ant-radio-button-wrapper:not(:first-child)::before { +.swiper-pagination { position: absolute; - top: -1px; - left: -1px; - display: block; - box-sizing: content-box; - width: 1px; - height: 100%; - padding: 1px 0; - background-color: #d9d9d9; - transition: background-color 0.3s; - content: ''; + text-align: center; + transition: 300ms opacity; + transform: translate3d(0, 0, 0); + z-index: 10; } -.ant-radio-button-wrapper:first-child { - border-left: 1px solid #d9d9d9; - border-radius: 2px 0 0 2px; +.swiper-pagination.swiper-pagination-hidden { + opacity: 0; } -.ant-radio-button-wrapper:last-child { - border-radius: 0 2px 2px 0; +/* Common Styles */ +.swiper-pagination-fraction, +.swiper-pagination-custom, +.swiper-container-horizontal > .swiper-pagination-bullets { + bottom: 10px; + left: 0; + width: 100%; } -.ant-radio-button-wrapper:first-child:last-child { - border-radius: 2px; +/* Bullets */ +.swiper-pagination-bullets-dynamic { + overflow: hidden; + font-size: 0; } -.ant-radio-button-wrapper:hover { +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { + transform: scale(0.33); position: relative; - color: #3061D0; } -.ant-radio-button-wrapper:focus-within { - box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active { + transform: scale(1); } -.ant-radio-button-wrapper .ant-radio-inner, -.ant-radio-button-wrapper input[type='checkbox'], -.ant-radio-button-wrapper input[type='radio'] { - width: 0; - height: 0; - opacity: 0; - pointer-events: none; +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main { + transform: scale(1); } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { - z-index: 1; - color: #3061D0; - background: #fff; - border-color: #3061D0; +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev { + transform: scale(0.66); } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before { - background-color: #3061D0; +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev { + transform: scale(0.33); } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child { - border-color: #3061D0; +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next { + transform: scale(0.66); } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { - color: #5784de; - border-color: #5784de; +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next { + transform: scale(0.33); } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before { - background-color: #5784de; +.swiper-pagination-bullet { + width: 8px; + height: 8px; + display: inline-block; + border-radius: 100%; + background: #000; + opacity: 0.2; } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { - color: #1f44ab; - border-color: #1f44ab; +button.swiper-pagination-bullet { + border: none; + margin: 0; + padding: 0; + box-shadow: none; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before { - background-color: #1f44ab; +.swiper-pagination-clickable .swiper-pagination-bullet { + cursor: pointer; } -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { - box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +.swiper-pagination-bullet-active { + opacity: 1; + background: #007aff; + background: var(--swiper-pagination-color, var(--swiper-theme-color)); } -.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { - color: #fff; - background: #3061D0; - border-color: #3061D0; +.swiper-container-vertical > .swiper-pagination-bullets { + right: 10px; + top: 50%; + transform: translate3d(0px, -50%, 0); } -.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { - color: #fff; - background: #5784de; - border-color: #5784de; +.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet { + margin: 6px 0; + display: block; } -.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { - color: #fff; - background: #1f44ab; - border-color: #1f44ab; +.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic { + top: 50%; + transform: translateY(-50%); + width: 8px; } -.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { - box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { + display: inline-block; + transition: 200ms transform, 200ms top; } -.ant-radio-button-wrapper-disabled { - color: rgba(0, 0, 0, 0.25); - background-color: #f5f5f5; - border-color: #d9d9d9; - cursor: not-allowed; +.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet { + margin: 0 4px; } -.ant-radio-button-wrapper-disabled:first-child, -.ant-radio-button-wrapper-disabled:hover { - color: rgba(0, 0, 0, 0.25); - background-color: #f5f5f5; - border-color: #d9d9d9; +.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic { + left: 50%; + transform: translateX(-50%); + white-space: nowrap; } -.ant-radio-button-wrapper-disabled:first-child { - border-left-color: #d9d9d9; +.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { + transition: 200ms transform, 200ms left; } -.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked { - color: rgba(0, 0, 0, 0.25); - background-color: #e6e6e6; - border-color: #d9d9d9; - box-shadow: none; +.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet { + transition: 200ms transform, 200ms right; } -@keyframes antRadioEffect { - 0% { - transform: scale(1); - opacity: 0.5; - } - 100% { - transform: scale(1.6); - opacity: 0; - } +/* Progress */ +.swiper-pagination-progressbar { + background: rgba(0, 0, 0, 0.25); + position: absolute; } -.ant-radio-group.ant-radio-group-rtl { - direction: rtl; +.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { + background: #007aff; + background: var(--swiper-pagination-color, var(--swiper-theme-color)); + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + transform: scale(0); + transform-origin: left top; } -.ant-radio-wrapper.ant-radio-wrapper-rtl { - margin-right: 0; - margin-left: 6px; - direction: rtl; +.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill { + transform-origin: right top; } -.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl { - border-right-width: 0; - border-left-width: 1px; +.swiper-container-horizontal > .swiper-pagination-progressbar, +.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite { + width: 100%; + height: 4px; + left: 0; + top: 0; } -.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(:first-child)::before { - right: -1px; +.swiper-container-vertical > .swiper-pagination-progressbar, +.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite { + width: 4px; + height: 100%; left: 0; + top: 0; } -.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child { - border-right: 1px solid #d9d9d9; - border-radius: 0 2px 2px 0; +.swiper-pagination-white { + --swiper-pagination-color: #ffffff; } -.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child { - border-right-color: #5784de; +.swiper-pagination-black { + --swiper-pagination-color: #000000; } -.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child { - border-radius: 2px 0 0 2px; +.swiper-pagination-lock { + display: none; } -.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child { - border-right-color: #d9d9d9; +/* Scrollbar */ +.swiper-scrollbar { + border-radius: 10px; + position: relative; + -ms-touch-action: none; + background: rgba(0, 0, 0, 0.1); } -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ - -/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/carousel/style/index.less ***! - \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -.ant-carousel { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; -} -.ant-carousel .slick-slider { - position: relative; - display: block; - box-sizing: border-box; - touch-action: pan-y; - -webkit-touch-callout: none; - -webkit-tap-highlight-color: transparent; -} -.ant-carousel .slick-list { - position: relative; - display: block; - margin: 0; - padding: 0; - overflow: hidden; -} -.ant-carousel .slick-list:focus { - outline: none; -} -.ant-carousel .slick-list.dragging { - cursor: pointer; -} -.ant-carousel .slick-list .slick-slide { - pointer-events: none; -} -.ant-carousel .slick-list .slick-slide input.ant-radio-input, -.ant-carousel .slick-list .slick-slide input.ant-checkbox-input { - visibility: hidden; -} -.ant-carousel .slick-list .slick-slide.slick-active { - pointer-events: auto; -} -.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input, -.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input { - visibility: visible; -} -.ant-carousel .slick-list .slick-slide > div > div { - vertical-align: bottom; +.swiper-container-horizontal > .swiper-scrollbar { + position: absolute; + left: 1%; + bottom: 3px; + z-index: 50; + height: 5px; + width: 98%; } -.ant-carousel .slick-slider .slick-track, -.ant-carousel .slick-slider .slick-list { - transform: translate3d(0, 0, 0); - touch-action: pan-y; +.swiper-container-vertical > .swiper-scrollbar { + position: absolute; + right: 3px; + top: 1%; + z-index: 50; + width: 5px; + height: 98%; } -.ant-carousel .slick-track { +.swiper-scrollbar-drag { + height: 100%; + width: 100%; position: relative; - top: 0; + background: rgba(0, 0, 0, 0.5); + border-radius: 10px; left: 0; - display: block; -} -.ant-carousel .slick-track::before, -.ant-carousel .slick-track::after { - display: table; - content: ''; -} -.ant-carousel .slick-track::after { - clear: both; -} -.slick-loading .ant-carousel .slick-track { - visibility: hidden; -} -.ant-carousel .slick-slide { - display: none; - float: left; - height: 100%; - min-height: 1px; + top: 0; } -.ant-carousel .slick-slide img { - display: block; +.swiper-scrollbar-cursor-drag { + cursor: move; } -.ant-carousel .slick-slide.slick-loading img { +.swiper-scrollbar-lock { display: none; } -.ant-carousel .slick-slide.dragging img { - pointer-events: none; -} -.ant-carousel .slick-initialized .slick-slide { - display: block; +.swiper-zoom-container { + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + text-align: center; } -.ant-carousel .slick-loading .slick-slide { - visibility: hidden; +.swiper-zoom-container > img, +.swiper-zoom-container > svg, +.swiper-zoom-container > canvas { + max-width: 100%; + max-height: 100%; + object-fit: contain; } -.ant-carousel .slick-vertical .slick-slide { - display: block; - height: auto; +.swiper-slide-zoomed { + cursor: move; } -.ant-carousel .slick-arrow.slick-hidden { - display: none; +/* Preloader */ +:root { + /* + --swiper-preloader-color: var(--swiper-theme-color); + */ } -.ant-carousel .slick-prev, -.ant-carousel .slick-next { +.swiper-lazy-preloader { + width: 42px; + height: 42px; position: absolute; + left: 50%; top: 50%; - display: block; - width: 20px; - height: 20px; - margin-top: -10px; - padding: 0; - color: transparent; - font-size: 0; - line-height: 0; - background: transparent; - border: 0; - outline: none; - cursor: pointer; -} -.ant-carousel .slick-prev:hover, -.ant-carousel .slick-next:hover, -.ant-carousel .slick-prev:focus, -.ant-carousel .slick-next:focus { - color: transparent; - background: transparent; - outline: none; -} -.ant-carousel .slick-prev:hover::before, -.ant-carousel .slick-next:hover::before, -.ant-carousel .slick-prev:focus::before, -.ant-carousel .slick-next:focus::before { - opacity: 1; -} -.ant-carousel .slick-prev.slick-disabled::before, -.ant-carousel .slick-next.slick-disabled::before { - opacity: 0.25; -} -.ant-carousel .slick-prev { - left: -25px; + margin-left: -21px; + margin-top: -21px; + z-index: 10; + transform-origin: 50%; + animation: swiper-preloader-spin 1s infinite linear; + box-sizing: border-box; + border: 4px solid #007aff; + border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color)); + border-radius: 50%; + border-top-color: transparent; } -.ant-carousel .slick-prev::before { - content: '←'; +.swiper-lazy-preloader-white { + --swiper-preloader-color: #fff; } -.ant-carousel .slick-next { - right: -25px; +.swiper-lazy-preloader-black { + --swiper-preloader-color: #000; } -.ant-carousel .slick-next::before { - content: '→'; +@keyframes swiper-preloader-spin { + 100% { + transform: rotate(360deg); + } } -.ant-carousel .slick-dots { +/* a11y */ +.swiper-container .swiper-notification { position: absolute; - right: 0; - bottom: 0; left: 0; - z-index: 15; - display: flex !important; - justify-content: center; - margin-right: 15%; - margin-bottom: 0; - margin-left: 15%; - padding-left: 0; - list-style: none; -} -.ant-carousel .slick-dots-bottom { - bottom: 12px; -} -.ant-carousel .slick-dots-top { - top: 12px; - bottom: auto; -} -.ant-carousel .slick-dots li { - position: relative; - display: inline-block; - flex: 0 1 auto; - box-sizing: content-box; - width: 16px; - height: 3px; - margin: 0 4px; - padding: 0; - text-align: center; - text-indent: -999px; - vertical-align: top; - transition: all 0.5s; -} -.ant-carousel .slick-dots li button { - position: relative; - display: block; - width: 100%; - height: 3px; - padding: 0; - color: transparent; - font-size: 0; - background: #fff; - border: 0; - border-radius: 1px; - outline: none; - cursor: pointer; - opacity: 0.3; - transition: all 0.5s; -} -.ant-carousel .slick-dots li button:hover, -.ant-carousel .slick-dots li button:focus { - opacity: 0.75; -} -.ant-carousel .slick-dots li button::after { - position: absolute; - top: -4px; - right: -4px; - bottom: -4px; - left: -4px; - content: ''; -} -.ant-carousel .slick-dots li.slick-active { - width: 24px; + top: 0; + pointer-events: none; + opacity: 0; + z-index: -1000; } -.ant-carousel .slick-dots li.slick-active button { - background: #fff; - opacity: 1; +.swiper-container-fade.swiper-container-free-mode .swiper-slide { + transition-timing-function: ease-out; } -.ant-carousel .slick-dots li.slick-active:hover, -.ant-carousel .slick-dots li.slick-active:focus { - opacity: 1; +.swiper-container-fade .swiper-slide { + pointer-events: none; + transition-property: opacity; } -.ant-carousel-vertical .slick-dots { - top: 50%; - bottom: auto; - flex-direction: column; - width: 3px; - height: auto; - margin: 0; - transform: translateY(-50%); +.swiper-container-fade .swiper-slide .swiper-slide { + pointer-events: none; } -.ant-carousel-vertical .slick-dots-left { - right: auto; - left: 12px; +.swiper-container-fade .swiper-slide-active, +.swiper-container-fade .swiper-slide-active .swiper-slide-active { + pointer-events: auto; } -.ant-carousel-vertical .slick-dots-right { - right: 12px; - left: auto; +.swiper-container-cube { + overflow: visible; } -.ant-carousel-vertical .slick-dots li { - width: 3px; - height: 16px; - margin: 4px 0; - vertical-align: baseline; +.swiper-container-cube .swiper-slide { + pointer-events: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + z-index: 1; + visibility: hidden; + transform-origin: 0 0; + width: 100%; + height: 100%; } -.ant-carousel-vertical .slick-dots li button { - width: 3px; - height: 16px; +.swiper-container-cube .swiper-slide .swiper-slide { + pointer-events: none; } -.ant-carousel-vertical .slick-dots li.slick-active { - width: 3px; - height: 24px; +.swiper-container-cube.swiper-container-rtl .swiper-slide { + transform-origin: 100% 0; } -.ant-carousel-vertical .slick-dots li.slick-active button { - width: 3px; - height: 24px; +.swiper-container-cube .swiper-slide-active, +.swiper-container-cube .swiper-slide-active .swiper-slide-active { + pointer-events: auto; } -.ant-carousel-rtl { - direction: rtl; +.swiper-container-cube .swiper-slide-active, +.swiper-container-cube .swiper-slide-next, +.swiper-container-cube .swiper-slide-prev, +.swiper-container-cube .swiper-slide-next + .swiper-slide { + pointer-events: auto; + visibility: visible; } -.ant-carousel-rtl .ant-carousel .slick-track { - right: 0; - left: auto; +.swiper-container-cube .swiper-slide-shadow-top, +.swiper-container-cube .swiper-slide-shadow-bottom, +.swiper-container-cube .swiper-slide-shadow-left, +.swiper-container-cube .swiper-slide-shadow-right { + z-index: 0; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } -.ant-carousel-rtl .ant-carousel .slick-prev { - right: -25px; - left: auto; +.swiper-container-cube .swiper-cube-shadow { + position: absolute; + left: 0; + bottom: 0px; + width: 100%; + height: 100%; + background: #000; + opacity: 0.6; + filter: blur(50px); + z-index: 0; } -.ant-carousel-rtl .ant-carousel .slick-prev::before { - content: '→'; +.swiper-container-flip { + overflow: visible; } -.ant-carousel-rtl .ant-carousel .slick-next { - right: auto; - left: -25px; +.swiper-container-flip .swiper-slide { + pointer-events: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + z-index: 1; } -.ant-carousel-rtl .ant-carousel .slick-next::before { - content: '←'; +.swiper-container-flip .swiper-slide .swiper-slide { + pointer-events: none; } -.ant-carousel-rtl.ant-carousel .slick-dots { - flex-direction: row-reverse; +.swiper-container-flip .swiper-slide-active, +.swiper-container-flip .swiper-slide-active .swiper-slide-active { + pointer-events: auto; } -.ant-carousel-rtl.ant-carousel-vertical .slick-dots { - flex-direction: column; +.swiper-container-flip .swiper-slide-shadow-top, +.swiper-container-flip .swiper-slide-shadow-bottom, +.swiper-container-flip .swiper-slide-shadow-left, +.swiper-container-flip .swiper-slide-shadow-right { + z-index: 0; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/pagination/style/index.less ***! + \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ - -/*!***************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[2]!./node_modules/swiper/css/swiper.css ***! - \***************************************************************************************************************************************************************************************************************************************/ -/** - * Swiper 5.4.5 - * Most modern mobile touch slider and framework with hardware accelerated transitions - * http://swiperjs.com - * - * Copyright 2014-2020 Vladimir Kharlampidi - * - * Released under the MIT License - * - * Released on: June 16, 2020 - */ - -@font-face { - font-family: 'swiper-icons'; - src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff"); - font-weight: 400; - font-style: normal; -} -:root { - --swiper-theme-color: #007aff; -} -.swiper-container { - margin-left: auto; - margin-right: auto; - position: relative; - overflow: hidden; - list-style: none; +.ant-pagination { + box-sizing: border-box; + margin: 0; padding: 0; - /* Fix of Webkit flickering */ - z-index: 1; -} -.swiper-container-vertical > .swiper-wrapper { - flex-direction: column; -} -.swiper-wrapper { - position: relative; - width: 100%; - height: 100%; - z-index: 1; - display: flex; - transition-property: transform; - box-sizing: content-box; -} -.swiper-container-android .swiper-slide, -.swiper-wrapper { - transform: translate3d(0px, 0, 0); + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; } -.swiper-container-multirow > .swiper-wrapper { - flex-wrap: wrap; +.ant-pagination ul, +.ant-pagination ol { + margin: 0; + padding: 0; + list-style: none; } -.swiper-container-multirow-column > .swiper-wrapper { - flex-wrap: wrap; - flex-direction: column; +.ant-pagination::after { + display: block; + clear: both; + height: 0; + overflow: hidden; + visibility: hidden; + content: ' '; } -.swiper-container-free-mode > .swiper-wrapper { - transition-timing-function: ease-out; - margin: 0 auto; +.ant-pagination-total-text { + display: inline-block; + height: 28px; + margin-right: 8px; + line-height: 26px; + vertical-align: middle; } -.swiper-slide { - flex-shrink: 0; - width: 100%; - height: 100%; - position: relative; - transition-property: transform; +.ant-pagination-item { + display: inline-block; + min-width: 28px; + height: 28px; + margin-right: 8px; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; + line-height: 26px; + text-align: center; + vertical-align: middle; + list-style: none; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 2px; + outline: 0; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } -.swiper-slide-invisible-blank { - visibility: hidden; +.ant-pagination-item a { + display: block; + padding: 0 6px; + color: rgba(0, 0, 0, 0.85); + transition: none; } -/* Auto Height */ -.swiper-container-autoheight, -.swiper-container-autoheight .swiper-slide { - height: auto; +.ant-pagination-item a:hover { + text-decoration: none; } -.swiper-container-autoheight .swiper-wrapper { - align-items: flex-start; - transition-property: transform, height; +.ant-pagination-item:hover { + border-color: #3061D0; + transition: all 0.3s; } -/* 3D Effects */ -.swiper-container-3d { - perspective: 1200px; +.ant-pagination-item:hover a { + color: #3061D0; } -.swiper-container-3d .swiper-wrapper, -.swiper-container-3d .swiper-slide, -.swiper-container-3d .swiper-slide-shadow-left, -.swiper-container-3d .swiper-slide-shadow-right, -.swiper-container-3d .swiper-slide-shadow-top, -.swiper-container-3d .swiper-slide-shadow-bottom, -.swiper-container-3d .swiper-cube-shadow { - transform-style: preserve-3d; +.ant-pagination-item:focus-visible { + border-color: #3061D0; + transition: all 0.3s; } -.swiper-container-3d .swiper-slide-shadow-left, -.swiper-container-3d .swiper-slide-shadow-right, -.swiper-container-3d .swiper-slide-shadow-top, -.swiper-container-3d .swiper-slide-shadow-bottom { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - pointer-events: none; - z-index: 10; +.ant-pagination-item:focus-visible a { + color: #3061D0; } -.swiper-container-3d .swiper-slide-shadow-left { - background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); +.ant-pagination-item-active { + font-weight: 500; + background: #fff; + border-color: #3061D0; } -.swiper-container-3d .swiper-slide-shadow-right { - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); +.ant-pagination-item-active a { + color: #3061D0; } -.swiper-container-3d .swiper-slide-shadow-top { - background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); +.ant-pagination-item-active:hover { + border-color: #5784de; } -.swiper-container-3d .swiper-slide-shadow-bottom { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); +.ant-pagination-item-active:focus-visible { + border-color: #5784de; } -/* CSS Mode */ -.swiper-container-css-mode > .swiper-wrapper { - overflow: auto; - scrollbar-width: none; - /* For Firefox */ - -ms-overflow-style: none; - /* For Internet Explorer and Edge */ +.ant-pagination-item-active:hover a { + color: #5784de; } -.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar { - display: none; +.ant-pagination-item-active:focus-visible a { + color: #5784de; } -.swiper-container-css-mode > .swiper-wrapper > .swiper-slide { - scroll-snap-align: start start; +.ant-pagination-jump-prev, +.ant-pagination-jump-next { + outline: 0; } -.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper { - -webkit-scroll-snap-type: x mandatory; - -ms-scroll-snap-type: x mandatory; - scroll-snap-type: x mandatory; +.ant-pagination-jump-prev .ant-pagination-item-container, +.ant-pagination-jump-next .ant-pagination-item-container { + position: relative; } -.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper { - -webkit-scroll-snap-type: y mandatory; - -ms-scroll-snap-type: y mandatory; - scroll-snap-type: y mandatory; +.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon, +.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon { + color: #3061D0; + font-size: 12px; + letter-spacing: -1px; + opacity: 0; + transition: all 0.2s; } -:root { - --swiper-navigation-size: 44px; - /* - --swiper-navigation-color: var(--swiper-theme-color); - */ +.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg, +.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg { + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; } -.swiper-button-prev, -.swiper-button-next { +.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis, +.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis { position: absolute; - top: 50%; - width: calc(44px / 44 * 27); - width: calc(var(--swiper-navigation-size) / 44 * 27); - height: 44px; - height: var(--swiper-navigation-size); - margin-top: calc(-1 * 44px / 2); - margin-top: calc(-1 * var(--swiper-navigation-size) / 2); - z-index: 10; - cursor: pointer; - display: flex; - align-items: center; - justify-content: center; - color: #007aff; - color: var(--swiper-navigation-color, var(--swiper-theme-color)); -} -.swiper-button-prev.swiper-button-disabled, -.swiper-button-next.swiper-button-disabled { - opacity: 0.35; - cursor: auto; - pointer-events: none; -} -.swiper-button-prev:after, -.swiper-button-next:after { - font-family: swiper-icons; - font-size: 44px; - font-size: var(--swiper-navigation-size); - text-transform: none !important; - letter-spacing: 0; - text-transform: none; - font-feature-settings: ; - font-variant: normal; - font-variant: initial; - line-height: 1; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: block; + margin: auto; + color: rgba(0, 0, 0, 0.25); + font-family: Arial, Helvetica, sans-serif; + letter-spacing: 2px; + text-align: center; + text-indent: 0.13em; + opacity: 1; + transition: all 0.2s; } -.swiper-button-prev, -.swiper-container-rtl .swiper-button-next { - left: 10px; - right: auto; +.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon, +.ant-pagination-jump-next:hover .ant-pagination-item-link-icon { + opacity: 1; } -.swiper-button-prev:after, -.swiper-container-rtl .swiper-button-next:after { - content: 'prev'; +.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis, +.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis { + opacity: 0; } -.swiper-button-next, -.swiper-container-rtl .swiper-button-prev { - right: 10px; - left: auto; +.ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon, +.ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon { + opacity: 1; } -.swiper-button-next:after, -.swiper-container-rtl .swiper-button-prev:after { - content: 'next'; +.ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis, +.ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis { + opacity: 0; } -.swiper-button-prev.swiper-button-white, -.swiper-button-next.swiper-button-white { - --swiper-navigation-color: #ffffff; +.ant-pagination-prev, +.ant-pagination-jump-prev, +.ant-pagination-jump-next { + margin-right: 8px; } -.swiper-button-prev.swiper-button-black, -.swiper-button-next.swiper-button-black { - --swiper-navigation-color: #000000; +.ant-pagination-prev, +.ant-pagination-next, +.ant-pagination-jump-prev, +.ant-pagination-jump-next { + display: inline-block; + min-width: 28px; + height: 28px; + color: rgba(0, 0, 0, 0.85); + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; + line-height: 28px; + text-align: center; + vertical-align: middle; + list-style: none; + border-radius: 2px; + cursor: pointer; + transition: all 0.3s; } -.swiper-button-lock { - display: none; +.ant-pagination-prev, +.ant-pagination-next { + font-family: Arial, Helvetica, sans-serif; + outline: 0; } -:root { - /* - --swiper-pagination-color: var(--swiper-theme-color); - */ +.ant-pagination-prev button, +.ant-pagination-next button { + color: rgba(0, 0, 0, 0.85); + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } -.swiper-pagination { - position: absolute; +.ant-pagination-prev:hover button, +.ant-pagination-next:hover button { + border-color: #5784de; +} +.ant-pagination-prev .ant-pagination-item-link, +.ant-pagination-next .ant-pagination-item-link { + display: block; + width: 100%; + height: 100%; + padding: 0; + font-size: 12px; text-align: center; - transition: 300ms opacity; - transform: translate3d(0, 0, 0); - z-index: 10; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 2px; + outline: none; + transition: all 0.3s; } -.swiper-pagination.swiper-pagination-hidden { - opacity: 0; +.ant-pagination-prev:focus-visible .ant-pagination-item-link, +.ant-pagination-next:focus-visible .ant-pagination-item-link { + color: #3061D0; + border-color: #3061D0; } -/* Common Styles */ -.swiper-pagination-fraction, -.swiper-pagination-custom, -.swiper-container-horizontal > .swiper-pagination-bullets { - bottom: 10px; - left: 0; - width: 100%; +.ant-pagination-prev:hover .ant-pagination-item-link, +.ant-pagination-next:hover .ant-pagination-item-link { + color: #3061D0; + border-color: #3061D0; } -/* Bullets */ -.swiper-pagination-bullets-dynamic { - overflow: hidden; - font-size: 0; +.ant-pagination-disabled, +.ant-pagination-disabled:hover { + cursor: not-allowed; } -.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { - transform: scale(0.33); - position: relative; +.ant-pagination-disabled .ant-pagination-item-link, +.ant-pagination-disabled:hover .ant-pagination-item-link { + color: rgba(0, 0, 0, 0.25); + border-color: #d9d9d9; + cursor: not-allowed; } -.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active { - transform: scale(1); +.ant-pagination-disabled:focus-visible { + cursor: not-allowed; } -.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main { - transform: scale(1); +.ant-pagination-disabled:focus-visible .ant-pagination-item-link { + color: rgba(0, 0, 0, 0.25); + border-color: #d9d9d9; + cursor: not-allowed; } -.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev { - transform: scale(0.66); +.ant-pagination-slash { + margin: 0 10px 0 5px; } -.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev { - transform: scale(0.33); +.ant-pagination-options { + display: inline-block; + margin-left: 16px; + vertical-align: middle; } -.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next { - transform: scale(0.66); +@media all and (-ms-high-contrast: none) { + .ant-pagination-options *::-ms-backdrop, + .ant-pagination-options { + vertical-align: top; + } } -.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next { - transform: scale(0.33); +.ant-pagination-options-size-changer.ant-select { + display: inline-block; + width: auto; } -.swiper-pagination-bullet { - width: 8px; - height: 8px; +.ant-pagination-options-quick-jumper { display: inline-block; - border-radius: 100%; - background: #000; - opacity: 0.2; + height: 28px; + margin-left: 4px; + line-height: 28px; + vertical-align: top; } -button.swiper-pagination-bullet { - border: none; - margin: 0; - padding: 0; - box-shadow: none; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; +.ant-pagination-options-quick-jumper input { + position: relative; + display: inline-block; + width: 100%; + min-width: 0; + padding: 3px 7px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + line-height: 1.66667; + background-color: #fff; + background-image: none; + border: 1px solid #d9d9d9; + border-radius: 2px; + transition: all 0.3s; + width: 50px; + height: 28px; + margin: 0 8px; } -.swiper-pagination-clickable .swiper-pagination-bullet { - cursor: pointer; +.ant-pagination-options-quick-jumper input::-webkit-input-placeholder { + color: #bfbfbf; + -webkit-user-select: none; + user-select: none; } -.swiper-pagination-bullet-active { - opacity: 1; - background: #007aff; - background: var(--swiper-pagination-color, var(--swiper-theme-color)); +.ant-pagination-options-quick-jumper input:-ms-input-placeholder { + color: #bfbfbf; + -ms-user-select: none; + user-select: none; } -.swiper-container-vertical > .swiper-pagination-bullets { - right: 10px; - top: 50%; - transform: translate3d(0px, -50%, 0); +.ant-pagination-options-quick-jumper input::-ms-input-placeholder { + color: #bfbfbf; + -ms-user-select: none; + user-select: none; } -.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet { - margin: 6px 0; - display: block; +.ant-pagination-options-quick-jumper input::placeholder { + color: #bfbfbf; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } -.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic { - top: 50%; - transform: translateY(-50%); - width: 8px; +.ant-pagination-options-quick-jumper input:-ms-input-placeholder { + text-overflow: ellipsis; } -.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { - display: inline-block; - transition: 200ms transform, 200ms top; +.ant-pagination-options-quick-jumper input:placeholder-shown { + text-overflow: ellipsis; } -.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet { - margin: 0 4px; +.ant-pagination-options-quick-jumper input:hover { + border-color: #5784de; + border-right-width: 1px; } -.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic { - left: 50%; - transform: translateX(-50%); - white-space: nowrap; +.ant-pagination-options-quick-jumper input:focus, +.ant-pagination-options-quick-jumper input-focused { + border-color: #5784de; + box-shadow: 0 0 0 2px rgba(48, 97, 208, 0.2); + border-right-width: 1px; + outline: 0; } -.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { - transition: 200ms transform, 200ms left; +.ant-pagination-options-quick-jumper input-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + box-shadow: none; + cursor: not-allowed; + opacity: 1; } -.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet { - transition: 200ms transform, 200ms right; +.ant-pagination-options-quick-jumper input-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px; } -/* Progress */ -.swiper-pagination-progressbar { - background: rgba(0, 0, 0, 0.25); - position: absolute; +.ant-pagination-options-quick-jumper input[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + box-shadow: none; + cursor: not-allowed; + opacity: 1; } -.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { - background: #007aff; - background: var(--swiper-pagination-color, var(--swiper-theme-color)); - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - transform: scale(0); - transform-origin: left top; +.ant-pagination-options-quick-jumper input[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px; +} +.ant-pagination-options-quick-jumper input-borderless, +.ant-pagination-options-quick-jumper input-borderless:hover, +.ant-pagination-options-quick-jumper input-borderless:focus, +.ant-pagination-options-quick-jumper input-borderless-focused, +.ant-pagination-options-quick-jumper input-borderless-disabled, +.ant-pagination-options-quick-jumper input-borderless[disabled] { + background-color: transparent; + border: none; + box-shadow: none; } -.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill { - transform-origin: right top; +textarea.ant-pagination-options-quick-jumper input { + max-width: 100%; + height: auto; + min-height: 28px; + line-height: 1.66667; + vertical-align: bottom; + transition: all 0.3s, height 0s; } -.swiper-container-horizontal > .swiper-pagination-progressbar, -.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite { - width: 100%; - height: 4px; - left: 0; - top: 0; +.ant-pagination-options-quick-jumper input-lg { + padding: 3.4px 11px; + font-size: 14px; } -.swiper-container-vertical > .swiper-pagination-progressbar, -.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite { - width: 4px; +.ant-pagination-options-quick-jumper input-sm { + padding: 0px 7px; +} +.ant-pagination-simple .ant-pagination-prev, +.ant-pagination-simple .ant-pagination-next { + height: 22px; + line-height: 22px; + vertical-align: top; +} +.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link, +.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link { + height: 22px; + background-color: transparent; + border: 0; +} +.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after, +.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after { + height: 22px; + line-height: 22px; +} +.ant-pagination-simple .ant-pagination-simple-pager { + display: inline-block; + height: 22px; + margin-right: 8px; +} +.ant-pagination-simple .ant-pagination-simple-pager input { + box-sizing: border-box; height: 100%; - left: 0; - top: 0; + margin-right: 8px; + padding: 0 6px; + text-align: center; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 2px; + outline: none; + transition: border-color 0.3s; } -.swiper-pagination-white { - --swiper-pagination-color: #ffffff; +.ant-pagination-simple .ant-pagination-simple-pager input:hover { + border-color: #3061D0; } -.swiper-pagination-black { - --swiper-pagination-color: #000000; +.ant-pagination-simple .ant-pagination-simple-pager input:focus { + border-color: #5784de; + box-shadow: 0 0 0 2px rgba(48, 97, 208, 0.2); } -.swiper-pagination-lock { - display: none; +.ant-pagination-simple .ant-pagination-simple-pager input[disabled] { + color: rgba(0, 0, 0, 0.25); + background: #f5f5f5; + border-color: #d9d9d9; + cursor: not-allowed; } -/* Scrollbar */ -.swiper-scrollbar { - border-radius: 10px; - position: relative; - -ms-touch-action: none; - background: rgba(0, 0, 0, 0.1); +.ant-pagination.ant-pagination-mini .ant-pagination-total-text, +.ant-pagination.ant-pagination-mini .ant-pagination-simple-pager { + height: 22px; + line-height: 22px; } -.swiper-container-horizontal > .swiper-scrollbar { - position: absolute; - left: 1%; - bottom: 3px; - z-index: 50; - height: 5px; - width: 98%; +.ant-pagination.ant-pagination-mini .ant-pagination-item { + min-width: 22px; + height: 22px; + margin: 0; + line-height: 20px; } -.swiper-container-vertical > .swiper-scrollbar { - position: absolute; - right: 3px; - top: 1%; - z-index: 50; - width: 5px; - height: 98%; +.ant-pagination.ant-pagination-mini .ant-pagination-item:not(.ant-pagination-item-active) { + background: transparent; + border-color: transparent; } -.swiper-scrollbar-drag { - height: 100%; - width: 100%; - position: relative; - background: rgba(0, 0, 0, 0.5); - border-radius: 10px; - left: 0; - top: 0; +.ant-pagination.ant-pagination-mini .ant-pagination-prev, +.ant-pagination.ant-pagination-mini .ant-pagination-next { + min-width: 22px; + height: 22px; + margin: 0; + line-height: 22px; } -.swiper-scrollbar-cursor-drag { - cursor: move; +.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link, +.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link { + background: transparent; + border-color: transparent; } -.swiper-scrollbar-lock { - display: none; +.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link::after, +.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link::after { + height: 22px; + line-height: 22px; } -.swiper-zoom-container { - width: 100%; - height: 100%; - display: flex; - justify-content: center; - align-items: center; - text-align: center; +.ant-pagination.ant-pagination-mini .ant-pagination-jump-prev, +.ant-pagination.ant-pagination-mini .ant-pagination-jump-next { + height: 22px; + margin-right: 0; + line-height: 22px; } -.swiper-zoom-container > img, -.swiper-zoom-container > svg, -.swiper-zoom-container > canvas { - max-width: 100%; - max-height: 100%; - object-fit: contain; +.ant-pagination.ant-pagination-mini .ant-pagination-options { + margin-left: 2px; } -.swiper-slide-zoomed { - cursor: move; +.ant-pagination.ant-pagination-mini .ant-pagination-options-size-changer { + top: 1px; } -/* Preloader */ -:root { - /* - --swiper-preloader-color: var(--swiper-theme-color); - */ +.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper { + height: 22px; + line-height: 22px; } -.swiper-lazy-preloader { - width: 42px; - height: 42px; - position: absolute; - left: 50%; - top: 50%; - margin-left: -21px; - margin-top: -21px; - z-index: 10; - transform-origin: 50%; - animation: swiper-preloader-spin 1s infinite linear; - box-sizing: border-box; - border: 4px solid #007aff; - border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color)); - border-radius: 50%; - border-top-color: transparent; +.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper input { + padding: 0px 7px; + width: 44px; + height: 22px; } -.swiper-lazy-preloader-white { - --swiper-preloader-color: #fff; +.ant-pagination.ant-pagination-disabled { + cursor: not-allowed; } -.swiper-lazy-preloader-black { - --swiper-preloader-color: #000; +.ant-pagination.ant-pagination-disabled .ant-pagination-item { + background: #f5f5f5; + border-color: #d9d9d9; + cursor: not-allowed; } -@keyframes swiper-preloader-spin { - 100% { - transform: rotate(360deg); - } +.ant-pagination.ant-pagination-disabled .ant-pagination-item a { + color: rgba(0, 0, 0, 0.25); + background: transparent; + border: none; + cursor: not-allowed; } -/* a11y */ -.swiper-container .swiper-notification { - position: absolute; - left: 0; - top: 0; - pointer-events: none; - opacity: 0; - z-index: -1000; +.ant-pagination.ant-pagination-disabled .ant-pagination-item-active { + background: #e6e6e6; } -.swiper-container-fade.swiper-container-free-mode .swiper-slide { - transition-timing-function: ease-out; +.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a { + color: rgba(0, 0, 0, 0.25); } -.swiper-container-fade .swiper-slide { - pointer-events: none; - transition-property: opacity; +.ant-pagination.ant-pagination-disabled .ant-pagination-item-link { + color: rgba(0, 0, 0, 0.25); + background: #f5f5f5; + border-color: #d9d9d9; + cursor: not-allowed; } -.swiper-container-fade .swiper-slide .swiper-slide { - pointer-events: none; +.ant-pagination-simple.ant-pagination.ant-pagination-disabled .ant-pagination-item-link { + background: transparent; } -.swiper-container-fade .swiper-slide-active, -.swiper-container-fade .swiper-slide-active .swiper-slide-active { - pointer-events: auto; +.ant-pagination.ant-pagination-disabled .ant-pagination-item-link-icon { + opacity: 0; } -.swiper-container-cube { - overflow: visible; +.ant-pagination.ant-pagination-disabled .ant-pagination-item-ellipsis { + opacity: 1; } -.swiper-container-cube .swiper-slide { - pointer-events: none; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - z-index: 1; - visibility: hidden; - transform-origin: 0 0; - width: 100%; - height: 100%; +.ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager { + color: rgba(0, 0, 0, 0.25); } -.swiper-container-cube .swiper-slide .swiper-slide { - pointer-events: none; +@media only screen and (max-width: 992px) { + .ant-pagination-item-after-jump-prev, + .ant-pagination-item-before-jump-next { + display: none; + } } -.swiper-container-cube.swiper-container-rtl .swiper-slide { - transform-origin: 100% 0; +@media only screen and (max-width: 576px) { + .ant-pagination-options { + display: none; + } } -.swiper-container-cube .swiper-slide-active, -.swiper-container-cube .swiper-slide-active .swiper-slide-active { - pointer-events: auto; +.ant-pagination-rtl .ant-pagination-total-text { + margin-right: 0; + margin-left: 8px; } -.swiper-container-cube .swiper-slide-active, -.swiper-container-cube .swiper-slide-next, -.swiper-container-cube .swiper-slide-prev, -.swiper-container-cube .swiper-slide-next + .swiper-slide { - pointer-events: auto; - visibility: visible; +.ant-pagination-rtl .ant-pagination-item, +.ant-pagination-rtl .ant-pagination-prev, +.ant-pagination-rtl .ant-pagination-jump-prev, +.ant-pagination-rtl .ant-pagination-jump-next { + margin-right: 0; + margin-left: 8px; } -.swiper-container-cube .swiper-slide-shadow-top, -.swiper-container-cube .swiper-slide-shadow-bottom, -.swiper-container-cube .swiper-slide-shadow-left, -.swiper-container-cube .swiper-slide-shadow-right { - z-index: 0; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; +.ant-pagination-rtl .ant-pagination-slash { + margin: 0 5px 0 10px; } -.swiper-container-cube .swiper-cube-shadow { - position: absolute; - left: 0; - bottom: 0px; - width: 100%; - height: 100%; - background: #000; - opacity: 0.6; - filter: blur(50px); - z-index: 0; +.ant-pagination-rtl .ant-pagination-options { + margin-right: 16px; + margin-left: 0; } -.swiper-container-flip { - overflow: visible; +.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-size-changer.ant-select { + margin-right: 0; + margin-left: 8px; } -.swiper-container-flip .swiper-slide { - pointer-events: none; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - z-index: 1; +.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-quick-jumper { + margin-left: 0; } -.swiper-container-flip .swiper-slide .swiper-slide { - pointer-events: none; +.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager { + margin-right: 0; + margin-left: 8px; } -.swiper-container-flip .swiper-slide-active, -.swiper-container-flip .swiper-slide-active .swiper-slide-active { - pointer-events: auto; +.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager input { + margin-right: 0; + margin-left: 8px; } -.swiper-container-flip .swiper-slide-shadow-top, -.swiper-container-flip .swiper-slide-shadow-bottom, -.swiper-container-flip .swiper-slide-shadow-left, -.swiper-container-flip .swiper-slide-shadow-right { - z-index: 0; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; +.ant-pagination-rtl.ant-pagination.mini .ant-pagination-options { + margin-right: 2px; + margin-left: 0; } +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ /*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/progress/style/index.less ***! @@ -1528,6 +1407,135 @@ button.swiper-pagination-bullet { /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/divider/style/index.less ***! + \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-divider { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + border-top: 1px solid rgba(0, 0, 0, 0.06); +} +.ant-divider-vertical { + position: relative; + top: -0.06em; + display: inline-block; + height: 0.9em; + margin: 0 8px; + vertical-align: middle; + border-top: 0; + border-left: 1px solid rgba(0, 0, 0, 0.06); +} +.ant-divider-horizontal { + display: flex; + clear: both; + width: 100%; + min-width: 100%; + margin: 24px 0; +} +.ant-divider-horizontal.ant-divider-with-text { + display: flex; + align-items: center; + margin: 16px 0; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 14px; + white-space: nowrap; + text-align: center; + border-top: 0; + border-top-color: rgba(0, 0, 0, 0.06); +} +.ant-divider-horizontal.ant-divider-with-text::before, +.ant-divider-horizontal.ant-divider-with-text::after { + position: relative; + width: 50%; + border-top: 1px solid transparent; + border-top-color: inherit; + border-bottom: 0; + transform: translateY(50%); + content: ''; +} +.ant-divider-horizontal.ant-divider-with-text-left::before { + width: 5%; +} +.ant-divider-horizontal.ant-divider-with-text-left::after { + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::before { + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::after { + width: 5%; +} +.ant-divider-inner-text { + display: inline-block; + padding: 0 1em; +} +.ant-divider-dashed { + background: none; + border-color: rgba(0, 0, 0, 0.06); + border-style: dashed; + border-width: 1px 0 0; +} +.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before, +.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after { + border-style: dashed none none; +} +.ant-divider-vertical.ant-divider-dashed { + border-width: 0 0 0 1px; +} +.ant-divider-plain.ant-divider-with-text { + color: rgba(0, 0, 0, 0.85); + font-weight: normal; + font-size: 12px; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before { + width: 0; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after { + width: 100%; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text { + padding-left: 0; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before { + width: 100%; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after { + width: 0; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text { + padding-right: 0; +} +.ant-divider-rtl { + direction: rtl; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before { + width: 95%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after { + width: 5%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before { + width: 5%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after { + width: 95%; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + /*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/tag/style/index.less ***! \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ diff --git a/30707.async.js b/30707.async.js index 1915a4a788..1580bb2c58 100644 --- a/30707.async.js +++ b/30707.async.js @@ -107,6 +107,7 @@ function Addteans(_ref) { personname = _useState2[0], setpersonname = _useState2[1]; return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z, { + className: "modal_styles", centered: true, title: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("div", { style: { @@ -145,13 +146,15 @@ function Addteans(_ref) { children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("span", { style: { fontSize: '14px', - color: '#F73737' + color: '#F73737', + marginLeft: '10px' }, children: "*" }), "\u961F\u540D\uFF1A", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("p", { style: { marginTop: '15px', - marginLeft: '15px' + marginLeft: '10px', + marginRight: '10px' }, children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(antd_es_input__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z, { placeholder: "请输入队名", @@ -208,6 +211,7 @@ function Jointeam(_ref) { code = _useState2[0], setCode = _useState2[1]; return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z, { + className: "modal_styles", centered: true, title: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("div", { style: { @@ -245,10 +249,10 @@ function Jointeam(_ref) { children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("div", { children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("p", { style: { - marginTop: '15px', - marginLeft: '15px', + marginLeft: '10px', display: 'flex', - alignItems: 'center' + alignItems: 'center', + marginRight: '10px' }, children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("span", { style: { diff --git a/32925.async.js b/32925.async.js index ac2eba1381..26d1923a73 100644 --- a/32925.async.js +++ b/32925.async.js @@ -245,7 +245,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -618,8 +618,8 @@ var _umi_production_exports = __webpack_require__(89214); var mediator = __webpack_require__(91562); // EXTERNAL MODULE: ./src/pages/tasks/left-panel/discuss/service.js var service = __webpack_require__(7387); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); // EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js var jsx_runtime = __webpack_require__(85893); ;// CONCATENATED MODULE: ./src/pages/tasks/left-panel/discuss/components/AiAnswer.tsx diff --git a/35574.async.js b/35574.async.js index 580a291137..8aa31e31b2 100644 --- a/35574.async.js +++ b/35574.async.js @@ -104,7 +104,7 @@ var reNameFile = /*#__PURE__*/(/* unused pure expression or super */ null && (fu // .catch(e => console.log(e)); })["catch"](function (e) { console.log(e); - debugger; + // debugger }); })); case 7: @@ -362,7 +362,7 @@ var UploadFile = function UploadFile(_ref4) { console.log("err:", err); }); } catch (e) { - debugger; + // debugger } })); case 19: diff --git a/37110.async.js b/37110.async.js index 0ab6e22fc0..786761a022 100644 --- a/37110.async.js +++ b/37110.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/66728.async.js b/4476.async.js similarity index 99% rename from 66728.async.js rename to 4476.async.js index 2c9df2c8d0..0dc44b7a32 100644 --- a/66728.async.js +++ b/4476.async.js @@ -1,9 +1,9 @@ "use strict"; -(self["webpackChunk"] = self["webpackChunk"] || []).push([[66728],{ +(self["webpackChunk"] = self["webpackChunk"] || []).push([[4476],{ -/***/ 44190: +/***/ 51647: /*!*********************************************************!*\ - !*** ./src/components/ImagesIcon/index.ts + 31 modules ***! + !*** ./src/components/ImagesIcon/index.ts + 32 modules ***! \*********************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { @@ -14,6 +14,7 @@ __webpack_require__.d(__webpack_exports__, { "xp": function() { return /* reexport */ anony_namespaceObject; }, "AG": function() { return /* reexport */ blibli_namespaceObject; }, "JA": function() { return /* reexport */ chrome_namespaceObject; }, + "FX": function() { return /* reexport */ cjjs_namespaceObject; }, "k$": function() { return /* reexport */ done1_namespaceObject; }, "ub": function() { return /* reexport */ done2_namespaceObject; }, "e6": function() { return /* reexport */ done3_namespaceObject; }, @@ -219,6 +220,8 @@ var done3_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAA var icons_qrCode_namespaceObject = "data:image/png;base64,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"; // EXTERNAL MODULE: ./src/assets/images/user/qrcode.png var qrcode = __webpack_require__(53114); +;// CONCATENATED MODULE: ./src/assets/images/cjjs.png +var cjjs_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAA61JREFUOE+FkmtMW2UYx//ntKcXygotpbaAoxQarhYKkwEb3QhRxgbOITNOTZzOZRedCcq+zMRgjLqocTHq/EKYRk10SK2wwSaEMEaVYVOLjI1OIBWwFNpISy/Qc9oeM5Iuytj2fHqfy/vL//++D4F10bIfPJk8XqMQU+luV0S66FoRF2gi3FRZXIjkUF55Ms81t8za/766aH+6HZHYdSJ2OHcQAikJangB7zXuVhwnuQLyypATc3MMqrdFoVZSCNEUCoqywJACxvC95ZjTwXQUFcFf1YLwGshpeGjvhHXhTXdAyCx5QZSXJZXTER5+7p3GvBN4XA+oFEAoQEBbsQUsJcbVS7+NBBiGm8Bd9VRuS36dYM0llGvebzMYbJ1RaebX0WXP2cqtolJSKMWlTivss0DtDkClBJggB9qaGjCEAL0dlm5SSDaNDs98uL8u0Uqw7HnO0sAZk/HbkbGe1sjRhArUHX0+1ZiYkY0L3/TDNgXsrgIylABL85BX3wCfxx89+/aF3L2lsA/9Keiqf27rlTVr7Pwr+dO/XOvqOG8zjE/4zh14KtGaX1XJ7f6qG+axCOqqAHUKwCNF0DzxLP4aven4/eKQLl4iPZ2r1+Wkbdc9eeex2ZmXUuwTMx85pyaV4xZHVt2h2rQh4wAuD3ixZyeQoQCSZalQVDdgtL1zdJNc4o+TJQ0qq7XvEMSZlTugNWUtIO2F6rdMw8GmkmK5OBTm4ss2C/RbCGQpOdCU6kHzxOHrg9Zgqkq0T9Uw3n/X98cKrc2SAstYZLVw82pf/QF9utk0BYkwgmz1Jsh0xbj2Y3/XxUF/U4oS7PEvvNP3BMUaL5ahuEQrasvLUWr9Li+Rq02PzM0u9PZ0zx7+YABz6xf5f9bWN49th+QxvcLsdnvUeTmb+z5pvbWn/Qbo9XO38/uCbg/0nFZ9zAv7mxQPKw7lv3C9bSPIA0HNu3jaXWWU0eOlM3SZXFO/Fc8cbl25y9Y9QU3lEFJcVOhrUr7z/ROUhelV6LLjwPBlN8w/3Wr8w4bpTycR+q+6Da0156ElWUSeSstMpJwuH5KTeOBzAIojYpcdbjqeir7ReBmfPxB0MBXvHjn56KncwjTwlVIQLBCYXESIprE878JNo+XEvj58dl/Qy9lopGmcePXkDv0jOzWIUlwEp9wILPmQJBdidtIB6w8jnW4G7782gOEN96hWCnGRHOMkiwSBiAOhgAOWZREJR0GSAI9LgIxGASYKPh+/HjGhJgb6F36ZbPle9WMzAAAAAElFTkSuQmCC"; ;// CONCATENATED MODULE: ./src/components/ImagesIcon/index.ts @@ -254,6 +257,7 @@ var qrcode = __webpack_require__(53114); + // import x from ''; diff --git a/4525.async.js b/4525.async.js new file mode 100644 index 0000000000..22c8fa5c5a --- /dev/null +++ b/4525.async.js @@ -0,0 +1,2448 @@ +(self["webpackChunk"] = self["webpackChunk"] || []).push([[4525,77566],{ + +/***/ 50675: +/*!**********************************************************************!*\ + !*** ./node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js ***! + \**********************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var _babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread2 */ 1413); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var _ant_design_icons_svg_es_asn_CheckCircleFilled__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @ant-design/icons-svg/es/asn/CheckCircleFilled */ 72961); +/* harmony import */ var _components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../components/AntdIcon */ 7918); + +// GENERATE BY ./scripts/generate.ts +// DON NOT EDIT IT MANUALLY + + + +var CheckCircleFilled = function CheckCircleFilled(props, ref) { + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z, (0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)({}, props), {}, { + ref: ref, + icon: _ant_design_icons_svg_es_asn_CheckCircleFilled__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z + })); +}; +CheckCircleFilled.displayName = 'CheckCircleFilled'; +/* harmony default export */ __webpack_exports__["Z"] = (/*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(CheckCircleFilled)); + +/***/ }), + +/***/ 38900: +/*!**********************************************************************!*\ + !*** ./node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js ***! + \**********************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var _babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread2 */ 1413); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var _ant_design_icons_svg_es_asn_CloseCircleFilled__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @ant-design/icons-svg/es/asn/CloseCircleFilled */ 1085); +/* harmony import */ var _components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../components/AntdIcon */ 7918); + +// GENERATE BY ./scripts/generate.ts +// DON NOT EDIT IT MANUALLY + + + +var CloseCircleFilled = function CloseCircleFilled(props, ref) { + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z, (0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)({}, props), {}, { + ref: ref, + icon: _ant_design_icons_svg_es_asn_CloseCircleFilled__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z + })); +}; +CloseCircleFilled.displayName = 'CloseCircleFilled'; +/* harmony default export */ __webpack_exports__["Z"] = (/*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(CloseCircleFilled)); + +/***/ }), + +/***/ 87588: +/*!******************************************************************************!*\ + !*** ./node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.js ***! + \******************************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var _babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread2 */ 1413); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var _ant_design_icons_svg_es_asn_ExclamationCircleOutlined__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @ant-design/icons-svg/es/asn/ExclamationCircleOutlined */ 61144); +/* harmony import */ var _components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../components/AntdIcon */ 7918); + +// GENERATE BY ./scripts/generate.ts +// DON NOT EDIT IT MANUALLY + + + +var ExclamationCircleOutlined = function ExclamationCircleOutlined(props, ref) { + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components_AntdIcon__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z, (0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)({}, props), {}, { + ref: ref, + icon: _ant_design_icons_svg_es_asn_ExclamationCircleOutlined__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z + })); +}; +ExclamationCircleOutlined.displayName = 'ExclamationCircleOutlined'; +/* harmony default export */ __webpack_exports__["Z"] = (/*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(ExclamationCircleOutlined)); + +/***/ }), + +/***/ 81643: +/*!**********************************************************!*\ + !*** ./node_modules/antd/es/_util/getRenderPropValue.js ***! + \**********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "Z": function() { return /* binding */ getRenderPropValue; } +/* harmony export */ }); +var getRenderPropValue = function getRenderPropValue(propValue) { + if (!propValue) { + return null; + } + if (typeof propValue === 'function') { + return propValue(); + } + return propValue; +}; + +/***/ }), + +/***/ 48783: +/*!****************************************************************!*\ + !*** ./node_modules/antd/es/_util/throttleByAnimationFrame.js ***! + \****************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "U": function() { return /* binding */ throttleByAnimationFrameDecorator; }, +/* harmony export */ "t": function() { return /* binding */ throttleByAnimationFrame; } +/* harmony export */ }); +/* harmony import */ var _babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toConsumableArray */ 74902); +/* harmony import */ var rc_util_es_raf__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rc-util/es/raf */ 75164); + + +function throttleByAnimationFrame(fn) { + var requestId; + var later = function later(args) { + return function () { + requestId = null; + fn.apply(void 0, (0,_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(args)); + }; + }; + var throttled = function throttled() { + if (requestId == null) { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + requestId = (0,rc_util_es_raf__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(later(args)); + } + }; + throttled.cancel = function () { + rc_util_es_raf__WEBPACK_IMPORTED_MODULE_0__/* ["default"].cancel */ .Z.cancel(requestId); + requestId = null; + }; + return throttled; +} +function throttleByAnimationFrameDecorator() { + return function throttle(target, key, descriptor) { + var fn = descriptor.value; + var definingProperty = false; + return { + configurable: true, + get: function get() { + // In IE11 calling Object.defineProperty has a side-effect of evaluating the + // getter for the property which is being replaced. This causes infinite + // recursion and an "Out of stack space" error. + // eslint-disable-next-line no-prototype-builtins + if (definingProperty || this === target.prototype || this.hasOwnProperty(key)) { + /* istanbul ignore next */ + return fn; + } + var boundFn = throttleByAnimationFrame(fn.bind(this)); + definingProperty = true; + Object.defineProperty(this, key, { + value: boundFn, + configurable: true, + writable: true + }); + definingProperty = false; + return boundFn; + } + }; + }; +} + +/***/ }), + +/***/ 15771: +/*!*********************************************************!*\ + !*** ./node_modules/antd/es/affix/index.js + 1 modules ***! + \*********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ affix; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// 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); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js +var esm_typeof = __webpack_require__(71002); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/rc-resize-observer/es/index.js + 4 modules +var es = __webpack_require__(48555); +// EXTERNAL MODULE: ./node_modules/rc-util/es/omit.js +var omit = __webpack_require__(98423); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/_util/throttleByAnimationFrame.js +var throttleByAnimationFrame = __webpack_require__(48783); +// EXTERNAL MODULE: ./node_modules/rc-util/es/Dom/addEventListener.js +var addEventListener = __webpack_require__(64019); +;// CONCATENATED MODULE: ./node_modules/antd/es/affix/utils.js + +function getTargetRect(target) { + return target !== window ? target.getBoundingClientRect() : { + top: 0, + bottom: window.innerHeight + }; +} +function getFixedTop(placeholderReact, targetRect, offsetTop) { + if (offsetTop !== undefined && targetRect.top > placeholderReact.top - offsetTop) { + return offsetTop + targetRect.top; + } + return undefined; +} +function getFixedBottom(placeholderReact, targetRect, offsetBottom) { + if (offsetBottom !== undefined && targetRect.bottom < placeholderReact.bottom + offsetBottom) { + var targetBottomOffset = window.innerHeight - targetRect.bottom; + return offsetBottom + targetBottomOffset; + } + return undefined; +} +// ======================== Observer ======================== +var TRIGGER_EVENTS = ['resize', 'scroll', 'touchstart', 'touchmove', 'touchend', 'pageshow', 'load']; +var observerEntities = []; +function getObserverEntities() { + // Only used in test env. Can be removed if refactor. + return observerEntities; +} +function addObserveTarget(target, affix) { + if (!target) { + return; + } + var entity = observerEntities.find(function (item) { + return item.target === target; + }); + if (entity) { + entity.affixList.push(affix); + } else { + entity = { + target: target, + affixList: [affix], + eventHandlers: {} + }; + observerEntities.push(entity); + // Add listener + TRIGGER_EVENTS.forEach(function (eventName) { + entity.eventHandlers[eventName] = (0,addEventListener/* default */.Z)(target, eventName, function () { + entity.affixList.forEach(function (targetAffix) { + targetAffix.lazyUpdatePosition(); + }); + }); + }); + } +} +function removeObserveTarget(affix) { + var observerEntity = observerEntities.find(function (oriObserverEntity) { + var hasAffix = oriObserverEntity.affixList.some(function (item) { + return item === affix; + }); + if (hasAffix) { + oriObserverEntity.affixList = oriObserverEntity.affixList.filter(function (item) { + return item !== affix; + }); + } + return hasAffix; + }); + if (observerEntity && observerEntity.affixList.length === 0) { + observerEntities = observerEntities.filter(function (item) { + return item !== observerEntity; + }); + // Remove listener + TRIGGER_EVENTS.forEach(function (eventName) { + var handler = observerEntity.eventHandlers[eventName]; + if (handler && handler.remove) { + handler.remove(); + } + }); + } +} +;// CONCATENATED MODULE: ./node_modules/antd/es/affix/index.js + + + + + + + +var __decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) { + var c = arguments.length, + r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, + d; + if ((typeof Reflect === "undefined" ? "undefined" : (0,esm_typeof/* default */.Z)(Reflect)) === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; + return c > 3 && r && Object.defineProperty(target, key, r), r; +}; + + + + + + + +function getDefaultTarget() { + return typeof window !== 'undefined' ? window : null; +} +var AffixStatus; +(function (AffixStatus) { + AffixStatus[AffixStatus["None"] = 0] = "None"; + AffixStatus[AffixStatus["Prepare"] = 1] = "Prepare"; +})(AffixStatus || (AffixStatus = {})); +var Affix = /*#__PURE__*/function (_React$Component) { + (0,inherits/* default */.Z)(Affix, _React$Component); + var _super = (0,createSuper/* default */.Z)(Affix); + function Affix() { + var _this; + (0,classCallCheck/* default */.Z)(this, Affix); + _this = _super.apply(this, arguments); + _this.state = { + status: AffixStatus.None, + lastAffix: false, + prevTarget: null + }; + _this.getOffsetTop = function () { + var _this$props = _this.props, + offsetBottom = _this$props.offsetBottom, + offsetTop = _this$props.offsetTop; + return offsetBottom === undefined && offsetTop === undefined ? 0 : offsetTop; + }; + _this.getOffsetBottom = function () { + return _this.props.offsetBottom; + }; + _this.savePlaceholderNode = function (node) { + _this.placeholderNode = node; + }; + _this.saveFixedNode = function (node) { + _this.fixedNode = node; + }; + // =================== Measure =================== + _this.measure = function () { + var _this$state = _this.state, + status = _this$state.status, + lastAffix = _this$state.lastAffix; + var onChange = _this.props.onChange; + var targetFunc = _this.getTargetFunc(); + if (status !== AffixStatus.Prepare || !_this.fixedNode || !_this.placeholderNode || !targetFunc) { + return; + } + var offsetTop = _this.getOffsetTop(); + var offsetBottom = _this.getOffsetBottom(); + var targetNode = targetFunc(); + if (!targetNode) { + return; + } + var newState = { + status: AffixStatus.None + }; + var targetRect = getTargetRect(targetNode); + var placeholderReact = getTargetRect(_this.placeholderNode); + var fixedTop = getFixedTop(placeholderReact, targetRect, offsetTop); + var fixedBottom = getFixedBottom(placeholderReact, targetRect, offsetBottom); + if (placeholderReact.top === 0 && placeholderReact.left === 0 && placeholderReact.width === 0 && placeholderReact.height === 0) { + return; + } + if (fixedTop !== undefined) { + newState.affixStyle = { + position: 'fixed', + top: fixedTop, + width: placeholderReact.width, + height: placeholderReact.height + }; + newState.placeholderStyle = { + width: placeholderReact.width, + height: placeholderReact.height + }; + } else if (fixedBottom !== undefined) { + newState.affixStyle = { + position: 'fixed', + bottom: fixedBottom, + width: placeholderReact.width, + height: placeholderReact.height + }; + newState.placeholderStyle = { + width: placeholderReact.width, + height: placeholderReact.height + }; + } + newState.lastAffix = !!newState.affixStyle; + if (onChange && lastAffix !== newState.lastAffix) { + onChange(newState.lastAffix); + } + _this.setState(newState); + }; + // @ts-ignore TS6133 + _this.prepareMeasure = function () { + // event param is used before. Keep compatible ts define here. + _this.setState({ + status: AffixStatus.Prepare, + affixStyle: undefined, + placeholderStyle: undefined + }); + // Test if `updatePosition` called + if (false) { var onTestUpdatePosition; } + }; + return _this; + } + (0,createClass/* default */.Z)(Affix, [{ + key: "getTargetFunc", + value: function getTargetFunc() { + var getTargetContainer = this.context.getTargetContainer; + var target = this.props.target; + if (target !== undefined) { + return target; + } + return getTargetContainer !== null && getTargetContainer !== void 0 ? getTargetContainer : getDefaultTarget; + } + // Event handler + }, { + key: "componentDidMount", + value: function componentDidMount() { + var _this2 = this; + var targetFunc = this.getTargetFunc(); + if (targetFunc) { + // [Legacy] Wait for parent component ref has its value. + // We should use target as directly element instead of function which makes element check hard. + this.timeout = setTimeout(function () { + addObserveTarget(targetFunc(), _this2); + // Mock Event object. + _this2.updatePosition(); + }); + } + } + }, { + key: "componentDidUpdate", + value: function componentDidUpdate(prevProps) { + var prevTarget = this.state.prevTarget; + var targetFunc = this.getTargetFunc(); + var newTarget = (targetFunc === null || targetFunc === void 0 ? void 0 : targetFunc()) || null; + if (prevTarget !== newTarget) { + removeObserveTarget(this); + if (newTarget) { + addObserveTarget(newTarget, this); + // Mock Event object. + this.updatePosition(); + } + // eslint-disable-next-line react/no-did-update-set-state + this.setState({ + prevTarget: newTarget + }); + } + if (prevProps.offsetTop !== this.props.offsetTop || prevProps.offsetBottom !== this.props.offsetBottom) { + this.updatePosition(); + } + this.measure(); + } + }, { + key: "componentWillUnmount", + value: function componentWillUnmount() { + clearTimeout(this.timeout); + removeObserveTarget(this); + this.updatePosition.cancel(); + // https://github.com/ant-design/ant-design/issues/22683 + this.lazyUpdatePosition.cancel(); + } + // Handle realign logic + }, { + key: "updatePosition", + value: function updatePosition() { + this.prepareMeasure(); + } + }, { + key: "lazyUpdatePosition", + value: function lazyUpdatePosition() { + var targetFunc = this.getTargetFunc(); + var affixStyle = this.state.affixStyle; + // Check position change before measure to make Safari smooth + if (targetFunc && affixStyle) { + var offsetTop = this.getOffsetTop(); + var offsetBottom = this.getOffsetBottom(); + var targetNode = targetFunc(); + if (targetNode && this.placeholderNode) { + var targetRect = getTargetRect(targetNode); + var placeholderReact = getTargetRect(this.placeholderNode); + var fixedTop = getFixedTop(placeholderReact, targetRect, offsetTop); + var fixedBottom = getFixedBottom(placeholderReact, targetRect, offsetBottom); + if (fixedTop !== undefined && affixStyle.top === fixedTop || fixedBottom !== undefined && affixStyle.bottom === fixedBottom) { + return; + } + } + } + // Directly call prepare measure since it's already throttled. + this.prepareMeasure(); + } + // =================== Render =================== + }, { + key: "render", + value: function render() { + var _this3 = this; + var _this$state2 = this.state, + affixStyle = _this$state2.affixStyle, + placeholderStyle = _this$state2.placeholderStyle; + var _this$props2 = this.props, + affixPrefixCls = _this$props2.affixPrefixCls, + children = _this$props2.children; + var className = classnames_default()((0,defineProperty/* default */.Z)({}, affixPrefixCls, !!affixStyle)); + var props = (0,omit/* default */.Z)(this.props, ['prefixCls', 'offsetTop', 'offsetBottom', 'target', 'onChange', 'affixPrefixCls']); + // Omit this since `onTestUpdatePosition` only works on test. + if (false) {} + return /*#__PURE__*/react.createElement(es/* default */.Z, { + onResize: function onResize() { + _this3.updatePosition(); + } + }, /*#__PURE__*/react.createElement("div", (0,esm_extends/* default */.Z)({}, props, { + ref: this.savePlaceholderNode + }), affixStyle && /*#__PURE__*/react.createElement("div", { + style: placeholderStyle, + "aria-hidden": "true" + }), /*#__PURE__*/react.createElement("div", { + className: className, + ref: this.saveFixedNode, + style: affixStyle + }, /*#__PURE__*/react.createElement(es/* default */.Z, { + onResize: function onResize() { + _this3.updatePosition(); + } + }, children)))); + } + }]); + return Affix; +}(react.Component); +Affix.contextType = context/* ConfigContext */.E_; +__decorate([(0,throttleByAnimationFrame/* throttleByAnimationFrameDecorator */.U)()], Affix.prototype, "updatePosition", null); +__decorate([(0,throttleByAnimationFrame/* throttleByAnimationFrameDecorator */.U)()], Affix.prototype, "lazyUpdatePosition", null); +var AffixFC = /*#__PURE__*/react.forwardRef(function (props, ref) { + var customizePrefixCls = props.prefixCls; + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls; + var affixPrefixCls = getPrefixCls('affix', customizePrefixCls); + var affixProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, props), { + affixPrefixCls: affixPrefixCls + }); + return /*#__PURE__*/react.createElement(Affix, (0,esm_extends/* default */.Z)({}, affixProps, { + ref: ref + })); +}); +if (false) {} +/* harmony default export */ var affix = (AffixFC); + +/***/ }), + +/***/ 48283: +/*!***************************************************************!*\ + !*** ./node_modules/antd/es/affix/style/index.js + 1 modules ***! + \***************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/affix/style/index.less +// extracted by mini-css-extract-plugin + +;// CONCATENATED MODULE: ./node_modules/antd/es/affix/style/index.js + + + +/***/ }), + +/***/ 49288: +/*!*****************************************************!*\ + !*** ./node_modules/antd/es/auto-complete/index.js ***! + \*****************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 87462); +/* harmony import */ var _babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ 71002); +/* harmony import */ var _babel_runtime_helpers_esm_slicedToArray__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/esm/slicedToArray */ 97685); +/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! classnames */ 94184); +/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var rc_util_es_Children_toArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rc-util/es/Children/toArray */ 50344); +/* harmony import */ var rc_util_es_omit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rc-util/es/omit */ 98423); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var _config_provider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../config-provider */ 53124); +/* harmony import */ var _select__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../select */ 34041); +/* harmony import */ var _util_reactNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../_util/reactNode */ 96159); + + + +/** + * TODO: 4.0 + * + * - Remove `dataSource` + * - `size` not work with customizeInput + * - CustomizeInput not feedback `ENTER` key since accessibility enhancement + */ + + + + + + + + +var Option = _select__WEBPACK_IMPORTED_MODULE_3__/* ["default"].Option */ .Z.Option; +function isSelectOptionOrSelectOptGroup(child) { + return child && child.type && (child.type.isSelectOption || child.type.isSelectOptGroup); +} +var AutoComplete = function AutoComplete(props, ref) { + var customizePrefixCls = props.prefixCls, + className = props.className, + popupClassName = props.popupClassName, + dropdownClassName = props.dropdownClassName, + children = props.children, + dataSource = props.dataSource; + var childNodes = (0,rc_util_es_Children_toArray__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(children); + // ============================= Input ============================= + var customizeInput; + if (childNodes.length === 1 && (0,_util_reactNode__WEBPACK_IMPORTED_MODULE_4__/* .isValidElement */ .l$)(childNodes[0]) && !isSelectOptionOrSelectOptGroup(childNodes[0])) { + var _childNodes = (0,_babel_runtime_helpers_esm_slicedToArray__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z)(childNodes, 1); + customizeInput = _childNodes[0]; + } + var getInputElement = customizeInput ? function () { + return customizeInput; + } : undefined; + // ============================ Options ============================ + var optionChildren; + // [Legacy] convert `children` or `dataSource` into option children + if (childNodes.length && isSelectOptionOrSelectOptGroup(childNodes[0])) { + optionChildren = children; + } else { + optionChildren = dataSource ? dataSource.map(function (item) { + if ((0,_util_reactNode__WEBPACK_IMPORTED_MODULE_4__/* .isValidElement */ .l$)(item)) { + return item; + } + switch ((0,_babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z)(item)) { + case 'string': + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2__.createElement(Option, { + key: item, + value: item + }, item); + case 'object': + { + var optionValue = item.value; + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2__.createElement(Option, { + key: optionValue, + value: optionValue + }, item.text); + } + default: + false ? 0 : void 0; + return undefined; + } + }) : []; + } + false ? 0 : void 0; + false ? 0 : void 0; + false ? 0 : void 0; + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2__.createElement(_config_provider__WEBPACK_IMPORTED_MODULE_7__/* .ConfigConsumer */ .C, null, function (_ref) { + var getPrefixCls = _ref.getPrefixCls; + var prefixCls = getPrefixCls('select', customizePrefixCls); + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2__.createElement(_select__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .Z)({ + ref: ref + }, (0,rc_util_es_omit__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z)(props, ['dataSource']), { + prefixCls: prefixCls, + popupClassName: popupClassName || dropdownClassName, + className: classnames__WEBPACK_IMPORTED_MODULE_0___default()("".concat(prefixCls, "-auto-complete"), className), + mode: _select__WEBPACK_IMPORTED_MODULE_3__/* ["default"].SECRET_COMBOBOX_MODE_DO_NOT_USE */ .Z.SECRET_COMBOBOX_MODE_DO_NOT_USE + }, { + // Internal api + getInputElement: getInputElement + }), optionChildren); + }); +}; +var RefAutoComplete = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2__.forwardRef(AutoComplete); +RefAutoComplete.Option = Option; +/* harmony default export */ __webpack_exports__["Z"] = (RefAutoComplete); + +/***/ }), + +/***/ 19070: +/*!***********************************************************************!*\ + !*** ./node_modules/antd/es/auto-complete/style/index.js + 1 modules ***! + \***********************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/auto-complete/style/index.less +// extracted by mini-css-extract-plugin + +// EXTERNAL MODULE: ./node_modules/antd/es/select/style/index.js + 1 modules +var style = __webpack_require__(95985); +;// CONCATENATED MODULE: ./node_modules/antd/es/auto-complete/style/index.js + + +// style dependencies + + +/***/ }), + +/***/ 58492: +/*!**************************************************************!*\ + !*** ./node_modules/antd/es/breadcrumb/index.js + 3 modules ***! + \**************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ breadcrumb; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 2 modules +var toConsumableArray = __webpack_require__(74902); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/rc-util/es/Children/toArray.js +var toArray = __webpack_require__(50344); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/menu/index.js + 5 modules +var menu = __webpack_require__(66516); +// EXTERNAL MODULE: ./node_modules/antd/es/_util/reactNode.js +var reactNode = __webpack_require__(96159); +// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/DownOutlined.js +var DownOutlined = __webpack_require__(13622); +// EXTERNAL MODULE: ./node_modules/antd/es/dropdown/dropdown.js + 1 modules +var dropdown = __webpack_require__(18562); +;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/BreadcrumbItem.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; +}; + + + + + +var BreadcrumbItem = function BreadcrumbItem(props) { + var customizePrefixCls = props.prefixCls, + _props$separator = props.separator, + separator = _props$separator === void 0 ? '/' : _props$separator, + children = props.children, + menu = props.menu, + overlay = props.overlay, + dropdownProps = props.dropdownProps, + restProps = __rest(props, ["prefixCls", "separator", "children", "menu", "overlay", "dropdownProps"]); + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls; + var prefixCls = getPrefixCls('breadcrumb', customizePrefixCls); + // Warning for deprecated usage + if (false) {} + /** If overlay is have Wrap a Dropdown */ + var renderBreadcrumbNode = function renderBreadcrumbNode(breadcrumbItem) { + if (menu || overlay) { + return /*#__PURE__*/react.createElement(dropdown/* default */.Z, (0,esm_extends/* default */.Z)({ + menu: menu, + overlay: overlay, + placement: "bottom" + }, dropdownProps), /*#__PURE__*/react.createElement("span", { + className: "".concat(prefixCls, "-overlay-link") + }, breadcrumbItem, /*#__PURE__*/react.createElement(DownOutlined/* default */.Z, null))); + } + return breadcrumbItem; + }; + var link; + if ('href' in restProps) { + link = /*#__PURE__*/react.createElement("a", (0,esm_extends/* default */.Z)({ + className: "".concat(prefixCls, "-link") + }, restProps), children); + } else { + link = /*#__PURE__*/react.createElement("span", (0,esm_extends/* default */.Z)({ + className: "".concat(prefixCls, "-link") + }, restProps), children); + } + // wrap to dropDown + link = renderBreadcrumbNode(link); + if (children !== undefined && children !== null) { + return /*#__PURE__*/react.createElement("li", null, link, separator && /*#__PURE__*/react.createElement("span", { + className: "".concat(prefixCls, "-separator") + }, separator)); + } + return null; +}; +BreadcrumbItem.__ANT_BREADCRUMB_ITEM = true; +/* harmony default export */ var breadcrumb_BreadcrumbItem = (BreadcrumbItem); +;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/BreadcrumbSeparator.js + + +var BreadcrumbSeparator = function BreadcrumbSeparator(_ref) { + var children = _ref.children; + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls; + var prefixCls = getPrefixCls('breadcrumb'); + return /*#__PURE__*/react.createElement("span", { + className: "".concat(prefixCls, "-separator") + }, children || '/'); +}; +BreadcrumbSeparator.__ANT_BREADCRUMB_SEPARATOR = true; +/* harmony default export */ var breadcrumb_BreadcrumbSeparator = (BreadcrumbSeparator); +;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/Breadcrumb.js + + + +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; +}; + + + + + + + + + +function getBreadcrumbName(route, params) { + if (!route.breadcrumbName) { + return null; + } + var paramsKeys = Object.keys(params).join('|'); + var name = route.breadcrumbName.replace(new RegExp(":(".concat(paramsKeys, ")"), 'g'), function (replacement, key) { + return params[key] || replacement; + }); + return name; +} +function defaultItemRender(route, params, routes, paths) { + var isLastItem = routes.indexOf(route) === routes.length - 1; + var name = getBreadcrumbName(route, params); + return isLastItem ? /*#__PURE__*/react.createElement("span", null, name) : /*#__PURE__*/react.createElement("a", { + href: "#/".concat(paths.join('/')) + }, name); +} +var getPath = function getPath(path, params) { + path = (path || '').replace(/^\//, ''); + Object.keys(params).forEach(function (key) { + path = path.replace(":".concat(key), params[key]); + }); + return path; +}; +var addChildPath = function addChildPath(paths, childPath, params) { + var originalPaths = (0,toConsumableArray/* default */.Z)(paths); + var path = getPath(childPath || '', params); + if (path) { + originalPaths.push(path); + } + return originalPaths; +}; +var Breadcrumb = function Breadcrumb(_a) { + var customizePrefixCls = _a.prefixCls, + _a$separator = _a.separator, + separator = _a$separator === void 0 ? '/' : _a$separator, + style = _a.style, + className = _a.className, + routes = _a.routes, + children = _a.children, + _a$itemRender = _a.itemRender, + itemRender = _a$itemRender === void 0 ? defaultItemRender : _a$itemRender, + _a$params = _a.params, + params = _a$params === void 0 ? {} : _a$params, + restProps = Breadcrumb_rest(_a, ["prefixCls", "separator", "style", "className", "routes", "children", "itemRender", "params"]); + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var crumbs; + var prefixCls = getPrefixCls('breadcrumb', customizePrefixCls); + if (routes && routes.length > 0) { + // generated by route + var paths = []; + crumbs = routes.map(function (route) { + var path = getPath(route.path, params); + if (path) { + paths.push(path); + } + // generated overlay by route.children + var overlay; + if (route.children && route.children.length) { + overlay = /*#__PURE__*/react.createElement(menu/* default */.Z, { + items: route.children.map(function (child) { + return { + key: child.path || child.breadcrumbName, + label: itemRender(child, params, routes, addChildPath(paths, child.path, params)) + }; + }) + }); + } + var itemProps = { + separator: separator + }; + if (overlay) { + itemProps.overlay = overlay; + } + return /*#__PURE__*/react.createElement(breadcrumb_BreadcrumbItem, (0,esm_extends/* default */.Z)({}, itemProps, { + key: path || route.breadcrumbName + }), itemRender(route, params, routes, paths)); + }); + } else if (children) { + crumbs = (0,toArray/* default */.Z)(children).map(function (element, index) { + if (!element) { + return element; + } + false ? 0 : void 0; + return (0,reactNode/* cloneElement */.Tm)(element, { + separator: separator, + key: index + }); + }); + } + var breadcrumbClassName = classnames_default()(prefixCls, (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-rtl"), direction === 'rtl'), className); + return /*#__PURE__*/react.createElement("nav", (0,esm_extends/* default */.Z)({ + className: breadcrumbClassName, + style: style + }, restProps), /*#__PURE__*/react.createElement("ol", null, crumbs)); +}; +Breadcrumb.Item = breadcrumb_BreadcrumbItem; +Breadcrumb.Separator = breadcrumb_BreadcrumbSeparator; +/* harmony default export */ var breadcrumb_Breadcrumb = (Breadcrumb); +;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/index.js + +/* harmony default export */ var breadcrumb = (breadcrumb_Breadcrumb); + +/***/ }), + +/***/ 63102: +/*!********************************************************************!*\ + !*** ./node_modules/antd/es/breadcrumb/style/index.js + 1 modules ***! + \********************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/style/index.less +// extracted by mini-css-extract-plugin + +// EXTERNAL MODULE: ./node_modules/antd/es/dropdown/style/index.js + 1 modules +var style = __webpack_require__(68018); +// EXTERNAL MODULE: ./node_modules/antd/es/menu/style/index.js + 1 modules +var menu_style = __webpack_require__(83736); +;// CONCATENATED MODULE: ./node_modules/antd/es/breadcrumb/style/index.js + + +// style dependencies + + + +/***/ }), + +/***/ 27049: +/*!***********************************************!*\ + !*** ./node_modules/antd/es/divider/index.js ***! + \***********************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 87462); +/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ 4942); +/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! classnames */ 94184); +/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var _config_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../config-provider */ 53124); + + +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; +}; + + + + +var Divider = function Divider(props) { + var _classNames; + var _React$useContext = react__WEBPACK_IMPORTED_MODULE_1__.useContext(_config_provider__WEBPACK_IMPORTED_MODULE_2__/* .ConfigContext */ .E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var customizePrefixCls = props.prefixCls, + _props$type = props.type, + type = _props$type === void 0 ? 'horizontal' : _props$type, + _props$orientation = props.orientation, + orientation = _props$orientation === void 0 ? 'center' : _props$orientation, + orientationMargin = props.orientationMargin, + className = props.className, + children = props.children, + dashed = props.dashed, + plain = props.plain, + restProps = __rest(props, ["prefixCls", "type", "orientation", "orientationMargin", "className", "children", "dashed", "plain"]); + var prefixCls = getPrefixCls('divider', customizePrefixCls); + var orientationPrefix = orientation.length > 0 ? "-".concat(orientation) : orientation; + var hasChildren = !!children; + var hasCustomMarginLeft = orientation === 'left' && orientationMargin != null; + var hasCustomMarginRight = orientation === 'right' && orientationMargin != null; + var classString = classnames__WEBPACK_IMPORTED_MODULE_0___default()(prefixCls, "".concat(prefixCls, "-").concat(type), (_classNames = {}, (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-with-text"), hasChildren), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-with-text").concat(orientationPrefix), hasChildren), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-dashed"), !!dashed), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-plain"), !!plain), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-no-default-orientation-margin-left"), hasCustomMarginLeft), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-no-default-orientation-margin-right"), hasCustomMarginRight), _classNames), className); + var innerStyle = (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)({}, hasCustomMarginLeft && { + marginLeft: orientationMargin + }), hasCustomMarginRight && { + marginRight: orientationMargin + }); + // Warning children not work in vertical mode + if (false) {} + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)({ + className: classString + }, restProps, { + role: "separator" + }), children && type !== 'vertical' && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", { + className: "".concat(prefixCls, "-inner-text"), + style: innerStyle + }, children)); +}; +/* harmony default export */ __webpack_exports__["Z"] = (Divider); + +/***/ }), + +/***/ 98541: +/*!*****************************************************************!*\ + !*** ./node_modules/antd/es/divider/style/index.js + 1 modules ***! + \*****************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/divider/style/index.less +// extracted by mini-css-extract-plugin + +;// CONCATENATED MODULE: ./node_modules/antd/es/divider/style/index.js + + + +/***/ }), + +/***/ 55241: +/*!***********************************************!*\ + !*** ./node_modules/antd/es/popover/index.js ***! + \***********************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 87462); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var _config_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../config-provider */ 53124); +/* harmony import */ var _tooltip__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../tooltip */ 84908); +/* harmony import */ var _util_getRenderPropValue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../_util/getRenderPropValue */ 81643); +/* harmony import */ var _util_motion__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../_util/motion */ 33603); + +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; +}; + + + + + +var Overlay = function Overlay(_ref) { + var title = _ref.title, + content = _ref.content, + prefixCls = _ref.prefixCls; + if (!title && !content) { + return null; + } + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(react__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, title && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { + className: "".concat(prefixCls, "-title") + }, (0,_util_getRenderPropValue__WEBPACK_IMPORTED_MODULE_1__/* .getRenderPropValue */ .Z)(title)), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { + className: "".concat(prefixCls, "-inner-content") + }, (0,_util_getRenderPropValue__WEBPACK_IMPORTED_MODULE_1__/* .getRenderPropValue */ .Z)(content))); +}; +var Popover = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(function (props, ref) { + var customizePrefixCls = props.prefixCls, + title = props.title, + content = props.content, + _overlay = props._overlay, + _props$placement = props.placement, + placement = _props$placement === void 0 ? 'top' : _props$placement, + _props$trigger = props.trigger, + trigger = _props$trigger === void 0 ? 'hover' : _props$trigger, + _props$mouseEnterDela = props.mouseEnterDelay, + mouseEnterDelay = _props$mouseEnterDela === void 0 ? 0.1 : _props$mouseEnterDela, + _props$mouseLeaveDela = props.mouseLeaveDelay, + mouseLeaveDelay = _props$mouseLeaveDela === void 0 ? 0.1 : _props$mouseLeaveDela, + _props$overlayStyle = props.overlayStyle, + overlayStyle = _props$overlayStyle === void 0 ? {} : _props$overlayStyle, + otherProps = __rest(props, ["prefixCls", "title", "content", "_overlay", "placement", "trigger", "mouseEnterDelay", "mouseLeaveDelay", "overlayStyle"]); + var _React$useContext = react__WEBPACK_IMPORTED_MODULE_0__.useContext(_config_provider__WEBPACK_IMPORTED_MODULE_2__/* .ConfigContext */ .E_), + getPrefixCls = _React$useContext.getPrefixCls; + var prefixCls = getPrefixCls('popover', customizePrefixCls); + var rootPrefixCls = getPrefixCls(); + return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_tooltip__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)({ + placement: placement, + trigger: trigger, + mouseEnterDelay: mouseEnterDelay, + mouseLeaveDelay: mouseLeaveDelay, + overlayStyle: overlayStyle + }, otherProps, { + prefixCls: prefixCls, + ref: ref, + overlay: _overlay || /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(Overlay, { + prefixCls: prefixCls, + title: title, + content: content + }), + transitionName: (0,_util_motion__WEBPACK_IMPORTED_MODULE_5__/* .getTransitionName */ .mL)(rootPrefixCls, 'zoom-big', otherProps.transitionName) + })); +}); +if (false) {} +/* harmony default export */ __webpack_exports__["Z"] = (Popover); + +/***/ }), + +/***/ 63942: +/*!*****************************************************************!*\ + !*** ./node_modules/antd/es/popover/style/index.js + 1 modules ***! + \*****************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/popover/style/index.less +// extracted by mini-css-extract-plugin + +;// CONCATENATED MODULE: ./node_modules/antd/es/popover/style/index.js + + +// style dependencies +// deps-lint-skip: tooltip + +/***/ }), + +/***/ 61460: +/*!********************************************************!*\ + !*** ./node_modules/antd/es/rate/index.js + 6 modules ***! + \********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ rate; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js +var objectSpread2 = __webpack_require__(1413); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/StarFilled.js +// This icon file is generated automatically. +var StarFilled = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 00.6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0046.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z" } }] }, "name": "star", "theme": "filled" }; +/* harmony default export */ var asn_StarFilled = (StarFilled); + +// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/components/AntdIcon.js + 3 modules +var AntdIcon = __webpack_require__(93771); +;// CONCATENATED MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/StarFilled.js + +// GENERATE BY ./scripts/generate.ts +// DON NOT EDIT IT MANUALLY + + + +var StarFilled_StarFilled = function StarFilled(props, ref) { + return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, { + ref: ref, + icon: asn_StarFilled + })); +}; +StarFilled_StarFilled.displayName = 'StarFilled'; +/* harmony default export */ var icons_StarFilled = (/*#__PURE__*/react.forwardRef(StarFilled_StarFilled)); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// 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); +// EXTERNAL MODULE: ./node_modules/rc-util/es/Dom/findDOMNode.js +var findDOMNode = __webpack_require__(34203); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/rc-util/es/KeyCode.js +var KeyCode = __webpack_require__(15105); +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/util.js +function getScroll(w) { + var ret = w.pageXOffset; + var method = 'scrollLeft'; + + if (typeof ret !== 'number') { + var d = w.document; // ie6,7,8 standard mode + + ret = d.documentElement[method]; + + if (typeof ret !== 'number') { + // quirks mode + ret = d.body[method]; + } + } + + return ret; +} + +function getClientPosition(elem) { + var x; + var y; + var doc = elem.ownerDocument; + var body = doc.body; + var docElem = doc && doc.documentElement; + var box = elem.getBoundingClientRect(); + x = box.left; + y = box.top; + x -= docElem.clientLeft || body.clientLeft || 0; + y -= docElem.clientTop || body.clientTop || 0; + return { + left: x, + top: y + }; +} + +function getOffsetLeft(el) { + var pos = getClientPosition(el); + var doc = el.ownerDocument; // Only IE use `parentWindow` + + var w = doc.defaultView || doc.parentWindow; + pos.left += getScroll(w); + return pos.left; +} +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/Star.js + + + + + + +var Star = /*#__PURE__*/function (_React$Component) { + (0,inherits/* default */.Z)(Star, _React$Component); + + var _super = (0,createSuper/* default */.Z)(Star); + + function Star() { + var _this; + + (0,classCallCheck/* default */.Z)(this, Star); + + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + _this = _super.call.apply(_super, [this].concat(args)); + + _this.onHover = function (e) { + var _this$props = _this.props, + onHover = _this$props.onHover, + index = _this$props.index; + onHover(e, index); + }; + + _this.onClick = function (e) { + var _this$props2 = _this.props, + onClick = _this$props2.onClick, + index = _this$props2.index; + onClick(e, index); + }; + + _this.onKeyDown = function (e) { + var _this$props3 = _this.props, + onClick = _this$props3.onClick, + index = _this$props3.index; + + if (e.keyCode === 13) { + onClick(e, index); + } + }; + + return _this; + } + + (0,createClass/* default */.Z)(Star, [{ + key: "getClassName", + value: function getClassName() { + var _this$props4 = this.props, + prefixCls = _this$props4.prefixCls, + index = _this$props4.index, + value = _this$props4.value, + allowHalf = _this$props4.allowHalf, + focused = _this$props4.focused; + var starValue = index + 1; + var className = prefixCls; + + if (value === 0 && index === 0 && focused) { + className += " ".concat(prefixCls, "-focused"); + } else if (allowHalf && value + 0.5 >= starValue && value < starValue) { + className += " ".concat(prefixCls, "-half ").concat(prefixCls, "-active"); + + if (focused) { + className += " ".concat(prefixCls, "-focused"); + } + } else { + className += starValue <= value ? " ".concat(prefixCls, "-full") : " ".concat(prefixCls, "-zero"); + + if (starValue === value && focused) { + className += " ".concat(prefixCls, "-focused"); + } + } + + return className; + } + }, { + key: "render", + value: function render() { + var onHover = this.onHover, + onClick = this.onClick, + onKeyDown = this.onKeyDown; + var _this$props5 = this.props, + disabled = _this$props5.disabled, + prefixCls = _this$props5.prefixCls, + character = _this$props5.character, + characterRender = _this$props5.characterRender, + index = _this$props5.index, + count = _this$props5.count, + value = _this$props5.value; + var characterNode = typeof character === 'function' ? character(this.props) : character; + var start = /*#__PURE__*/react.createElement("li", { + className: this.getClassName() + }, /*#__PURE__*/react.createElement("div", { + onClick: disabled ? null : onClick, + onKeyDown: disabled ? null : onKeyDown, + onMouseMove: disabled ? null : onHover, + role: "radio", + "aria-checked": value > index ? 'true' : 'false', + "aria-posinset": index + 1, + "aria-setsize": count, + tabIndex: disabled ? -1 : 0 + }, /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-first") + }, characterNode), /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-second") + }, characterNode))); + + if (characterRender) { + start = characterRender(start, this.props); + } + + return start; + } + }]); + + return Star; +}(react.Component); + + +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/Rate.js + + + + + + + + + + + + + +function noop() {} + +var Rate = /*#__PURE__*/function (_React$Component) { + (0,inherits/* default */.Z)(Rate, _React$Component); + + var _super = (0,createSuper/* default */.Z)(Rate); + + function Rate(props) { + var _this; + + (0,classCallCheck/* default */.Z)(this, Rate); + + _this = _super.call(this, props); + _this.stars = void 0; + _this.rate = void 0; + + _this.onHover = function (event, index) { + var onHoverChange = _this.props.onHoverChange; + + var hoverValue = _this.getStarValue(index, event.pageX); + + var cleanedValue = _this.state.cleanedValue; + + if (hoverValue !== cleanedValue) { + _this.setState({ + hoverValue: hoverValue, + cleanedValue: null + }); + } + + onHoverChange(hoverValue); + }; + + _this.onMouseLeave = function () { + var onHoverChange = _this.props.onHoverChange; + + _this.setState({ + hoverValue: undefined, + cleanedValue: null + }); + + onHoverChange(undefined); + }; + + _this.onClick = function (event, index) { + var allowClear = _this.props.allowClear; + var value = _this.state.value; + + var newValue = _this.getStarValue(index, event.pageX); + + var isReset = false; + + if (allowClear) { + isReset = newValue === value; + } + + _this.onMouseLeave(); + + _this.changeValue(isReset ? 0 : newValue); + + _this.setState({ + cleanedValue: isReset ? newValue : null + }); + }; + + _this.onFocus = function () { + var onFocus = _this.props.onFocus; + + _this.setState({ + focused: true + }); + + if (onFocus) { + onFocus(); + } + }; + + _this.onBlur = function () { + var onBlur = _this.props.onBlur; + + _this.setState({ + focused: false + }); + + if (onBlur) { + onBlur(); + } + }; + + _this.onKeyDown = function (event) { + var keyCode = event.keyCode; + var _this$props = _this.props, + count = _this$props.count, + allowHalf = _this$props.allowHalf, + onKeyDown = _this$props.onKeyDown, + direction = _this$props.direction; + var reverse = direction === 'rtl'; + var value = _this.state.value; + + if (keyCode === KeyCode/* default.RIGHT */.Z.RIGHT && value < count && !reverse) { + if (allowHalf) { + value += 0.5; + } else { + value += 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } else if (keyCode === KeyCode/* default.LEFT */.Z.LEFT && value > 0 && !reverse) { + if (allowHalf) { + value -= 0.5; + } else { + value -= 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } else if (keyCode === KeyCode/* default.RIGHT */.Z.RIGHT && value > 0 && reverse) { + if (allowHalf) { + value -= 0.5; + } else { + value -= 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } else if (keyCode === KeyCode/* default.LEFT */.Z.LEFT && value < count && reverse) { + if (allowHalf) { + value += 0.5; + } else { + value += 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } + + if (onKeyDown) { + onKeyDown(event); + } + }; + + _this.saveRef = function (index) { + return function (node) { + _this.stars[index] = node; + }; + }; + + _this.saveRate = function (node) { + _this.rate = node; + }; + + var _value = props.value; + + if (_value === undefined) { + _value = props.defaultValue; + } + + _this.stars = {}; + _this.state = { + value: _value, + focused: false, + cleanedValue: null + }; + return _this; + } + + (0,createClass/* default */.Z)(Rate, [{ + key: "componentDidMount", + value: function componentDidMount() { + var _this$props2 = this.props, + autoFocus = _this$props2.autoFocus, + disabled = _this$props2.disabled; + + if (autoFocus && !disabled) { + this.focus(); + } + } + }, { + key: "getStarDOM", + value: function getStarDOM(index) { + return (0,findDOMNode/* default */.Z)(this.stars[index]); + } + }, { + key: "getStarValue", + value: function getStarValue(index, x) { + var _this$props3 = this.props, + allowHalf = _this$props3.allowHalf, + direction = _this$props3.direction; + var reverse = direction === 'rtl'; + var value = index + 1; + + if (allowHalf) { + var starEle = this.getStarDOM(index); + var leftDis = getOffsetLeft(starEle); + var width = starEle.clientWidth; + + if (reverse && x - leftDis > width / 2) { + value -= 0.5; + } else if (!reverse && x - leftDis < width / 2) { + value -= 0.5; + } + } + + return value; + } + }, { + key: "focus", + value: function focus() { + var disabled = this.props.disabled; + + if (!disabled) { + this.rate.focus(); + } + } + }, { + key: "blur", + value: function blur() { + var disabled = this.props.disabled; + + if (!disabled) { + this.rate.blur(); + } + } + }, { + key: "changeValue", + value: function changeValue(value) { + var onChange = this.props.onChange; + + if (!('value' in this.props)) { + this.setState({ + value: value + }); + } + + onChange(value); + } + }, { + key: "render", + value: function render() { + var _this$props4 = this.props, + count = _this$props4.count, + allowHalf = _this$props4.allowHalf, + style = _this$props4.style, + prefixCls = _this$props4.prefixCls, + disabled = _this$props4.disabled, + className = _this$props4.className, + character = _this$props4.character, + characterRender = _this$props4.characterRender, + tabIndex = _this$props4.tabIndex, + direction = _this$props4.direction; + var _this$state = this.state, + value = _this$state.value, + hoverValue = _this$state.hoverValue, + focused = _this$state.focused; + var stars = []; + var disabledClass = disabled ? "".concat(prefixCls, "-disabled") : ''; + + for (var index = 0; index < count; index += 1) { + stars.push( /*#__PURE__*/react.createElement(Star, { + ref: this.saveRef(index), + index: index, + count: count, + disabled: disabled, + prefixCls: "".concat(prefixCls, "-star"), + allowHalf: allowHalf, + value: hoverValue === undefined ? value : hoverValue, + onClick: this.onClick, + onHover: this.onHover, + key: index, + character: character, + characterRender: characterRender, + focused: focused + })); + } + + var rateClassName = classnames_default()(prefixCls, disabledClass, className, (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-rtl"), direction === 'rtl')); + return /*#__PURE__*/react.createElement("ul", { + className: rateClassName, + style: style, + onMouseLeave: disabled ? null : this.onMouseLeave, + tabIndex: disabled ? -1 : tabIndex, + onFocus: disabled ? null : this.onFocus, + onBlur: disabled ? null : this.onBlur, + onKeyDown: disabled ? null : this.onKeyDown, + ref: this.saveRate, + role: "radiogroup" + }, stars); + } + }], [{ + key: "getDerivedStateFromProps", + value: function getDerivedStateFromProps(nextProps, state) { + if ('value' in nextProps && nextProps.value !== undefined) { + return (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, state), {}, { + value: nextProps.value + }); + } + + return state; + } + }]); + + return Rate; +}(react.Component); + +Rate.defaultProps = { + defaultValue: 0, + count: 5, + allowHalf: false, + allowClear: true, + style: {}, + prefixCls: 'rc-rate', + onChange: noop, + character: '★', + onHoverChange: noop, + tabIndex: 0, + direction: 'ltr' +}; +/* harmony default export */ var es_Rate = (Rate); +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/index.js + +/* harmony default export */ var es = (es_Rate); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules +var tooltip = __webpack_require__(84908); +;// CONCATENATED MODULE: ./node_modules/antd/es/rate/index.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; +}; + + + + + +var rate_Rate = /*#__PURE__*/react.forwardRef(function (props, ref) { + var prefixCls = props.prefixCls, + tooltips = props.tooltips, + _props$character = props.character, + character = _props$character === void 0 ? /*#__PURE__*/react.createElement(icons_StarFilled, null) : _props$character, + rest = __rest(props, ["prefixCls", "tooltips", "character"]); + var characterRender = function characterRender(node, _ref) { + var index = _ref.index; + if (!tooltips) { + return node; + } + return /*#__PURE__*/react.createElement(tooltip/* default */.Z, { + title: tooltips[index] + }, node); + }; + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var ratePrefixCls = getPrefixCls('rate', prefixCls); + return /*#__PURE__*/react.createElement(es, (0,esm_extends/* default */.Z)({ + ref: ref, + character: character, + characterRender: characterRender + }, rest, { + prefixCls: ratePrefixCls, + direction: direction + })); +}); +if (false) {} +/* harmony default export */ var rate = (rate_Rate); + +/***/ }), + +/***/ 50936: +/*!**************************************************************!*\ + !*** ./node_modules/antd/es/rate/style/index.js + 1 modules ***! + \**************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/rate/style/index.less +// extracted by mini-css-extract-plugin + +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules +var style = __webpack_require__(38390); +;// CONCATENATED MODULE: ./node_modules/antd/es/rate/style/index.js + + +// style dependencies + + +/***/ }), + +/***/ 20640: +/*!*************************************************!*\ + !*** ./node_modules/copy-to-clipboard/index.js ***! + \*************************************************/ +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var deselectCurrent = __webpack_require__(/*! toggle-selection */ 11742); + +var clipboardToIE11Formatting = { + "text/plain": "Text", + "text/html": "Url", + "default": "Text" +} + +var defaultMessage = "Copy to clipboard: #{key}, Enter"; + +function format(message) { + var copyKey = (/mac os x/i.test(navigator.userAgent) ? "⌘" : "Ctrl") + "+C"; + return message.replace(/#{\s*key\s*}/g, copyKey); +} + +function copy(text, options) { + var debug, + message, + reselectPrevious, + range, + selection, + mark, + success = false; + if (!options) { + options = {}; + } + debug = options.debug || false; + try { + reselectPrevious = deselectCurrent(); + + range = document.createRange(); + selection = document.getSelection(); + + mark = document.createElement("span"); + mark.textContent = text; + // avoid screen readers from reading out loud the text + mark.ariaHidden = "true" + // reset user styles for span element + mark.style.all = "unset"; + // prevents scrolling to the end of the page + mark.style.position = "fixed"; + mark.style.top = 0; + mark.style.clip = "rect(0, 0, 0, 0)"; + // used to preserve spaces and line breaks + mark.style.whiteSpace = "pre"; + // do not inherit user-select (it may be `none`) + mark.style.webkitUserSelect = "text"; + mark.style.MozUserSelect = "text"; + mark.style.msUserSelect = "text"; + mark.style.userSelect = "text"; + mark.addEventListener("copy", function(e) { + e.stopPropagation(); + if (options.format) { + e.preventDefault(); + if (typeof e.clipboardData === "undefined") { // IE 11 + debug && console.warn("unable to use e.clipboardData"); + debug && console.warn("trying IE specific stuff"); + window.clipboardData.clearData(); + var format = clipboardToIE11Formatting[options.format] || clipboardToIE11Formatting["default"] + window.clipboardData.setData(format, text); + } else { // all other browsers + e.clipboardData.clearData(); + e.clipboardData.setData(options.format, text); + } + } + if (options.onCopy) { + e.preventDefault(); + options.onCopy(e.clipboardData); + } + }); + + document.body.appendChild(mark); + + range.selectNodeContents(mark); + selection.addRange(range); + + var successful = document.execCommand("copy"); + if (!successful) { + throw new Error("copy command was unsuccessful"); + } + success = true; + } catch (err) { + debug && console.error("unable to copy using execCommand: ", err); + debug && console.warn("trying IE specific stuff"); + try { + window.clipboardData.setData(options.format || "text", text); + options.onCopy && options.onCopy(window.clipboardData); + success = true; + } catch (err) { + debug && console.error("unable to copy using clipboardData: ", err); + debug && console.error("falling back to prompt"); + message = format("message" in options ? options.message : defaultMessage); + window.prompt(message, text); + } + } finally { + if (selection) { + if (typeof selection.removeRange == "function") { + selection.removeRange(range); + } else { + selection.removeAllRanges(); + } + } + + if (mark) { + document.body.removeChild(mark); + } + reselectPrevious(); + } + + return success; +} + +module.exports = copy; + + +/***/ }), + +/***/ 74300: +/*!***************************************************************!*\ + !*** ./node_modules/react-copy-to-clipboard/lib/Component.js ***! + \***************************************************************/ +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", ({ + value: true +})); +exports.CopyToClipboard = void 0; + +var _react = _interopRequireDefault(__webpack_require__(/*! react */ 67294)); + +var _copyToClipboard = _interopRequireDefault(__webpack_require__(/*! copy-to-clipboard */ 20640)); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + +function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + +function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } + +function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +var CopyToClipboard = +/*#__PURE__*/ +function (_React$PureComponent) { + _inherits(CopyToClipboard, _React$PureComponent); + + function CopyToClipboard() { + var _getPrototypeOf2; + + var _this; + + _classCallCheck(this, CopyToClipboard); + + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(CopyToClipboard)).call.apply(_getPrototypeOf2, [this].concat(args))); + + _defineProperty(_assertThisInitialized(_this), "onClick", function (event) { + var _this$props = _this.props, + text = _this$props.text, + onCopy = _this$props.onCopy, + children = _this$props.children, + options = _this$props.options; + + var elem = _react["default"].Children.only(children); + + var result = (0, _copyToClipboard["default"])(text, options); + + if (onCopy) { + onCopy(text, result); + } // Bypass onClick if it was present + + + if (elem && elem.props && typeof elem.props.onClick === 'function') { + elem.props.onClick(event); + } + }); + + return _this; + } + + _createClass(CopyToClipboard, [{ + key: "render", + value: function render() { + var _this$props2 = this.props, + _text = _this$props2.text, + _onCopy = _this$props2.onCopy, + _options = _this$props2.options, + children = _this$props2.children, + props = _objectWithoutProperties(_this$props2, ["text", "onCopy", "options", "children"]); + + var elem = _react["default"].Children.only(children); + + return _react["default"].cloneElement(elem, _objectSpread({}, props, { + onClick: this.onClick + })); + } + }]); + + return CopyToClipboard; +}(_react["default"].PureComponent); + +exports.CopyToClipboard = CopyToClipboard; + +_defineProperty(CopyToClipboard, "defaultProps", { + onCopy: undefined, + options: undefined +}); + +/***/ }), + +/***/ 74855: +/*!***********************************************************!*\ + !*** ./node_modules/react-copy-to-clipboard/lib/index.js ***! + \***********************************************************/ +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var _require = __webpack_require__(/*! ./Component */ 74300), + CopyToClipboard = _require.CopyToClipboard; + +CopyToClipboard.CopyToClipboard = CopyToClipboard; +module.exports = CopyToClipboard; + +/***/ }), + +/***/ 57761: +/*!*********************************************************************!*\ + !*** ./node_modules/react-infinite-scroller/dist/InfiniteScroll.js ***! + \*********************************************************************/ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", ({ + value: true +})); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _react = __webpack_require__(/*! react */ 67294); + +var _react2 = _interopRequireDefault(_react); + +var _propTypes = __webpack_require__(/*! prop-types */ 45697); + +var _propTypes2 = _interopRequireDefault(_propTypes); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var InfiniteScroll = function (_Component) { + _inherits(InfiniteScroll, _Component); + + function InfiniteScroll(props) { + _classCallCheck(this, InfiniteScroll); + + var _this = _possibleConstructorReturn(this, (InfiniteScroll.__proto__ || Object.getPrototypeOf(InfiniteScroll)).call(this, props)); + + _this.scrollListener = _this.scrollListener.bind(_this); + _this.eventListenerOptions = _this.eventListenerOptions.bind(_this); + _this.mousewheelListener = _this.mousewheelListener.bind(_this); + return _this; + } + + _createClass(InfiniteScroll, [{ + key: 'componentDidMount', + value: function componentDidMount() { + this.pageLoaded = this.props.pageStart; + this.options = this.eventListenerOptions(); + this.attachScrollListener(); + } + }, { + key: 'componentDidUpdate', + value: function componentDidUpdate() { + if (this.props.isReverse && this.loadMore) { + var parentElement = this.getParentElement(this.scrollComponent); + parentElement.scrollTop = parentElement.scrollHeight - this.beforeScrollHeight + this.beforeScrollTop; + this.loadMore = false; + } + this.attachScrollListener(); + } + }, { + key: 'componentWillUnmount', + value: function componentWillUnmount() { + this.detachScrollListener(); + this.detachMousewheelListener(); + } + }, { + key: 'isPassiveSupported', + value: function isPassiveSupported() { + var passive = false; + + var testOptions = { + get passive() { + passive = true; + } + }; + + try { + document.addEventListener('test', null, testOptions); + document.removeEventListener('test', null, testOptions); + } catch (e) { + // ignore + } + return passive; + } + }, { + key: 'eventListenerOptions', + value: function eventListenerOptions() { + var options = this.props.useCapture; + + if (this.isPassiveSupported()) { + options = { + useCapture: this.props.useCapture, + passive: true + }; + } + return options; + } + + // Set a defaut loader for all your `InfiniteScroll` components + + }, { + key: 'setDefaultLoader', + value: function setDefaultLoader(loader) { + this.defaultLoader = loader; + } + }, { + key: 'detachMousewheelListener', + value: function detachMousewheelListener() { + var scrollEl = window; + if (this.props.useWindow === false) { + scrollEl = this.scrollComponent.parentNode; + } + + scrollEl.removeEventListener('mousewheel', this.mousewheelListener, this.options ? this.options : this.props.useCapture); + } + }, { + key: 'detachScrollListener', + value: function detachScrollListener() { + var scrollEl = window; + if (this.props.useWindow === false) { + scrollEl = this.getParentElement(this.scrollComponent); + } + + scrollEl.removeEventListener('scroll', this.scrollListener, this.options ? this.options : this.props.useCapture); + scrollEl.removeEventListener('resize', this.scrollListener, this.options ? this.options : this.props.useCapture); + } + }, { + key: 'getParentElement', + value: function getParentElement(el) { + var scrollParent = this.props.getScrollParent && this.props.getScrollParent(); + if (scrollParent != null) { + return scrollParent; + } + return el && el.parentNode; + } + }, { + key: 'filterProps', + value: function filterProps(props) { + return props; + } + }, { + key: 'attachScrollListener', + value: function attachScrollListener() { + var parentElement = this.getParentElement(this.scrollComponent); + + if (!this.props.hasMore || !parentElement) { + return; + } + + var scrollEl = window; + if (this.props.useWindow === false) { + scrollEl = parentElement; + } + + scrollEl.addEventListener('mousewheel', this.mousewheelListener, this.options ? this.options : this.props.useCapture); + scrollEl.addEventListener('scroll', this.scrollListener, this.options ? this.options : this.props.useCapture); + scrollEl.addEventListener('resize', this.scrollListener, this.options ? this.options : this.props.useCapture); + + if (this.props.initialLoad) { + this.scrollListener(); + } + } + }, { + key: 'mousewheelListener', + value: function mousewheelListener(e) { + // Prevents Chrome hangups + // See: https://stackoverflow.com/questions/47524205/random-high-content-download-time-in-chrome/47684257#47684257 + if (e.deltaY === 1 && !this.isPassiveSupported()) { + e.preventDefault(); + } + } + }, { + key: 'scrollListener', + value: function scrollListener() { + var el = this.scrollComponent; + var scrollEl = window; + var parentNode = this.getParentElement(el); + + var offset = void 0; + if (this.props.useWindow) { + var doc = document.documentElement || document.body.parentNode || document.body; + var scrollTop = scrollEl.pageYOffset !== undefined ? scrollEl.pageYOffset : doc.scrollTop; + if (this.props.isReverse) { + offset = scrollTop; + } else { + offset = this.calculateOffset(el, scrollTop); + } + } else if (this.props.isReverse) { + offset = parentNode.scrollTop; + } else { + offset = el.scrollHeight - parentNode.scrollTop - parentNode.clientHeight; + } + + // Here we make sure the element is visible as well as checking the offset + if (offset < Number(this.props.threshold) && el && el.offsetParent !== null) { + this.detachScrollListener(); + this.beforeScrollHeight = parentNode.scrollHeight; + this.beforeScrollTop = parentNode.scrollTop; + // Call loadMore after detachScrollListener to allow for non-async loadMore functions + if (typeof this.props.loadMore === 'function') { + this.props.loadMore(this.pageLoaded += 1); + this.loadMore = true; + } + } + } + }, { + key: 'calculateOffset', + value: function calculateOffset(el, scrollTop) { + if (!el) { + return 0; + } + + return this.calculateTopPosition(el) + (el.offsetHeight - scrollTop - window.innerHeight); + } + }, { + key: 'calculateTopPosition', + value: function calculateTopPosition(el) { + if (!el) { + return 0; + } + return el.offsetTop + this.calculateTopPosition(el.offsetParent); + } + }, { + key: 'render', + value: function render() { + var _this2 = this; + + var renderProps = this.filterProps(this.props); + + var children = renderProps.children, + element = renderProps.element, + hasMore = renderProps.hasMore, + initialLoad = renderProps.initialLoad, + isReverse = renderProps.isReverse, + loader = renderProps.loader, + loadMore = renderProps.loadMore, + pageStart = renderProps.pageStart, + ref = renderProps.ref, + threshold = renderProps.threshold, + useCapture = renderProps.useCapture, + useWindow = renderProps.useWindow, + getScrollParent = renderProps.getScrollParent, + props = _objectWithoutProperties(renderProps, ['children', 'element', 'hasMore', 'initialLoad', 'isReverse', 'loader', 'loadMore', 'pageStart', 'ref', 'threshold', 'useCapture', 'useWindow', 'getScrollParent']); + + props.ref = function (node) { + _this2.scrollComponent = node; + if (ref) { + ref(node); + } + }; + + var childrenArray = [children]; + if (hasMore) { + if (loader) { + isReverse ? childrenArray.unshift(loader) : childrenArray.push(loader); + } else if (this.defaultLoader) { + isReverse ? childrenArray.unshift(this.defaultLoader) : childrenArray.push(this.defaultLoader); + } + } + return _react2.default.createElement(element, props, childrenArray); + } + }]); + + return InfiniteScroll; +}(_react.Component); + +InfiniteScroll.propTypes = { + children: _propTypes2.default.node.isRequired, + element: _propTypes2.default.node, + hasMore: _propTypes2.default.bool, + initialLoad: _propTypes2.default.bool, + isReverse: _propTypes2.default.bool, + loader: _propTypes2.default.node, + loadMore: _propTypes2.default.func.isRequired, + pageStart: _propTypes2.default.number, + ref: _propTypes2.default.func, + getScrollParent: _propTypes2.default.func, + threshold: _propTypes2.default.number, + useCapture: _propTypes2.default.bool, + useWindow: _propTypes2.default.bool +}; +InfiniteScroll.defaultProps = { + element: 'div', + hasMore: false, + initialLoad: true, + pageStart: 0, + ref: null, + threshold: 250, + useWindow: true, + isReverse: false, + useCapture: false, + loader: null, + getScrollParent: null +}; +exports["default"] = InfiniteScroll; +module.exports = exports['default']; + + +/***/ }), + +/***/ 246: +/*!*******************************************************!*\ + !*** ./node_modules/react-infinite-scroller/index.js ***! + \*******************************************************/ +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +module.exports = __webpack_require__(/*! ./dist/InfiniteScroll */ 57761) + + +/***/ }), + +/***/ 11742: +/*!************************************************!*\ + !*** ./node_modules/toggle-selection/index.js ***! + \************************************************/ +/***/ (function(module) { + + +module.exports = function () { + var selection = document.getSelection(); + if (!selection.rangeCount) { + return function () {}; + } + var active = document.activeElement; + + var ranges = []; + for (var i = 0; i < selection.rangeCount; i++) { + ranges.push(selection.getRangeAt(i)); + } + + switch (active.tagName.toUpperCase()) { // .toUpperCase handles XHTML + case 'INPUT': + case 'TEXTAREA': + active.blur(); + break; + + default: + active = null; + break; + } + + selection.removeAllRanges(); + return function () { + selection.type === 'Caret' && + selection.removeAllRanges(); + + if (!selection.rangeCount) { + ranges.forEach(function(range) { + selection.addRange(range); + }); + } + + active && + active.focus(); + }; +}; + + +/***/ }) + +}]); \ No newline at end of file diff --git a/4525.chunk.css b/4525.chunk.css new file mode 100644 index 0000000000..077e068363 --- /dev/null +++ b/4525.chunk.css @@ -0,0 +1,1612 @@ +/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/affix/style/index.less ***! + \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-affix { + position: fixed; + z-index: 10; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/breadcrumb/style/index.less ***! + \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-breadcrumb { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; +} +.ant-breadcrumb .anticon { + font-size: 12px; +} +.ant-breadcrumb ol { + display: flex; + flex-wrap: wrap; + margin: 0; + padding: 0; + list-style: none; +} +.ant-breadcrumb a { + color: rgba(0, 0, 0, 0.45); + transition: color 0.3s; +} +.ant-breadcrumb a:hover { + color: rgba(0, 0, 0, 0.85); +} +.ant-breadcrumb li:last-child { + color: rgba(0, 0, 0, 0.85); +} +.ant-breadcrumb li:last-child a { + color: rgba(0, 0, 0, 0.85); +} +li:last-child > .ant-breadcrumb-separator { + display: none; +} +.ant-breadcrumb-separator { + margin: 0 4px; + color: rgba(0, 0, 0, 0.45); +} +.ant-breadcrumb-link > .anticon + span, +.ant-breadcrumb-link > .anticon + a { + margin-left: 4px; +} +.ant-breadcrumb-overlay-link > .anticon { + margin-left: 4px; +} +.ant-breadcrumb-rtl { + direction: rtl; +} +.ant-breadcrumb-rtl::before { + display: table; + content: ''; +} +.ant-breadcrumb-rtl::after { + display: table; + clear: both; + content: ''; +} +.ant-breadcrumb-rtl > span { + float: right; +} +.ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + span, +.ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + a { + margin-right: 4px; + margin-left: 0; +} +.ant-breadcrumb-rtl .ant-breadcrumb-overlay-link > .anticon { + margin-right: 4px; + margin-left: 0; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/rate/style/index.less ***! + \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-rate { + box-sizing: border-box; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + font-feature-settings: tnum, "tnum"; + display: inline-block; + margin: 0; + padding: 0; + color: #fadb14; + font-size: 16px; + line-height: inherit; + list-style: none; + outline: none; +} +.ant-rate-disabled .ant-rate-star { + cursor: default; +} +.ant-rate-disabled .ant-rate-star > div:hover { + transform: scale(1); +} +.ant-rate-star { + position: relative; + display: inline-block; + color: inherit; + cursor: pointer; +} +.ant-rate-star:not(:last-child) { + margin-right: 8px; +} +.ant-rate-star > div { + transition: all 0.3s, outline 0s; +} +.ant-rate-star > div:hover { + transform: scale(1.1); +} +.ant-rate-star > div:focus { + outline: 0; +} +.ant-rate-star > div:focus-visible { + outline: 1px dashed #fadb14; + transform: scale(1.1); +} +.ant-rate-star-first, +.ant-rate-star-second { + color: #f0f0f0; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-rate-star-first .anticon, +.ant-rate-star-second .anticon { + vertical-align: middle; +} +.ant-rate-star-first { + position: absolute; + top: 0; + left: 0; + width: 50%; + height: 100%; + overflow: hidden; + opacity: 0; +} +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-half .ant-rate-star-second { + opacity: 1; +} +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-full .ant-rate-star-second { + color: inherit; +} +.ant-rate-text { + display: inline-block; + margin: 0 8px; + font-size: 12px; +} +.ant-rate-rtl { + direction: rtl; +} +.ant-rate-rtl .ant-rate-star:not(:last-child) { + margin-right: 0; + margin-left: 8px; +} +.ant-rate-rtl .ant-rate-star-first { + right: 0; + left: auto; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/drawer/style/index.less ***! + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-drawer { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + pointer-events: none; +} +.ant-drawer-inline { + position: absolute; +} +.ant-drawer-mask { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + background: rgba(0, 0, 0, 0.45); + pointer-events: auto; +} +.ant-drawer-content-wrapper { + position: absolute; + z-index: 1000; + transition: all 0.3s; +} +.ant-drawer-content-wrapper-hidden { + display: none; +} +.ant-drawer-left > .ant-drawer-content-wrapper { + top: 0; + bottom: 0; + left: 0; + box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03); +} +.ant-drawer-right > .ant-drawer-content-wrapper { + top: 0; + right: 0; + bottom: 0; + box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03); +} +.ant-drawer-top > .ant-drawer-content-wrapper { + top: 0; + right: 0; + left: 0; + box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03); +} +.ant-drawer-bottom > .ant-drawer-content-wrapper { + right: 0; + bottom: 0; + left: 0; + box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03); +} +.ant-drawer-content { + width: 100%; + height: 100%; + overflow: auto; + background: #fff; + pointer-events: auto; +} +.ant-drawer-wrapper-body { + display: flex; + flex-direction: column; + width: 100%; + height: 100%; +} +.ant-drawer-header { + display: flex; + flex: 0 1; + align-items: center; + padding: 11px 16px; + font-size: 14px; + line-height: 22px; + border-bottom: 1px solid #f0f0f0; +} +.ant-drawer-header-title { + display: flex; + flex: 1 1; + align-items: center; + min-width: 0; + min-height: 0; +} +.ant-drawer-extra { + flex: none; +} +.ant-drawer-close { + display: inline-block; + margin-right: 12px; + color: rgba(0, 0, 0, 0.45); + font-weight: 700; + font-size: 14px; + font-style: normal; + line-height: 1; + text-align: center; + text-transform: none; + text-decoration: none; + background: transparent; + border: 0; + outline: 0; + cursor: pointer; + transition: color 0.3s; + text-rendering: auto; +} +.ant-drawer-close:focus, +.ant-drawer-close:hover { + color: rgba(0, 0, 0, 0.75); + text-decoration: none; +} +.ant-drawer-title { + flex: 1 1; + margin: 0; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 14px; + line-height: 22px; +} +.ant-drawer-body { + flex: 1 1; + min-width: 0; + min-height: 0; + padding: 16px; + overflow: auto; +} +.ant-drawer-footer { + flex-shrink: 0; + padding: 8px 8px; + border-top: 1px solid #f0f0f0; +} +.panel-motion-enter-start, +.panel-motion-appear-start, +.panel-motion-leave-start { + transition: none; +} +.panel-motion-enter-active, +.panel-motion-appear-active, +.panel-motion-leave-active { + transition: all 0.3s; +} +.ant-drawer-mask-motion-enter-active, +.ant-drawer-mask-motion-appear-active, +.ant-drawer-mask-motion-leave-active { + transition: all 0.3s; +} +.ant-drawer-mask-motion-enter, +.ant-drawer-mask-motion-appear { + opacity: 0; +} +.ant-drawer-mask-motion-enter-active, +.ant-drawer-mask-motion-appear-active { + opacity: 1; +} +.ant-drawer-mask-motion-leave { + opacity: 1; +} +.ant-drawer-mask-motion-leave-active { + opacity: 0; +} +.ant-drawer-panel-motion-left-enter-start, +.ant-drawer-panel-motion-left-appear-start, +.ant-drawer-panel-motion-left-leave-start { + transition: none; +} +.ant-drawer-panel-motion-left-enter-active, +.ant-drawer-panel-motion-left-appear-active, +.ant-drawer-panel-motion-left-leave-active { + transition: all 0.3s; +} +.ant-drawer-panel-motion-left-enter-start, +.ant-drawer-panel-motion-left-appear-start { + transform: translateX(-100%) !important; +} +.ant-drawer-panel-motion-left-enter-active, +.ant-drawer-panel-motion-left-appear-active { + transform: translateX(0); +} +.ant-drawer-panel-motion-left-leave { + transform: translateX(0); +} +.ant-drawer-panel-motion-left-leave-active { + transform: translateX(-100%); +} +.ant-drawer-panel-motion-right-enter-start, +.ant-drawer-panel-motion-right-appear-start, +.ant-drawer-panel-motion-right-leave-start { + transition: none; +} +.ant-drawer-panel-motion-right-enter-active, +.ant-drawer-panel-motion-right-appear-active, +.ant-drawer-panel-motion-right-leave-active { + transition: all 0.3s; +} +.ant-drawer-panel-motion-right-enter-start, +.ant-drawer-panel-motion-right-appear-start { + transform: translateX(100%) !important; +} +.ant-drawer-panel-motion-right-enter-active, +.ant-drawer-panel-motion-right-appear-active { + transform: translateX(0); +} +.ant-drawer-panel-motion-right-leave { + transform: translateX(0); +} +.ant-drawer-panel-motion-right-leave-active { + transform: translateX(100%); +} +.ant-drawer-panel-motion-top-enter-start, +.ant-drawer-panel-motion-top-appear-start, +.ant-drawer-panel-motion-top-leave-start { + transition: none; +} +.ant-drawer-panel-motion-top-enter-active, +.ant-drawer-panel-motion-top-appear-active, +.ant-drawer-panel-motion-top-leave-active { + transition: all 0.3s; +} +.ant-drawer-panel-motion-top-enter-start, +.ant-drawer-panel-motion-top-appear-start { + transform: translateY(-100%) !important; +} +.ant-drawer-panel-motion-top-enter-active, +.ant-drawer-panel-motion-top-appear-active { + transform: translateY(0); +} +.ant-drawer-panel-motion-top-leave { + transform: translateY(0); +} +.ant-drawer-panel-motion-top-leave-active { + transform: translateY(-100%); +} +.ant-drawer-panel-motion-bottom-enter-start, +.ant-drawer-panel-motion-bottom-appear-start, +.ant-drawer-panel-motion-bottom-leave-start { + transition: none; +} +.ant-drawer-panel-motion-bottom-enter-active, +.ant-drawer-panel-motion-bottom-appear-active, +.ant-drawer-panel-motion-bottom-leave-active { + transition: all 0.3s; +} +.ant-drawer-panel-motion-bottom-enter-start, +.ant-drawer-panel-motion-bottom-appear-start { + transform: translateY(100%) !important; +} +.ant-drawer-panel-motion-bottom-enter-active, +.ant-drawer-panel-motion-bottom-appear-active { + transform: translateY(0); +} +.ant-drawer-panel-motion-bottom-leave { + transform: translateY(0); +} +.ant-drawer-panel-motion-bottom-leave-active { + transform: translateY(100%); +} +.ant-drawer-rtl { + direction: rtl; +} +.ant-drawer-rtl .ant-drawer-close { + margin-right: 0; + margin-left: 12px; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/divider/style/index.less ***! + \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-divider { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + border-top: 1px solid rgba(0, 0, 0, 0.06); +} +.ant-divider-vertical { + position: relative; + top: -0.06em; + display: inline-block; + height: 0.9em; + margin: 0 8px; + vertical-align: middle; + border-top: 0; + border-left: 1px solid rgba(0, 0, 0, 0.06); +} +.ant-divider-horizontal { + display: flex; + clear: both; + width: 100%; + min-width: 100%; + margin: 24px 0; +} +.ant-divider-horizontal.ant-divider-with-text { + display: flex; + align-items: center; + margin: 16px 0; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 14px; + white-space: nowrap; + text-align: center; + border-top: 0; + border-top-color: rgba(0, 0, 0, 0.06); +} +.ant-divider-horizontal.ant-divider-with-text::before, +.ant-divider-horizontal.ant-divider-with-text::after { + position: relative; + width: 50%; + border-top: 1px solid transparent; + border-top-color: inherit; + border-bottom: 0; + transform: translateY(50%); + content: ''; +} +.ant-divider-horizontal.ant-divider-with-text-left::before { + width: 5%; +} +.ant-divider-horizontal.ant-divider-with-text-left::after { + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::before { + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::after { + width: 5%; +} +.ant-divider-inner-text { + display: inline-block; + padding: 0 1em; +} +.ant-divider-dashed { + background: none; + border-color: rgba(0, 0, 0, 0.06); + border-style: dashed; + border-width: 1px 0 0; +} +.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before, +.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after { + border-style: dashed none none; +} +.ant-divider-vertical.ant-divider-dashed { + border-width: 0 0 0 1px; +} +.ant-divider-plain.ant-divider-with-text { + color: rgba(0, 0, 0, 0.85); + font-weight: normal; + font-size: 12px; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before { + width: 0; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after { + width: 100%; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text { + padding-left: 0; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before { + width: 100%; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after { + width: 0; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text { + padding-right: 0; +} +.ant-divider-rtl { + direction: rtl; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before { + width: 95%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after { + width: 5%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before { + width: 5%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after { + width: 95%; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/auto-complete/style/index.less ***! + \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-select-auto-complete { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; +} +.ant-select-auto-complete .ant-select-clear { + right: 13px; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/cascader/style/index.less ***! + \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +@keyframes antCheckboxEffect { + 0% { + transform: scale(1); + opacity: 0.5; + } + 100% { + transform: scale(1.6); + opacity: 0; + } +} +.ant-cascader-checkbox { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + position: relative; + top: 0.2em; + line-height: 1; + white-space: nowrap; + outline: none; + cursor: pointer; +} +.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-inner, +.ant-cascader-checkbox:hover .ant-cascader-checkbox-inner, +.ant-cascader-checkbox-input:focus + .ant-cascader-checkbox-inner { + border-color: #3061D0; +} +.ant-cascader-checkbox-checked::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid #3061D0; + border-radius: 2px; + visibility: hidden; + animation: antCheckboxEffect 0.36s ease-in-out; + animation-fill-mode: backwards; + content: ''; +} +.ant-cascader-checkbox:hover::after, +.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox::after { + visibility: visible; +} +.ant-cascader-checkbox-inner { + position: relative; + top: 0; + left: 0; + display: block; + width: 14px; + height: 14px; + direction: ltr; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 2px; + border-collapse: separate; + transition: all 0.3s; +} +.ant-cascader-checkbox-inner::after { + position: absolute; + top: 50%; + left: 21.5%; + display: table; + width: 5px; + height: 8px; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(0) translate(-50%, -50%); + opacity: 0; + transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; + content: ' '; +} +.ant-cascader-checkbox-input { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + width: 100%; + height: 100%; + cursor: pointer; + opacity: 0; +} +.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after { + position: absolute; + display: table; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(1) translate(-50%, -50%); + opacity: 1; + transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; + content: ' '; +} +.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner { + background-color: #3061D0; + border-color: #3061D0; +} +.ant-cascader-checkbox-disabled { + cursor: not-allowed; +} +.ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after { + border-color: rgba(0, 0, 0, 0.25); + animation-name: none; +} +.ant-cascader-checkbox-disabled .ant-cascader-checkbox-input { + cursor: not-allowed; + pointer-events: none; +} +.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner { + background-color: #f5f5f5; + border-color: #d9d9d9 !important; +} +.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after { + border-color: #f5f5f5; + border-collapse: separate; + animation-name: none; +} +.ant-cascader-checkbox-disabled + span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-cascader-checkbox-disabled:hover::after, +.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-disabled::after { + visibility: hidden; +} +.ant-cascader-checkbox-wrapper { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + display: inline-flex; + align-items: baseline; + line-height: inherit; + cursor: pointer; +} +.ant-cascader-checkbox-wrapper::after { + display: inline-block; + width: 0; + overflow: hidden; + content: '\a0'; +} +.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-disabled { + cursor: not-allowed; +} +.ant-cascader-checkbox-wrapper + .ant-cascader-checkbox-wrapper { + margin-left: 8px; +} +.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-in-form-item input[type='checkbox'] { + width: 14px; + height: 14px; +} +.ant-cascader-checkbox + span { + padding-right: 8px; + padding-left: 8px; +} +.ant-cascader-checkbox-group { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + display: inline-block; +} +.ant-cascader-checkbox-group-item { + margin-right: 6px; +} +.ant-cascader-checkbox-group-item:last-child { + margin-right: 0; +} +.ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item { + margin-left: 0; +} +.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner { + background-color: #fff; + border-color: #d9d9d9; +} +.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner::after { + top: 50%; + left: 50%; + width: 6px; + height: 6px; + background-color: #3061D0; + border: 0; + transform: translate(-50%, -50%) scale(1); + opacity: 1; + content: ' '; +} +.ant-cascader-checkbox-indeterminate.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after { + background-color: rgba(0, 0, 0, 0.25); + border-color: rgba(0, 0, 0, 0.25); +} +.ant-cascader { + width: 184px; +} +.ant-cascader-checkbox { + top: 0; + margin-right: 4px; +} +.ant-cascader-menus { + display: flex; + flex-wrap: nowrap; + align-items: flex-start; +} +.ant-cascader-menus.ant-cascader-menu-empty .ant-cascader-menu { + width: 100%; + height: auto; +} +.ant-cascader-menu { + flex-grow: 1; + min-width: 111px; + height: 180px; + margin: 0; + margin: -4px 0; + padding: 4px 0; + overflow: auto; + vertical-align: top; + list-style: none; + border-right: 1px solid #f0f0f0; + -ms-overflow-style: -ms-autohiding-scrollbar; +} +.ant-cascader-menu-item { + display: flex; + flex-wrap: nowrap; + align-items: center; + padding: 5px 8px; + overflow: hidden; + line-height: 18px; + white-space: nowrap; + text-overflow: ellipsis; + cursor: pointer; + transition: all 0.3s; +} +.ant-cascader-menu-item:hover { + background: #f5f5f5; +} +.ant-cascader-menu-item-disabled { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-cascader-menu-item-disabled:hover { + background: transparent; +} +.ant-cascader-menu-empty .ant-cascader-menu-item { + color: rgba(0, 0, 0, 0.25); + cursor: default; + pointer-events: none; +} +.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled), +.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover { + font-weight: 600; + background-color: #f0f7ff; +} +.ant-cascader-menu-item-content { + flex: auto; +} +.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, +.ant-cascader-menu-item-loading-icon { + margin-left: 0px; + color: rgba(0, 0, 0, 0.45); + font-size: 10px; +} +.ant-cascader-menu-item-disabled.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, +.ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon { + color: rgba(0, 0, 0, 0.25); +} +.ant-cascader-menu-item-keyword { + color: #ff4d4f; +} +.ant-cascader-compact-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) { + margin-right: -1px; +} +.ant-cascader-compact-item:not(.ant-cascader-compact-last-item).ant-cascader-compact-item-rtl { + margin-left: -1px; +} +.ant-cascader-compact-item:hover, +.ant-cascader-compact-item:focus, +.ant-cascader-compact-item:active { + z-index: 2; +} +.ant-cascader-compact-item[disabled] { + z-index: 0; +} +.ant-cascader-compact-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-last-item).ant-cascader { + border-radius: 0; +} +.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-item-rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.ant-cascader-rtl .ant-cascader-menu-item-expand-icon, +.ant-cascader-rtl .ant-cascader-menu-item-loading-icon { + margin-right: 0px; + margin-left: 0; +} +.ant-cascader-rtl .ant-cascader-checkbox { + top: 0; + margin-right: 0; + margin-left: 4px; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/popover/style/index.less ***! + \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-popover { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + position: absolute; + top: 0; + left: 0; + z-index: 1030; + font-weight: normal; + white-space: normal; + text-align: left; + cursor: auto; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} +.ant-popover-content { + position: relative; +} +.ant-popover::after { + position: absolute; + background: rgba(255, 255, 255, 0.01); + content: ''; +} +.ant-popover-hidden { + display: none; +} +.ant-popover-placement-top, +.ant-popover-placement-topLeft, +.ant-popover-placement-topRight { + padding-bottom: 15.3137085px; +} +.ant-popover-placement-right, +.ant-popover-placement-rightTop, +.ant-popover-placement-rightBottom { + padding-left: 15.3137085px; +} +.ant-popover-placement-bottom, +.ant-popover-placement-bottomLeft, +.ant-popover-placement-bottomRight { + padding-top: 15.3137085px; +} +.ant-popover-placement-left, +.ant-popover-placement-leftTop, +.ant-popover-placement-leftBottom { + padding-right: 15.3137085px; +} +.ant-popover-inner { + background-color: #fff; + background-clip: padding-box; + border-radius: 2px; + box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); +} +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .ant-popover { + /* IE10+ */ + } + .ant-popover-inner { + box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); + } +} +.ant-popover-title { + min-width: 177px; + min-height: 28px; + margin: 0; + padding: 5px 12px 4px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + border-bottom: 1px solid #f0f0f0; +} +.ant-popover-inner-content { + padding: 8px 12px; + color: rgba(0, 0, 0, 0.85); +} +.ant-popover-message { + display: flex; + padding: 4px 0 12px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; +} +.ant-popover-message-icon { + display: inline-block; + margin-right: 8px; + color: #faad14; + font-size: 12px; +} +.ant-popover-buttons { + margin-bottom: 4px; + text-align: right; +} +.ant-popover-buttons button:not(:first-child) { + margin-left: 8px; +} +.ant-popover-arrow { + position: absolute; + display: block; + width: 22px; + height: 22px; + overflow: hidden; + background: transparent; + pointer-events: none; +} +.ant-popover-arrow-content { + --antd-arrow-background-color: #fff; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: block; + width: 11.3137085px; + height: 11.3137085px; + margin: auto; + content: ''; + pointer-events: auto; + border-radius: 0 0 2px; + pointer-events: none; +} +.ant-popover-arrow-content::before { + position: absolute; + top: -11.3137085px; + left: -11.3137085px; + width: 33.9411255px; + height: 33.9411255px; + background: var(--antd-arrow-background-color); + background-repeat: no-repeat; + background-position: -10px -10px; + content: ''; + -webkit-clip-path: inset(33% 33%); + clip-path: inset(33% 33%); + -webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z'); + clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z'); +} +.ant-popover-placement-top .ant-popover-arrow, +.ant-popover-placement-topLeft .ant-popover-arrow, +.ant-popover-placement-topRight .ant-popover-arrow { + bottom: 0; + transform: translateY(100%); +} +.ant-popover-placement-top .ant-popover-arrow-content, +.ant-popover-placement-topLeft .ant-popover-arrow-content, +.ant-popover-placement-topRight .ant-popover-arrow-content { + box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); + transform: translateY(-11px) rotate(45deg); +} +.ant-popover-placement-top .ant-popover-arrow { + left: 50%; + transform: translateY(100%) translateX(-50%); +} +.ant-popover-placement-topLeft .ant-popover-arrow { + left: 16px; +} +.ant-popover-placement-topRight .ant-popover-arrow { + right: 16px; +} +.ant-popover-placement-right .ant-popover-arrow, +.ant-popover-placement-rightTop .ant-popover-arrow, +.ant-popover-placement-rightBottom .ant-popover-arrow { + left: 0; + transform: translateX(-100%); +} +.ant-popover-placement-right .ant-popover-arrow-content, +.ant-popover-placement-rightTop .ant-popover-arrow-content, +.ant-popover-placement-rightBottom .ant-popover-arrow-content { + box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); + transform: translateX(11px) rotate(135deg); +} +.ant-popover-placement-right .ant-popover-arrow { + top: 50%; + transform: translateX(-100%) translateY(-50%); +} +.ant-popover-placement-rightTop .ant-popover-arrow { + top: 12px; +} +.ant-popover-placement-rightBottom .ant-popover-arrow { + bottom: 12px; +} +.ant-popover-placement-bottom .ant-popover-arrow, +.ant-popover-placement-bottomLeft .ant-popover-arrow, +.ant-popover-placement-bottomRight .ant-popover-arrow { + top: 0; + transform: translateY(-100%); +} +.ant-popover-placement-bottom .ant-popover-arrow-content, +.ant-popover-placement-bottomLeft .ant-popover-arrow-content, +.ant-popover-placement-bottomRight .ant-popover-arrow-content { + box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.06); + transform: translateY(11px) rotate(-135deg); +} +.ant-popover-placement-bottom .ant-popover-arrow { + left: 50%; + transform: translateY(-100%) translateX(-50%); +} +.ant-popover-placement-bottomLeft .ant-popover-arrow { + left: 16px; +} +.ant-popover-placement-bottomRight .ant-popover-arrow { + right: 16px; +} +.ant-popover-placement-left .ant-popover-arrow, +.ant-popover-placement-leftTop .ant-popover-arrow, +.ant-popover-placement-leftBottom .ant-popover-arrow { + right: 0; + transform: translateX(100%); +} +.ant-popover-placement-left .ant-popover-arrow-content, +.ant-popover-placement-leftTop .ant-popover-arrow-content, +.ant-popover-placement-leftBottom .ant-popover-arrow-content { + box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); + transform: translateX(-11px) rotate(-45deg); +} +.ant-popover-placement-left .ant-popover-arrow { + top: 50%; + transform: translateX(100%) translateY(-50%); +} +.ant-popover-placement-leftTop .ant-popover-arrow { + top: 12px; +} +.ant-popover-placement-leftBottom .ant-popover-arrow { + bottom: 12px; +} +.ant-popover-pink .ant-popover-inner { + background-color: #eb2f96; +} +.ant-popover-pink .ant-popover-arrow-content { + background-color: #eb2f96; +} +.ant-popover-magenta .ant-popover-inner { + background-color: #eb2f96; +} +.ant-popover-magenta .ant-popover-arrow-content { + background-color: #eb2f96; +} +.ant-popover-red .ant-popover-inner { + background-color: #f5222d; +} +.ant-popover-red .ant-popover-arrow-content { + background-color: #f5222d; +} +.ant-popover-volcano .ant-popover-inner { + background-color: #fa541c; +} +.ant-popover-volcano .ant-popover-arrow-content { + background-color: #fa541c; +} +.ant-popover-orange .ant-popover-inner { + background-color: #fa8c16; +} +.ant-popover-orange .ant-popover-arrow-content { + background-color: #fa8c16; +} +.ant-popover-yellow .ant-popover-inner { + background-color: #fadb14; +} +.ant-popover-yellow .ant-popover-arrow-content { + background-color: #fadb14; +} +.ant-popover-gold .ant-popover-inner { + background-color: #faad14; +} +.ant-popover-gold .ant-popover-arrow-content { + background-color: #faad14; +} +.ant-popover-cyan .ant-popover-inner { + background-color: #13c2c2; +} +.ant-popover-cyan .ant-popover-arrow-content { + background-color: #13c2c2; +} +.ant-popover-lime .ant-popover-inner { + background-color: #a0d911; +} +.ant-popover-lime .ant-popover-arrow-content { + background-color: #a0d911; +} +.ant-popover-green .ant-popover-inner { + background-color: #52c41a; +} +.ant-popover-green .ant-popover-arrow-content { + background-color: #52c41a; +} +.ant-popover-blue .ant-popover-inner { + background-color: #1890ff; +} +.ant-popover-blue .ant-popover-arrow-content { + background-color: #1890ff; +} +.ant-popover-geekblue .ant-popover-inner { + background-color: #2f54eb; +} +.ant-popover-geekblue .ant-popover-arrow-content { + background-color: #2f54eb; +} +.ant-popover-purple .ant-popover-inner { + background-color: #722ed1; +} +.ant-popover-purple .ant-popover-arrow-content { + background-color: #722ed1; +} +.ant-popover-rtl { + direction: rtl; + text-align: right; +} +.ant-popover-rtl .ant-popover-message-icon { + margin-right: 0; + margin-left: 8px; +} +.ant-popover-rtl .ant-popover-message-title { + padding-left: 8px; +} +.ant-popover-rtl .ant-popover-buttons { + text-align: left; +} +.ant-popover-rtl .ant-popover-buttons button { + margin-right: 8px; + margin-left: 0; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!********************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[2]!./node_modules/cropperjs/dist/cropper.css ***! + \********************************************************************************************************************************************************************************************************************************************/ +/*! + * Cropper.js v1.5.13 + * https://fengyuanchen.github.io/cropperjs + * + * Copyright 2015-present Chen Fengyuan + * Released under the MIT license + * + * Date: 2022-11-20T05:30:43.444Z + */ + +.cropper-container { + direction: ltr; + font-size: 0; + line-height: 0; + position: relative; + touch-action: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.cropper-container img { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + display: block; + height: 100%; + image-orientation: 0deg; + max-height: none !important; + max-width: none !important; + min-height: 0 !important; + min-width: 0 !important; + width: 100%; + } + +.cropper-wrap-box, +.cropper-canvas, +.cropper-drag-box, +.cropper-crop-box, +.cropper-modal { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; +} + +.cropper-wrap-box, +.cropper-canvas { + overflow: hidden; +} + +.cropper-drag-box { + background-color: #fff; + opacity: 0; +} + +.cropper-modal { + background-color: #000; + opacity: 0.5; +} + +.cropper-view-box { + display: block; + height: 100%; + outline: 1px solid #39f; + outline-color: rgba(51, 153, 255, 75%); + overflow: hidden; + width: 100%; +} + +.cropper-dashed { + border: 0 dashed #eee; + display: block; + opacity: 0.5; + position: absolute; +} + +.cropper-dashed.dashed-h { + border-bottom-width: 1px; + border-top-width: 1px; + height: calc(100% / 3); + left: 0; + top: calc(100% / 3); + width: 100%; + } + +.cropper-dashed.dashed-v { + border-left-width: 1px; + border-right-width: 1px; + height: 100%; + left: calc(100% / 3); + top: 0; + width: calc(100% / 3); + } + +.cropper-center { + display: block; + height: 0; + left: 50%; + opacity: 0.75; + position: absolute; + top: 50%; + width: 0; +} + +.cropper-center::before, + .cropper-center::after { + background-color: #eee; + content: " "; + display: block; + position: absolute; + } + +.cropper-center::before { + height: 1px; + left: -3px; + top: 0; + width: 7px; + } + +.cropper-center::after { + height: 7px; + left: 0; + top: -3px; + width: 1px; + } + +.cropper-face, +.cropper-line, +.cropper-point { + display: block; + height: 100%; + opacity: 0.1; + position: absolute; + width: 100%; +} + +.cropper-face { + background-color: #fff; + left: 0; + top: 0; +} + +.cropper-line { + background-color: #39f; +} + +.cropper-line.line-e { + cursor: ew-resize; + right: -3px; + top: 0; + width: 5px; + } + +.cropper-line.line-n { + cursor: ns-resize; + height: 5px; + left: 0; + top: -3px; + } + +.cropper-line.line-w { + cursor: ew-resize; + left: -3px; + top: 0; + width: 5px; + } + +.cropper-line.line-s { + bottom: -3px; + cursor: ns-resize; + height: 5px; + left: 0; + } + +.cropper-point { + background-color: #39f; + height: 5px; + opacity: 0.75; + width: 5px; +} + +.cropper-point.point-e { + cursor: ew-resize; + margin-top: -3px; + right: -3px; + top: 50%; + } + +.cropper-point.point-n { + cursor: ns-resize; + left: 50%; + margin-left: -3px; + top: -3px; + } + +.cropper-point.point-w { + cursor: ew-resize; + left: -3px; + margin-top: -3px; + top: 50%; + } + +.cropper-point.point-s { + bottom: -3px; + cursor: s-resize; + left: 50%; + margin-left: -3px; + } + +.cropper-point.point-ne { + cursor: nesw-resize; + right: -3px; + top: -3px; + } + +.cropper-point.point-nw { + cursor: nwse-resize; + left: -3px; + top: -3px; + } + +.cropper-point.point-sw { + bottom: -3px; + cursor: nesw-resize; + left: -3px; + } + +.cropper-point.point-se { + bottom: -3px; + cursor: nwse-resize; + height: 20px; + opacity: 1; + right: -3px; + width: 20px; + } + +@media (min-width: 768px) { + +.cropper-point.point-se { + height: 15px; + width: 15px; + } + } + +@media (min-width: 992px) { + +.cropper-point.point-se { + height: 10px; + width: 10px; + } + } + +@media (min-width: 1200px) { + +.cropper-point.point-se { + height: 5px; + opacity: 0.75; + width: 5px; + } + } + +.cropper-point.point-se::before { + background-color: #39f; + bottom: -50%; + content: " "; + display: block; + height: 200%; + opacity: 0; + position: absolute; + right: -50%; + width: 200%; + } + +.cropper-invisible { + opacity: 0; +} + +.cropper-bg { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC); +} + +.cropper-hide { + display: block; + height: 0; + position: absolute; + width: 0; +} + +.cropper-hidden { + display: none !important; +} + +.cropper-move { + cursor: move; +} + +.cropper-crop { + cursor: crosshair; +} + +.cropper-disabled .cropper-drag-box, +.cropper-disabled .cropper-face, +.cropper-disabled .cropper-line, +.cropper-disabled .cropper-point { + cursor: not-allowed; +} + diff --git a/84567.async.js b/48106.async.js similarity index 87% rename from 84567.async.js rename to 48106.async.js index 7acb9ad06d..5a615784b8 100644 --- a/84567.async.js +++ b/48106.async.js @@ -1,5 +1,4 @@ -"use strict"; -(self["webpackChunk"] = self["webpackChunk"] || []).push([[84567],{ +(self["webpackChunk"] = self["webpackChunk"] || []).push([[48106],{ /***/ 7918: /*!******************************************************************************!*\ @@ -7,6 +6,7 @@ \******************************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { @@ -508,6 +508,7 @@ Icon.setTwoToneColor = setTwoToneColor; \******************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; /* harmony import */ var _babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread2 */ 1413); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294); /* harmony import */ var _ant_design_icons_svg_es_asn_CloseOutlined__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @ant-design/icons-svg/es/asn/CloseOutlined */ 89503); @@ -535,6 +536,7 @@ CloseOutlined.displayName = 'CloseOutlined'; \*****************************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { @@ -576,6 +578,7 @@ FormOutlined_FormOutlined.displayName = 'FormOutlined'; \**********************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "Z": function() { return /* binding */ getRenderPropValue; } /* harmony export */ }); @@ -597,6 +600,7 @@ var getRenderPropValue = function getRenderPropValue(propValue) { \**************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { @@ -837,6 +841,7 @@ Breadcrumb.Separator = breadcrumb_BreadcrumbSeparator; \********************************************************************/ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { +"use strict"; // EXTERNAL MODULE: ./node_modules/antd/es/style/default.less var style_default = __webpack_require__(43146); @@ -862,6 +867,7 @@ var menu_style = __webpack_require__(83736); \************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; /* harmony import */ var _dropdown__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dropdown */ 18562); /* harmony default export */ __webpack_exports__["Z"] = (_dropdown__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z); @@ -874,6 +880,7 @@ var menu_style = __webpack_require__(83736); \*********************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { @@ -1249,6 +1256,7 @@ input_Input.Password = input_Password; \**************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { @@ -1458,6 +1466,7 @@ var Popconfirm = /*#__PURE__*/react.forwardRef(function (props, ref) { \********************************************************************/ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { +"use strict"; // EXTERNAL MODULE: ./node_modules/antd/es/style/default.less var style_default = __webpack_require__(43146); @@ -1484,6 +1493,7 @@ var popover_style = __webpack_require__(63942); \***********************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 87462); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294); /* harmony import */ var _config_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../config-provider */ 53124); @@ -1565,6 +1575,7 @@ if (false) {} \*****************************************************************/ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { +"use strict"; // EXTERNAL MODULE: ./node_modules/antd/es/style/default.less var style_default = __webpack_require__(43146); @@ -1585,6 +1596,7 @@ var style_default = __webpack_require__(43146); \*************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { @@ -2004,6 +2016,7 @@ Skeleton.Node = Node; \******************************************************************/ /***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { +"use strict"; // EXTERNAL MODULE: ./node_modules/antd/es/style/default.less var style_default = __webpack_require__(43146); @@ -2022,6 +2035,7 @@ var style_default = __webpack_require__(43146); \**********************************************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { +"use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, { @@ -2055,6 +2069,322 @@ var EyeOutlined_EyeOutlined = function EyeOutlined(props, ref) { EyeOutlined_EyeOutlined.displayName = 'EyeOutlined'; /* harmony default export */ var icons_EyeOutlined = (/*#__PURE__*/react.forwardRef(EyeOutlined_EyeOutlined)); +/***/ }), + +/***/ 57761: +/*!*********************************************************************!*\ + !*** ./node_modules/react-infinite-scroller/dist/InfiniteScroll.js ***! + \*********************************************************************/ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", ({ + value: true +})); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _react = __webpack_require__(/*! react */ 67294); + +var _react2 = _interopRequireDefault(_react); + +var _propTypes = __webpack_require__(/*! prop-types */ 45697); + +var _propTypes2 = _interopRequireDefault(_propTypes); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var InfiniteScroll = function (_Component) { + _inherits(InfiniteScroll, _Component); + + function InfiniteScroll(props) { + _classCallCheck(this, InfiniteScroll); + + var _this = _possibleConstructorReturn(this, (InfiniteScroll.__proto__ || Object.getPrototypeOf(InfiniteScroll)).call(this, props)); + + _this.scrollListener = _this.scrollListener.bind(_this); + _this.eventListenerOptions = _this.eventListenerOptions.bind(_this); + _this.mousewheelListener = _this.mousewheelListener.bind(_this); + return _this; + } + + _createClass(InfiniteScroll, [{ + key: 'componentDidMount', + value: function componentDidMount() { + this.pageLoaded = this.props.pageStart; + this.options = this.eventListenerOptions(); + this.attachScrollListener(); + } + }, { + key: 'componentDidUpdate', + value: function componentDidUpdate() { + if (this.props.isReverse && this.loadMore) { + var parentElement = this.getParentElement(this.scrollComponent); + parentElement.scrollTop = parentElement.scrollHeight - this.beforeScrollHeight + this.beforeScrollTop; + this.loadMore = false; + } + this.attachScrollListener(); + } + }, { + key: 'componentWillUnmount', + value: function componentWillUnmount() { + this.detachScrollListener(); + this.detachMousewheelListener(); + } + }, { + key: 'isPassiveSupported', + value: function isPassiveSupported() { + var passive = false; + + var testOptions = { + get passive() { + passive = true; + } + }; + + try { + document.addEventListener('test', null, testOptions); + document.removeEventListener('test', null, testOptions); + } catch (e) { + // ignore + } + return passive; + } + }, { + key: 'eventListenerOptions', + value: function eventListenerOptions() { + var options = this.props.useCapture; + + if (this.isPassiveSupported()) { + options = { + useCapture: this.props.useCapture, + passive: true + }; + } + return options; + } + + // Set a defaut loader for all your `InfiniteScroll` components + + }, { + key: 'setDefaultLoader', + value: function setDefaultLoader(loader) { + this.defaultLoader = loader; + } + }, { + key: 'detachMousewheelListener', + value: function detachMousewheelListener() { + var scrollEl = window; + if (this.props.useWindow === false) { + scrollEl = this.scrollComponent.parentNode; + } + + scrollEl.removeEventListener('mousewheel', this.mousewheelListener, this.options ? this.options : this.props.useCapture); + } + }, { + key: 'detachScrollListener', + value: function detachScrollListener() { + var scrollEl = window; + if (this.props.useWindow === false) { + scrollEl = this.getParentElement(this.scrollComponent); + } + + scrollEl.removeEventListener('scroll', this.scrollListener, this.options ? this.options : this.props.useCapture); + scrollEl.removeEventListener('resize', this.scrollListener, this.options ? this.options : this.props.useCapture); + } + }, { + key: 'getParentElement', + value: function getParentElement(el) { + var scrollParent = this.props.getScrollParent && this.props.getScrollParent(); + if (scrollParent != null) { + return scrollParent; + } + return el && el.parentNode; + } + }, { + key: 'filterProps', + value: function filterProps(props) { + return props; + } + }, { + key: 'attachScrollListener', + value: function attachScrollListener() { + var parentElement = this.getParentElement(this.scrollComponent); + + if (!this.props.hasMore || !parentElement) { + return; + } + + var scrollEl = window; + if (this.props.useWindow === false) { + scrollEl = parentElement; + } + + scrollEl.addEventListener('mousewheel', this.mousewheelListener, this.options ? this.options : this.props.useCapture); + scrollEl.addEventListener('scroll', this.scrollListener, this.options ? this.options : this.props.useCapture); + scrollEl.addEventListener('resize', this.scrollListener, this.options ? this.options : this.props.useCapture); + + if (this.props.initialLoad) { + this.scrollListener(); + } + } + }, { + key: 'mousewheelListener', + value: function mousewheelListener(e) { + // Prevents Chrome hangups + // See: https://stackoverflow.com/questions/47524205/random-high-content-download-time-in-chrome/47684257#47684257 + if (e.deltaY === 1 && !this.isPassiveSupported()) { + e.preventDefault(); + } + } + }, { + key: 'scrollListener', + value: function scrollListener() { + var el = this.scrollComponent; + var scrollEl = window; + var parentNode = this.getParentElement(el); + + var offset = void 0; + if (this.props.useWindow) { + var doc = document.documentElement || document.body.parentNode || document.body; + var scrollTop = scrollEl.pageYOffset !== undefined ? scrollEl.pageYOffset : doc.scrollTop; + if (this.props.isReverse) { + offset = scrollTop; + } else { + offset = this.calculateOffset(el, scrollTop); + } + } else if (this.props.isReverse) { + offset = parentNode.scrollTop; + } else { + offset = el.scrollHeight - parentNode.scrollTop - parentNode.clientHeight; + } + + // Here we make sure the element is visible as well as checking the offset + if (offset < Number(this.props.threshold) && el && el.offsetParent !== null) { + this.detachScrollListener(); + this.beforeScrollHeight = parentNode.scrollHeight; + this.beforeScrollTop = parentNode.scrollTop; + // Call loadMore after detachScrollListener to allow for non-async loadMore functions + if (typeof this.props.loadMore === 'function') { + this.props.loadMore(this.pageLoaded += 1); + this.loadMore = true; + } + } + } + }, { + key: 'calculateOffset', + value: function calculateOffset(el, scrollTop) { + if (!el) { + return 0; + } + + return this.calculateTopPosition(el) + (el.offsetHeight - scrollTop - window.innerHeight); + } + }, { + key: 'calculateTopPosition', + value: function calculateTopPosition(el) { + if (!el) { + return 0; + } + return el.offsetTop + this.calculateTopPosition(el.offsetParent); + } + }, { + key: 'render', + value: function render() { + var _this2 = this; + + var renderProps = this.filterProps(this.props); + + var children = renderProps.children, + element = renderProps.element, + hasMore = renderProps.hasMore, + initialLoad = renderProps.initialLoad, + isReverse = renderProps.isReverse, + loader = renderProps.loader, + loadMore = renderProps.loadMore, + pageStart = renderProps.pageStart, + ref = renderProps.ref, + threshold = renderProps.threshold, + useCapture = renderProps.useCapture, + useWindow = renderProps.useWindow, + getScrollParent = renderProps.getScrollParent, + props = _objectWithoutProperties(renderProps, ['children', 'element', 'hasMore', 'initialLoad', 'isReverse', 'loader', 'loadMore', 'pageStart', 'ref', 'threshold', 'useCapture', 'useWindow', 'getScrollParent']); + + props.ref = function (node) { + _this2.scrollComponent = node; + if (ref) { + ref(node); + } + }; + + var childrenArray = [children]; + if (hasMore) { + if (loader) { + isReverse ? childrenArray.unshift(loader) : childrenArray.push(loader); + } else if (this.defaultLoader) { + isReverse ? childrenArray.unshift(this.defaultLoader) : childrenArray.push(this.defaultLoader); + } + } + return _react2.default.createElement(element, props, childrenArray); + } + }]); + + return InfiniteScroll; +}(_react.Component); + +InfiniteScroll.propTypes = { + children: _propTypes2.default.node.isRequired, + element: _propTypes2.default.node, + hasMore: _propTypes2.default.bool, + initialLoad: _propTypes2.default.bool, + isReverse: _propTypes2.default.bool, + loader: _propTypes2.default.node, + loadMore: _propTypes2.default.func.isRequired, + pageStart: _propTypes2.default.number, + ref: _propTypes2.default.func, + getScrollParent: _propTypes2.default.func, + threshold: _propTypes2.default.number, + useCapture: _propTypes2.default.bool, + useWindow: _propTypes2.default.bool +}; +InfiniteScroll.defaultProps = { + element: 'div', + hasMore: false, + initialLoad: true, + pageStart: 0, + ref: null, + threshold: 250, + useWindow: true, + isReverse: false, + useCapture: false, + loader: null, + getScrollParent: null +}; +exports["default"] = InfiniteScroll; +module.exports = exports['default']; + + +/***/ }), + +/***/ 246: +/*!*******************************************************!*\ + !*** ./node_modules/react-infinite-scroller/index.js ***! + \*******************************************************/ +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +module.exports = __webpack_require__(/*! ./dist/InfiniteScroll */ 57761) + + /***/ }) }]); \ No newline at end of file diff --git a/12030.async.js b/53585.async.js similarity index 82% rename from 12030.async.js rename to 53585.async.js index c2fc298277..0613b05d16 100644 --- a/12030.async.js +++ b/53585.async.js @@ -1,4 +1,4 @@ -(self["webpackChunk"] = self["webpackChunk"] || []).push([[12030,79256,21104],{ +(self["webpackChunk"] = self["webpackChunk"] || []).push([[53585,36579,2282,72693,46981,23805,79256,21104],{ /***/ 7918: /*!******************************************************************************!*\ @@ -558,379 +558,24 @@ ExclamationCircleOutlined.displayName = 'ExclamationCircleOutlined'; /***/ }), -/***/ 75008: -/*!*********************************************************!*\ - !*** ./node_modules/antd/es/input/index.js + 5 modules ***! - \*********************************************************/ +/***/ 5467: +/*!**********************************************************!*\ + !*** ./node_modules/antd/es/_util/getDataOrAriaProps.js ***! + \**********************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { "use strict"; - -// EXPORTS -__webpack_require__.d(__webpack_exports__, { - "Z": function() { return /* binding */ input; } -}); - -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js -var esm_extends = __webpack_require__(87462); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js -var defineProperty = __webpack_require__(4942); -// EXTERNAL MODULE: ./node_modules/classnames/index.js -var classnames = __webpack_require__(94184); -var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); -// EXTERNAL MODULE: ./node_modules/react/index.js -var react = __webpack_require__(67294); -// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js -var context = __webpack_require__(53124); -// EXTERNAL MODULE: ./node_modules/antd/es/form/context.js -var form_context = __webpack_require__(65223); -;// CONCATENATED MODULE: ./node_modules/antd/es/input/Group.js - - - - - - - -var Group = function Group(props) { - var _classNames; - var _useContext = (0,react.useContext)(context/* ConfigContext */.E_), - getPrefixCls = _useContext.getPrefixCls, - direction = _useContext.direction; - var customizePrefixCls = props.prefixCls, - _props$className = props.className, - className = _props$className === void 0 ? '' : _props$className; - var prefixCls = getPrefixCls('input-group', customizePrefixCls); - var cls = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-lg"), props.size === 'large'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-sm"), props.size === 'small'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-compact"), props.compact), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className); - var formItemContext = (0,react.useContext)(form_context/* FormItemInputContext */.aM); - var groupFormItemContext = (0,react.useMemo)(function () { - return (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, formItemContext), { - isFormItemInput: false - }); - }, [formItemContext]); - return /*#__PURE__*/react.createElement("span", { - className: cls, - style: props.style, - onMouseEnter: props.onMouseEnter, - onMouseLeave: props.onMouseLeave, - onFocus: props.onFocus, - onBlur: props.onBlur - }, /*#__PURE__*/react.createElement(form_context/* FormItemInputContext.Provider */.aM.Provider, { - value: groupFormItemContext - }, props.children)); -}; -/* harmony default export */ var input_Group = (Group); -// EXTERNAL MODULE: ./node_modules/antd/es/input/Input.js + 1 modules -var Input = __webpack_require__(82586); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules -var slicedToArray = __webpack_require__(97685); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js -var esm_typeof = __webpack_require__(71002); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js -var objectSpread2 = __webpack_require__(1413); -;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.js -// This icon file is generated automatically. -var EyeInvisibleOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M942.2 486.2Q889.47 375.11 816.7 305l-50.88 50.88C807.31 395.53 843.45 447.4 874.7 512 791.5 684.2 673.4 766 512 766q-72.67 0-133.87-22.38L323 798.75Q408 838 512 838q288.3 0 430.2-300.3a60.29 60.29 0 000-51.5zm-63.57-320.64L836 122.88a8 8 0 00-11.32 0L715.31 232.2Q624.86 186 512 186q-288.3 0-430.2 300.3a60.3 60.3 0 000 51.5q56.69 119.4 136.5 191.41L112.48 835a8 8 0 000 11.31L155.17 889a8 8 0 0011.31 0l712.15-712.12a8 8 0 000-11.32zM149.3 512C232.6 339.8 350.7 258 512 258c54.54 0 104.13 9.36 149.12 28.39l-70.3 70.3a176 176 0 00-238.13 238.13l-83.42 83.42C223.1 637.49 183.3 582.28 149.3 512zm246.7 0a112.11 112.11 0 01146.2-106.69L401.31 546.2A112 112 0 01396 512z" } }, { "tag": "path", "attrs": { "d": "M508 624c-3.46 0-6.87-.16-10.25-.47l-52.82 52.82a176.09 176.09 0 00227.42-227.42l-52.82 52.82c.31 3.38.47 6.79.47 10.25a111.94 111.94 0 01-112 112z" } }] }, "name": "eye-invisible", "theme": "outlined" }; -/* harmony default export */ var asn_EyeInvisibleOutlined = (EyeInvisibleOutlined); - -// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/components/AntdIcon.js + 3 modules -var AntdIcon = __webpack_require__(93771); -;// CONCATENATED MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.js - -// GENERATE BY ./scripts/generate.ts -// DON NOT EDIT IT MANUALLY - - - -var EyeInvisibleOutlined_EyeInvisibleOutlined = function EyeInvisibleOutlined(props, ref) { - return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, { - ref: ref, - icon: asn_EyeInvisibleOutlined - })); -}; -EyeInvisibleOutlined_EyeInvisibleOutlined.displayName = 'EyeInvisibleOutlined'; -/* harmony default export */ var icons_EyeInvisibleOutlined = (/*#__PURE__*/react.forwardRef(EyeInvisibleOutlined_EyeInvisibleOutlined)); -// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeOutlined.js + 1 modules -var EyeOutlined = __webpack_require__(7124); -// EXTERNAL MODULE: ./node_modules/rc-util/es/omit.js -var omit = __webpack_require__(98423); -// EXTERNAL MODULE: ./node_modules/rc-util/es/ref.js -var es_ref = __webpack_require__(42550); -// EXTERNAL MODULE: ./node_modules/antd/es/input/hooks/useRemovePasswordTimeout.js -var useRemovePasswordTimeout = __webpack_require__(72922); -;// CONCATENATED MODULE: ./node_modules/antd/es/input/Password.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; -}; - - - - - - - - - - -var defaultIconRender = function defaultIconRender(visible) { - return visible ? /*#__PURE__*/react.createElement(EyeOutlined/* default */.Z, null) : /*#__PURE__*/react.createElement(icons_EyeInvisibleOutlined, null); -}; -var ActionMap = { - click: 'onClick', - hover: 'onMouseOver' -}; -var Password = /*#__PURE__*/react.forwardRef(function (props, ref) { - var _props$visibilityTogg = props.visibilityToggle, - visibilityToggle = _props$visibilityTogg === void 0 ? true : _props$visibilityTogg; - var visibilityControlled = (0,esm_typeof/* default */.Z)(visibilityToggle) === 'object' && visibilityToggle.visible !== undefined; - var _useState = (0,react.useState)(function () { - return visibilityControlled ? visibilityToggle.visible : false; - }), - _useState2 = (0,slicedToArray/* default */.Z)(_useState, 2), - visible = _useState2[0], - setVisible = _useState2[1]; - var inputRef = (0,react.useRef)(null); - react.useEffect(function () { - if (visibilityControlled) { - setVisible(visibilityToggle.visible); - } - }, [visibilityControlled, visibilityToggle]); - // Remove Password value - var removePasswordTimeout = (0,useRemovePasswordTimeout/* default */.Z)(inputRef); - var onVisibleChange = function onVisibleChange() { - var disabled = props.disabled; - if (disabled) { - return; - } - if (visible) { - removePasswordTimeout(); - } - setVisible(function (prevState) { - var _a; - var newState = !prevState; - if ((0,esm_typeof/* default */.Z)(visibilityToggle) === 'object') { - (_a = visibilityToggle.onVisibleChange) === null || _a === void 0 ? void 0 : _a.call(visibilityToggle, newState); - } - return newState; - }); - }; - var getIcon = function getIcon(prefixCls) { - var _iconProps; - var _props$action = props.action, - action = _props$action === void 0 ? 'click' : _props$action, - _props$iconRender = props.iconRender, - iconRender = _props$iconRender === void 0 ? defaultIconRender : _props$iconRender; - var iconTrigger = ActionMap[action] || ''; - var icon = iconRender(visible); - var iconProps = (_iconProps = {}, (0,defineProperty/* default */.Z)(_iconProps, iconTrigger, onVisibleChange), (0,defineProperty/* default */.Z)(_iconProps, "className", "".concat(prefixCls, "-icon")), (0,defineProperty/* default */.Z)(_iconProps, "key", 'passwordIcon'), (0,defineProperty/* default */.Z)(_iconProps, "onMouseDown", function onMouseDown(e) { - // Prevent focused state lost - // https://github.com/ant-design/ant-design/issues/15173 - e.preventDefault(); - }), (0,defineProperty/* default */.Z)(_iconProps, "onMouseUp", function onMouseUp(e) { - // Prevent caret position change - // https://github.com/ant-design/ant-design/issues/23524 - e.preventDefault(); - }), _iconProps); - return /*#__PURE__*/react.cloneElement( /*#__PURE__*/react.isValidElement(icon) ? icon : /*#__PURE__*/react.createElement("span", null, icon), iconProps); - }; - var renderPassword = function renderPassword(_ref) { - var getPrefixCls = _ref.getPrefixCls; - var className = props.className, - customizePrefixCls = props.prefixCls, - customizeInputPrefixCls = props.inputPrefixCls, - size = props.size, - restProps = __rest(props, ["className", "prefixCls", "inputPrefixCls", "size"]); - var inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls); - var prefixCls = getPrefixCls('input-password', customizePrefixCls); - var suffixIcon = visibilityToggle && getIcon(prefixCls); - var inputClassName = classnames_default()(prefixCls, className, (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-").concat(size), !!size)); - var omittedProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, (0,omit/* default */.Z)(restProps, ['suffix', 'iconRender', 'visibilityToggle'])), { - type: visible ? 'text' : 'password', - className: inputClassName, - prefixCls: inputPrefixCls, - suffix: suffixIcon - }); - if (size) { - omittedProps.size = size; - } - return /*#__PURE__*/react.createElement(Input/* default */.ZP, (0,esm_extends/* default */.Z)({ - ref: (0,es_ref/* composeRef */.sQ)(ref, inputRef) - }, omittedProps)); - }; - return /*#__PURE__*/react.createElement(context/* ConfigConsumer */.C, null, renderPassword); -}); -if (false) {} -/* harmony default export */ var input_Password = (Password); -// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/SearchOutlined.js -var SearchOutlined = __webpack_require__(25783); -// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js -var es_button = __webpack_require__(71577); -// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/SizeContext.js -var SizeContext = __webpack_require__(97647); -// EXTERNAL MODULE: ./node_modules/antd/es/space/Compact.js -var Compact = __webpack_require__(4173); -// EXTERNAL MODULE: ./node_modules/antd/es/_util/reactNode.js -var reactNode = __webpack_require__(96159); -;// CONCATENATED MODULE: ./node_modules/antd/es/input/Search.js - - -var Search_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; -}; - - - - - - - - - - -var Search = /*#__PURE__*/react.forwardRef(function (props, ref) { - var _classNames; - var customizePrefixCls = props.prefixCls, - customizeInputPrefixCls = props.inputPrefixCls, - className = props.className, - customizeSize = props.size, - suffix = props.suffix, - _props$enterButton = props.enterButton, - enterButton = _props$enterButton === void 0 ? false : _props$enterButton, - addonAfter = props.addonAfter, - loading = props.loading, - disabled = props.disabled, - customOnSearch = props.onSearch, - customOnChange = props.onChange, - onCompositionStart = props.onCompositionStart, - onCompositionEnd = props.onCompositionEnd, - restProps = Search_rest(props, ["prefixCls", "inputPrefixCls", "className", "size", "suffix", "enterButton", "addonAfter", "loading", "disabled", "onSearch", "onChange", "onCompositionStart", "onCompositionEnd"]); - var _React$useContext = react.useContext(context/* ConfigContext */.E_), - getPrefixCls = _React$useContext.getPrefixCls, - direction = _React$useContext.direction; - var contextSize = react.useContext(SizeContext/* default */.Z); - var composedRef = react.useRef(false); - var prefixCls = getPrefixCls('input-search', customizePrefixCls); - var inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls); - var _useCompactItemContex = (0,Compact/* useCompactItemContext */.ri)(prefixCls, direction), - compactSize = _useCompactItemContex.compactSize; - var size = compactSize || customizeSize || contextSize; - var inputRef = react.useRef(null); - var onChange = function onChange(e) { - if (e && e.target && e.type === 'click' && customOnSearch) { - customOnSearch(e.target.value, e); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "Z": function() { return /* binding */ getDataOrAriaProps; } +/* harmony export */ }); +function getDataOrAriaProps(props) { + return Object.keys(props).reduce(function (prev, key) { + if ((key.startsWith('data-') || key.startsWith('aria-') || key === 'role') && !key.startsWith('data-__')) { + prev[key] = props[key]; } - if (customOnChange) { - customOnChange(e); - } - }; - var onMouseDown = function onMouseDown(e) { - var _a; - if (document.activeElement === ((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.input)) { - e.preventDefault(); - } - }; - var onSearch = function onSearch(e) { - var _a, _b; - if (customOnSearch) { - customOnSearch((_b = (_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.input) === null || _b === void 0 ? void 0 : _b.value, e); - } - }; - var onPressEnter = function onPressEnter(e) { - if (composedRef.current || loading) { - return; - } - onSearch(e); - }; - var searchIcon = typeof enterButton === 'boolean' ? /*#__PURE__*/react.createElement(SearchOutlined/* default */.Z, null) : null; - var btnClassName = "".concat(prefixCls, "-button"); - var button; - var enterButtonAsElement = enterButton || {}; - var isAntdButton = enterButtonAsElement.type && enterButtonAsElement.type.__ANT_BUTTON === true; - if (isAntdButton || enterButtonAsElement.type === 'button') { - button = (0,reactNode/* cloneElement */.Tm)(enterButtonAsElement, (0,esm_extends/* default */.Z)({ - onMouseDown: onMouseDown, - onClick: function onClick(e) { - var _a, _b; - (_b = (_a = enterButtonAsElement === null || enterButtonAsElement === void 0 ? void 0 : enterButtonAsElement.props) === null || _a === void 0 ? void 0 : _a.onClick) === null || _b === void 0 ? void 0 : _b.call(_a, e); - onSearch(e); - }, - key: 'enterButton' - }, isAntdButton ? { - className: btnClassName, - size: size - } : {})); - } else { - button = /*#__PURE__*/react.createElement(es_button/* default */.Z, { - className: btnClassName, - type: enterButton ? 'primary' : undefined, - size: size, - disabled: disabled, - key: "enterButton", - onMouseDown: onMouseDown, - onClick: onSearch, - loading: loading, - icon: searchIcon - }, enterButton); - } - if (addonAfter) { - button = [button, (0,reactNode/* cloneElement */.Tm)(addonAfter, { - key: 'addonAfter' - })]; - } - var cls = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-").concat(size), !!size), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-with-button"), !!enterButton), _classNames), className); - var handleOnCompositionStart = function handleOnCompositionStart(e) { - composedRef.current = true; - onCompositionStart === null || onCompositionStart === void 0 ? void 0 : onCompositionStart(e); - }; - var handleOnCompositionEnd = function handleOnCompositionEnd(e) { - composedRef.current = false; - onCompositionEnd === null || onCompositionEnd === void 0 ? void 0 : onCompositionEnd(e); - }; - return /*#__PURE__*/react.createElement(Input/* default */.ZP, (0,esm_extends/* default */.Z)({ - ref: (0,es_ref/* composeRef */.sQ)(inputRef, ref), - onPressEnter: onPressEnter - }, restProps, { - size: size, - onCompositionStart: handleOnCompositionStart, - onCompositionEnd: handleOnCompositionEnd, - prefixCls: inputPrefixCls, - addonAfter: button, - suffix: suffix, - onChange: onChange, - className: cls, - disabled: disabled - })); -}); -if (false) {} -/* harmony default export */ var input_Search = (Search); -// EXTERNAL MODULE: ./node_modules/antd/es/input/TextArea.js + 1 modules -var TextArea = __webpack_require__(80173); -;// CONCATENATED MODULE: ./node_modules/antd/es/input/index.js - - - - - -var input_Input = Input/* default */.ZP; -input_Input.Group = input_Group; -input_Input.Search = input_Search; -input_Input.TextArea = TextArea/* default */.Z; -input_Input.Password = input_Password; -/* harmony default export */ var input = (input_Input); + return prev; + }, {}); +} /***/ }), @@ -1336,6 +981,292 @@ var spin_style = __webpack_require__(22536); +/***/ }), + +/***/ 29924: +/*!*********************************************************!*\ + !*** ./node_modules/antd/es/radio/index.js + 4 modules ***! + \*********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "ZP": function() { return /* binding */ es_radio; } +}); + +// UNUSED EXPORTS: Button, Group + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules +var slicedToArray = __webpack_require__(97685); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/rc-util/es/hooks/useMergedState.js +var useMergedState = __webpack_require__(21770); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/SizeContext.js +var SizeContext = __webpack_require__(97647); +// EXTERNAL MODULE: ./node_modules/antd/es/_util/getDataOrAriaProps.js +var getDataOrAriaProps = __webpack_require__(5467); +;// CONCATENATED MODULE: ./node_modules/antd/es/radio/context.js + +var RadioGroupContext = /*#__PURE__*/react.createContext(null); +var RadioGroupContextProvider = RadioGroupContext.Provider; +/* harmony default export */ var radio_context = (RadioGroupContext); +var RadioOptionTypeContext = /*#__PURE__*/react.createContext(null); +var RadioOptionTypeContextProvider = RadioOptionTypeContext.Provider; +// EXTERNAL MODULE: ./node_modules/rc-checkbox/es/index.js +var es = __webpack_require__(50132); +// EXTERNAL MODULE: ./node_modules/rc-util/es/ref.js +var es_ref = __webpack_require__(42550); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/DisabledContext.js +var DisabledContext = __webpack_require__(98866); +// EXTERNAL MODULE: ./node_modules/antd/es/form/context.js +var form_context = __webpack_require__(65223); +;// CONCATENATED MODULE: ./node_modules/antd/es/radio/radio.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; +}; + + + + + + + + + + +var InternalRadio = function InternalRadio(props, ref) { + var _classNames; + var groupContext = react.useContext(radio_context); + var radioOptionTypeContext = react.useContext(RadioOptionTypeContext); + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var innerRef = react.useRef(); + var mergedRef = (0,es_ref/* composeRef */.sQ)(ref, innerRef); + var _useContext = (0,react.useContext)(form_context/* FormItemInputContext */.aM), + isFormItemInput = _useContext.isFormItemInput; + false ? 0 : void 0; + var onChange = function onChange(e) { + var _a, _b; + (_a = props.onChange) === null || _a === void 0 ? void 0 : _a.call(props, e); + (_b = groupContext === null || groupContext === void 0 ? void 0 : groupContext.onChange) === null || _b === void 0 ? void 0 : _b.call(groupContext, e); + }; + var customizePrefixCls = props.prefixCls, + className = props.className, + children = props.children, + style = props.style, + customDisabled = props.disabled, + restProps = __rest(props, ["prefixCls", "className", "children", "style", "disabled"]); + var radioPrefixCls = getPrefixCls('radio', customizePrefixCls); + var prefixCls = ((groupContext === null || groupContext === void 0 ? void 0 : groupContext.optionType) || radioOptionTypeContext) === 'button' ? "".concat(radioPrefixCls, "-button") : radioPrefixCls; + var radioProps = (0,esm_extends/* default */.Z)({}, restProps); + // ===================== Disabled ===================== + var disabled = react.useContext(DisabledContext/* default */.Z); + radioProps.disabled = customDisabled || disabled; + if (groupContext) { + radioProps.name = groupContext.name; + radioProps.onChange = onChange; + radioProps.checked = props.value === groupContext.value; + radioProps.disabled = radioProps.disabled || groupContext.disabled; + } + var wrapperClassString = classnames_default()("".concat(prefixCls, "-wrapper"), (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-checked"), radioProps.checked), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-disabled"), radioProps.disabled), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-rtl"), direction === 'rtl'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-in-form-item"), isFormItemInput), _classNames), className); + return ( + /*#__PURE__*/ + // eslint-disable-next-line jsx-a11y/label-has-associated-control + react.createElement("label", { + className: wrapperClassString, + style: style, + onMouseEnter: props.onMouseEnter, + onMouseLeave: props.onMouseLeave + }, /*#__PURE__*/react.createElement(es/* default */.Z, (0,esm_extends/* default */.Z)({}, radioProps, { + type: "radio", + prefixCls: prefixCls, + ref: mergedRef + })), children !== undefined ? /*#__PURE__*/react.createElement("span", null, children) : null) + ); +}; +var Radio = /*#__PURE__*/react.forwardRef(InternalRadio); +if (false) {} +/* harmony default export */ var radio_radio = (Radio); +;// CONCATENATED MODULE: ./node_modules/antd/es/radio/group.js + + + + + + + + + + + +var RadioGroup = /*#__PURE__*/react.forwardRef(function (props, ref) { + var _classNames; + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var size = react.useContext(SizeContext/* default */.Z); + var _useMergedState = (0,useMergedState/* default */.Z)(props.defaultValue, { + value: props.value + }), + _useMergedState2 = (0,slicedToArray/* default */.Z)(_useMergedState, 2), + value = _useMergedState2[0], + setValue = _useMergedState2[1]; + var onRadioChange = function onRadioChange(ev) { + var lastValue = value; + var val = ev.target.value; + if (!('value' in props)) { + setValue(val); + } + var onChange = props.onChange; + if (onChange && val !== lastValue) { + onChange(ev); + } + }; + var customizePrefixCls = props.prefixCls, + _props$className = props.className, + className = _props$className === void 0 ? '' : _props$className, + options = props.options, + _props$buttonStyle = props.buttonStyle, + buttonStyle = _props$buttonStyle === void 0 ? 'outline' : _props$buttonStyle, + disabled = props.disabled, + children = props.children, + customizeSize = props.size, + style = props.style, + id = props.id, + onMouseEnter = props.onMouseEnter, + onMouseLeave = props.onMouseLeave, + onFocus = props.onFocus, + onBlur = props.onBlur; + var prefixCls = getPrefixCls('radio', customizePrefixCls); + var groupPrefixCls = "".concat(prefixCls, "-group"); + var childrenToRender = children; + // 如果存在 options, 优先使用 + if (options && options.length > 0) { + childrenToRender = options.map(function (option) { + if (typeof option === 'string' || typeof option === 'number') { + // 此处类型自动推导为 string + return /*#__PURE__*/react.createElement(radio_radio, { + key: option.toString(), + prefixCls: prefixCls, + disabled: disabled, + value: option, + checked: value === option + }, option); + } + // 此处类型自动推导为 { label: string value: string } + return /*#__PURE__*/react.createElement(radio_radio, { + key: "radio-group-value-options-".concat(option.value), + prefixCls: prefixCls, + disabled: option.disabled || disabled, + value: option.value, + checked: value === option.value, + style: option.style + }, option.label); + }); + } + var mergedSize = customizeSize || size; + var classString = classnames_default()(groupPrefixCls, "".concat(groupPrefixCls, "-").concat(buttonStyle), (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(groupPrefixCls, "-").concat(mergedSize), mergedSize), (0,defineProperty/* default */.Z)(_classNames, "".concat(groupPrefixCls, "-rtl"), direction === 'rtl'), _classNames), className); + return /*#__PURE__*/react.createElement("div", (0,esm_extends/* default */.Z)({}, (0,getDataOrAriaProps/* default */.Z)(props), { + className: classString, + style: style, + onMouseEnter: onMouseEnter, + onMouseLeave: onMouseLeave, + onFocus: onFocus, + onBlur: onBlur, + id: id, + ref: ref + }), /*#__PURE__*/react.createElement(RadioGroupContextProvider, { + value: { + onChange: onRadioChange, + value: value, + disabled: props.disabled, + name: props.name, + optionType: props.optionType + } + }, childrenToRender)); +}); +/* harmony default export */ var group = (/*#__PURE__*/react.memo(RadioGroup)); +;// CONCATENATED MODULE: ./node_modules/antd/es/radio/radioButton.js + +var radioButton_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; +}; + + + + +var RadioButton = function RadioButton(props, ref) { + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls; + var customizePrefixCls = props.prefixCls, + radioProps = radioButton_rest(props, ["prefixCls"]); + var prefixCls = getPrefixCls('radio', customizePrefixCls); + return /*#__PURE__*/react.createElement(RadioOptionTypeContextProvider, { + value: "button" + }, /*#__PURE__*/react.createElement(radio_radio, (0,esm_extends/* default */.Z)({ + prefixCls: prefixCls + }, radioProps, { + type: "radio", + ref: ref + }))); +}; +/* harmony default export */ var radioButton = (/*#__PURE__*/react.forwardRef(RadioButton)); +;// CONCATENATED MODULE: ./node_modules/antd/es/radio/index.js + + + + +var radio_Radio = radio_radio; +radio_Radio.Button = radioButton; +radio_Radio.Group = group; +radio_Radio.__ANT_RADIO = true; +/* harmony default export */ var es_radio = (radio_Radio); + +/***/ }), + +/***/ 83822: +/*!***************************************************************!*\ + !*** ./node_modules/antd/es/radio/style/index.js + 1 modules ***! + \***************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/radio/style/index.less +// extracted by mini-css-extract-plugin + +;// CONCATENATED MODULE: ./node_modules/antd/es/radio/style/index.js + + +// deps-lint-skip: form + /***/ }), /***/ 73481: @@ -1775,48 +1706,6 @@ var style_default = __webpack_require__(43146); -/***/ }), - -/***/ 7124: -/*!**********************************************************************************************!*\ - !*** ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeOutlined.js + 1 modules ***! - \**********************************************************************************************/ -/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -// EXPORTS -__webpack_require__.d(__webpack_exports__, { - "Z": function() { return /* binding */ icons_EyeOutlined; } -}); - -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js -var objectSpread2 = __webpack_require__(1413); -// EXTERNAL MODULE: ./node_modules/react/index.js -var react = __webpack_require__(67294); -;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.js -// This icon file is generated automatically. -var EyeOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M942.2 486.2C847.4 286.5 704.1 186 512 186c-192.2 0-335.4 100.5-430.2 300.3a60.3 60.3 0 000 51.5C176.6 737.5 319.9 838 512 838c192.2 0 335.4-100.5 430.2-300.3 7.7-16.2 7.7-35 0-51.5zM512 766c-161.3 0-279.4-81.8-362.7-254C232.6 339.8 350.7 258 512 258c161.3 0 279.4 81.8 362.7 254C791.5 684.2 673.4 766 512 766zm-4-430c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm0 288c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z" } }] }, "name": "eye", "theme": "outlined" }; -/* harmony default export */ var asn_EyeOutlined = (EyeOutlined); - -// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/components/AntdIcon.js + 3 modules -var AntdIcon = __webpack_require__(93771); -;// CONCATENATED MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeOutlined.js - -// GENERATE BY ./scripts/generate.ts -// DON NOT EDIT IT MANUALLY - - - -var EyeOutlined_EyeOutlined = function EyeOutlined(props, ref) { - return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, { - ref: ref, - icon: asn_EyeOutlined - })); -}; -EyeOutlined_EyeOutlined.displayName = 'EyeOutlined'; -/* harmony default export */ var icons_EyeOutlined = (/*#__PURE__*/react.forwardRef(EyeOutlined_EyeOutlined)); - /***/ }), /***/ 50132: diff --git a/53585.chunk.css b/53585.chunk.css new file mode 100644 index 0000000000..14d183d5e3 --- /dev/null +++ b/53585.chunk.css @@ -0,0 +1,1788 @@ +/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/radio/style/index.less ***! + \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-radio-group { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + display: inline-block; + font-size: 0; +} +.ant-radio-group .ant-badge-count { + z-index: 1; +} +.ant-radio-group > .ant-badge:not(:first-child) > .ant-radio-button-wrapper { + border-left: none; +} +.ant-radio-wrapper { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + position: relative; + display: inline-flex; + align-items: baseline; + margin-right: 6px; + cursor: pointer; +} +.ant-radio-wrapper-disabled { + cursor: not-allowed; +} +.ant-radio-wrapper::after { + display: inline-block; + width: 0; + overflow: hidden; + content: '\a0'; +} +.ant-radio-wrapper.ant-radio-wrapper-in-form-item input[type='radio'] { + width: 14px; + height: 14px; +} +.ant-radio { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + position: relative; + top: 0.2em; + display: inline-block; + outline: none; + cursor: pointer; +} +.ant-radio-wrapper:hover .ant-radio, +.ant-radio:hover .ant-radio-inner, +.ant-radio-input:focus + .ant-radio-inner { + border-color: #3061D0; +} +.ant-radio-input:focus + .ant-radio-inner { + box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +} +.ant-radio-checked::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid #3061D0; + border-radius: 50%; + visibility: hidden; + animation: antRadioEffect 0.36s ease-in-out; + animation-fill-mode: both; + content: ''; +} +.ant-radio:hover::after, +.ant-radio-wrapper:hover .ant-radio::after { + visibility: visible; +} +.ant-radio-inner { + position: relative; + top: 0; + left: 0; + display: block; + width: 14px; + height: 14px; + background-color: #fff; + border-color: #d9d9d9; + border-style: solid; + border-width: 1px; + border-radius: 50%; + transition: all 0.3s; +} +.ant-radio-inner::after { + position: absolute; + top: 50%; + left: 50%; + display: block; + width: 14px; + height: 14px; + margin-top: -7px; + margin-left: -7px; + background-color: #3061D0; + border-top: 0; + border-left: 0; + border-radius: 14px; + transform: scale(0); + opacity: 0; + transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); + content: ' '; +} +.ant-radio-input { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + cursor: pointer; + opacity: 0; +} +.ant-radio.ant-radio-disabled .ant-radio-inner { + border-color: #d9d9d9; +} +.ant-radio-checked .ant-radio-inner { + border-color: #3061D0; +} +.ant-radio-checked .ant-radio-inner::after { + transform: scale(0.42857143); + opacity: 1; + transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.ant-radio-disabled { + cursor: not-allowed; +} +.ant-radio-disabled .ant-radio-inner { + background-color: #f5f5f5; + cursor: not-allowed; +} +.ant-radio-disabled .ant-radio-inner::after { + background-color: rgba(0, 0, 0, 0.2); +} +.ant-radio-disabled .ant-radio-input { + cursor: not-allowed; +} +.ant-radio-disabled + span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +span.ant-radio + * { + padding-right: 8px; + padding-left: 8px; +} +.ant-radio-button-wrapper { + position: relative; + display: inline-block; + height: 28px; + margin: 0; + padding: 0 7px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + line-height: 26px; + background: #fff; + border: 1px solid #d9d9d9; + border-top-width: 1.02px; + border-left-width: 0; + cursor: pointer; + transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s; +} +.ant-radio-button-wrapper a { + color: rgba(0, 0, 0, 0.85); +} +.ant-radio-button-wrapper > .ant-radio-button { + position: absolute; + top: 0; + left: 0; + z-index: -1; + width: 100%; + height: 100%; +} +.ant-radio-group-large .ant-radio-button-wrapper { + height: 32px; + font-size: 14px; + line-height: 30px; +} +.ant-radio-group-small .ant-radio-button-wrapper { + height: 22px; + padding: 0 7px; + line-height: 20px; +} +.ant-radio-button-wrapper:not(:first-child)::before { + position: absolute; + top: -1px; + left: -1px; + display: block; + box-sizing: content-box; + width: 1px; + height: 100%; + padding: 1px 0; + background-color: #d9d9d9; + transition: background-color 0.3s; + content: ''; +} +.ant-radio-button-wrapper:first-child { + border-left: 1px solid #d9d9d9; + border-radius: 2px 0 0 2px; +} +.ant-radio-button-wrapper:last-child { + border-radius: 0 2px 2px 0; +} +.ant-radio-button-wrapper:first-child:last-child { + border-radius: 2px; +} +.ant-radio-button-wrapper:hover { + position: relative; + color: #3061D0; +} +.ant-radio-button-wrapper:focus-within { + box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +} +.ant-radio-button-wrapper .ant-radio-inner, +.ant-radio-button-wrapper input[type='checkbox'], +.ant-radio-button-wrapper input[type='radio'] { + width: 0; + height: 0; + opacity: 0; + pointer-events: none; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { + z-index: 1; + color: #3061D0; + background: #fff; + border-color: #3061D0; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before { + background-color: #3061D0; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child { + border-color: #3061D0; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { + color: #5784de; + border-color: #5784de; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before { + background-color: #5784de; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { + color: #1f44ab; + border-color: #1f44ab; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before { + background-color: #1f44ab; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { + box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { + color: #fff; + background: #3061D0; + border-color: #3061D0; +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { + color: #fff; + background: #5784de; + border-color: #5784de; +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { + color: #fff; + background: #1f44ab; + border-color: #1f44ab; +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { + box-shadow: 0 0 0 3px rgba(48, 97, 208, 0.12); +} +.ant-radio-button-wrapper-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + cursor: not-allowed; +} +.ant-radio-button-wrapper-disabled:first-child, +.ant-radio-button-wrapper-disabled:hover { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; +} +.ant-radio-button-wrapper-disabled:first-child { + border-left-color: #d9d9d9; +} +.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked { + color: rgba(0, 0, 0, 0.25); + background-color: #e6e6e6; + border-color: #d9d9d9; + box-shadow: none; +} +@keyframes antRadioEffect { + 0% { + transform: scale(1); + opacity: 0.5; + } + 100% { + transform: scale(1.6); + opacity: 0; + } +} +.ant-radio-group.ant-radio-group-rtl { + direction: rtl; +} +.ant-radio-wrapper.ant-radio-wrapper-rtl { + margin-right: 0; + margin-left: 6px; + direction: rtl; +} +.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl { + border-right-width: 0; + border-left-width: 1px; +} +.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(:first-child)::before { + right: -1px; + left: 0; +} +.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child { + border-right: 1px solid #d9d9d9; + border-radius: 0 2px 2px 0; +} +.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child { + border-right-color: #5784de; +} +.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child { + border-radius: 2px 0 0 2px; +} +.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child { + border-right-color: #d9d9d9; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/skeleton/style/index.less ***! + \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-skeleton { + display: table; + width: 100%; +} +.ant-skeleton-header { + display: table-cell; + padding-right: 8px; + vertical-align: top; +} +.ant-skeleton-header .ant-skeleton-avatar { + display: inline-block; + vertical-align: top; + background: rgba(190, 190, 190, 0.2); + width: 28px; + height: 28px; + line-height: 28px; +} +.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-header .ant-skeleton-avatar-lg { + width: 32px; + height: 32px; + line-height: 32px; +} +.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-header .ant-skeleton-avatar-sm { + width: 22px; + height: 22px; + line-height: 22px; +} +.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-content { + display: table-cell; + width: 100%; + vertical-align: top; +} +.ant-skeleton-content .ant-skeleton-title { + width: 100%; + height: 14px; + background: rgba(190, 190, 190, 0.2); + border-radius: 2px; +} +.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph { + margin-top: 20px; +} +.ant-skeleton-content .ant-skeleton-paragraph { + padding: 0; +} +.ant-skeleton-content .ant-skeleton-paragraph > li { + width: 100%; + height: 14px; + list-style: none; + background: rgba(190, 190, 190, 0.2); + border-radius: 2px; +} +.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) { + width: 61%; +} +.ant-skeleton-content .ant-skeleton-paragraph > li + li { + margin-top: 12px; +} +.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title { + margin-top: 8px; +} +.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph { + margin-top: 20px; +} +.ant-skeleton-round .ant-skeleton-content .ant-skeleton-title, +.ant-skeleton-round .ant-skeleton-content .ant-skeleton-paragraph > li { + border-radius: 100px; +} +.ant-skeleton-active .ant-skeleton-title, +.ant-skeleton-active .ant-skeleton-paragraph > li, +.ant-skeleton-active .ant-skeleton-avatar, +.ant-skeleton-active .ant-skeleton-button, +.ant-skeleton-active .ant-skeleton-input, +.ant-skeleton-active .ant-skeleton-image { + position: relative; + /* stylelint-disable-next-line property-no-vendor-prefix,value-no-vendor-prefix */ + z-index: 0; + overflow: hidden; + background: transparent; +} +.ant-skeleton-active .ant-skeleton-title::after, +.ant-skeleton-active .ant-skeleton-paragraph > li::after, +.ant-skeleton-active .ant-skeleton-avatar::after, +.ant-skeleton-active .ant-skeleton-button::after, +.ant-skeleton-active .ant-skeleton-input::after, +.ant-skeleton-active .ant-skeleton-image::after { + position: absolute; + top: 0; + right: -150%; + bottom: 0; + left: -150%; + background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%); + animation: ant-skeleton-loading 1.4s ease infinite; + content: ''; +} +.ant-skeleton.ant-skeleton-block { + width: 100%; +} +.ant-skeleton.ant-skeleton-block .ant-skeleton-button { + width: 100%; +} +.ant-skeleton.ant-skeleton-block .ant-skeleton-input { + width: 100%; +} +.ant-skeleton-element { + display: inline-block; + width: auto; +} +.ant-skeleton-element .ant-skeleton-button { + display: inline-block; + vertical-align: top; + background: rgba(190, 190, 190, 0.2); + border-radius: 2px; + width: 56px; + min-width: 56px; + height: 28px; + line-height: 28px; +} +.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-square { + width: 28px; + min-width: 28px; +} +.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle { + width: 28px; + min-width: 28px; + border-radius: 50%; +} +.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round { + border-radius: 28px; +} +.ant-skeleton-element .ant-skeleton-button-lg { + width: 64px; + min-width: 64px; + height: 32px; + line-height: 32px; +} +.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-square { + width: 32px; + min-width: 32px; +} +.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle { + width: 32px; + min-width: 32px; + border-radius: 50%; +} +.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round { + border-radius: 32px; +} +.ant-skeleton-element .ant-skeleton-button-sm { + width: 44px; + min-width: 44px; + height: 22px; + line-height: 22px; +} +.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-square { + width: 22px; + min-width: 22px; +} +.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle { + width: 22px; + min-width: 22px; + border-radius: 50%; +} +.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round { + border-radius: 22px; +} +.ant-skeleton-element .ant-skeleton-avatar { + display: inline-block; + vertical-align: top; + background: rgba(190, 190, 190, 0.2); + width: 28px; + height: 28px; + line-height: 28px; +} +.ant-skeleton-element .ant-skeleton-avatar.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-element .ant-skeleton-avatar-lg { + width: 32px; + height: 32px; + line-height: 32px; +} +.ant-skeleton-element .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-element .ant-skeleton-avatar-sm { + width: 22px; + height: 22px; + line-height: 22px; +} +.ant-skeleton-element .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-element .ant-skeleton-input { + display: inline-block; + vertical-align: top; + background: rgba(190, 190, 190, 0.2); + width: 140px; + min-width: 140px; + height: 28px; + line-height: 28px; +} +.ant-skeleton-element .ant-skeleton-input-lg { + width: 160px; + min-width: 160px; + height: 32px; + line-height: 32px; +} +.ant-skeleton-element .ant-skeleton-input-sm { + width: 110px; + min-width: 110px; + height: 22px; + line-height: 22px; +} +.ant-skeleton-element .ant-skeleton-image { + display: flex; + align-items: center; + justify-content: center; + vertical-align: top; + background: rgba(190, 190, 190, 0.2); + width: 96px; + height: 96px; + line-height: 96px; +} +.ant-skeleton-element .ant-skeleton-image.ant-skeleton-image-circle { + border-radius: 50%; +} +.ant-skeleton-element .ant-skeleton-image-path { + fill: #bfbfbf; +} +.ant-skeleton-element .ant-skeleton-image-svg { + width: 48px; + height: 48px; + line-height: 48px; + max-width: 192px; + max-height: 192px; +} +.ant-skeleton-element .ant-skeleton-image-svg.ant-skeleton-image-circle { + border-radius: 50%; +} +@keyframes ant-skeleton-loading { + 0% { + transform: translateX(-37.5%); + } + 100% { + transform: translateX(37.5%); + } +} +.ant-skeleton-rtl { + direction: rtl; +} +.ant-skeleton-rtl .ant-skeleton-header { + padding-right: 0; + padding-left: 16px; +} +.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title, +.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li { + animation-name: ant-skeleton-loading-rtl; +} +.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar { + animation-name: ant-skeleton-loading-rtl; +} +@keyframes ant-skeleton-loading-rtl { + 0% { + background-position: 0% 50%; + } + 100% { + background-position: 100% 50%; + } +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/list/style/index.less ***! + \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-list { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + position: relative; +} +.ant-list * { + outline: none; +} +.ant-list-pagination { + margin-top: 16px; + text-align: right; +} +.ant-list-pagination .ant-pagination-options { + text-align: left; +} +.ant-list-more { + margin-top: 8px; + text-align: center; +} +.ant-list-more button { + padding-right: 32px; + padding-left: 32px; +} +.ant-list-spin { + min-height: 40px; + text-align: center; +} +.ant-list-empty-text { + padding: 8px; + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + text-align: center; +} +.ant-list-items { + margin: 0; + padding: 0; + list-style: none; +} +.ant-list-item { + display: flex; + align-items: center; + justify-content: space-between; + padding: 8px 0; + color: rgba(0, 0, 0, 0.85); +} +.ant-list-item-meta { + display: flex; + flex: 1 1; + align-items: flex-start; + max-width: 100%; +} +.ant-list-item-meta-avatar { + margin-right: 8px; +} +.ant-list-item-meta-content { + flex: 1 0; + width: 0; + color: rgba(0, 0, 0, 0.85); +} +.ant-list-item-meta-title { + margin-bottom: 4px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + line-height: 1.66667; +} +.ant-list-item-meta-title > a { + color: rgba(0, 0, 0, 0.85); + transition: all 0.3s; +} +.ant-list-item-meta-title > a:hover { + color: #3061D0; +} +.ant-list-item-meta-description { + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + line-height: 1.66667; +} +.ant-list-item-action { + flex: 0 0 auto; + margin-left: 48px; + padding: 0; + font-size: 0; + list-style: none; +} +.ant-list-item-action > li { + position: relative; + display: inline-block; + padding: 0 4px; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + line-height: 1.66667; + text-align: center; +} +.ant-list-item-action > li:first-child { + padding-left: 0; +} +.ant-list-item-action-split { + position: absolute; + top: 50%; + right: 0; + width: 1px; + height: 14px; + margin-top: -7px; + background-color: #f0f0f0; +} +.ant-list-header { + background: transparent; +} +.ant-list-footer { + background: transparent; +} +.ant-list-header, +.ant-list-footer { + padding-top: 8px; + padding-bottom: 8px; +} +.ant-list-empty { + padding: 8px 0; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + text-align: center; +} +.ant-list-split .ant-list-item { + border-bottom: 1px solid #f0f0f0; +} +.ant-list-split .ant-list-item:last-child { + border-bottom: none; +} +.ant-list-split .ant-list-header { + border-bottom: 1px solid #f0f0f0; +} +.ant-list-split.ant-list-empty .ant-list-footer { + border-top: 1px solid #f0f0f0; +} +.ant-list-loading .ant-list-spin-nested-loading { + min-height: 32px; +} +.ant-list-split.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child { + border-bottom: 1px solid #f0f0f0; +} +.ant-list-lg .ant-list-item { + padding: 12px 16px; +} +.ant-list-sm .ant-list-item { + padding: 4px 12px; +} +.ant-list-vertical .ant-list-item { + align-items: initial; +} +.ant-list-vertical .ant-list-item-main { + display: block; + flex: 1 1; +} +.ant-list-vertical .ant-list-item-extra { + margin-left: 40px; +} +.ant-list-vertical .ant-list-item-meta { + margin-bottom: 8px; +} +.ant-list-vertical .ant-list-item-meta-title { + margin-bottom: 8px; + color: rgba(0, 0, 0, 0.85); + font-size: 14px; + line-height: 24px; +} +.ant-list-vertical .ant-list-item-action { + margin-top: 8px; + margin-left: auto; +} +.ant-list-vertical .ant-list-item-action > li { + padding: 0 8px; +} +.ant-list-vertical .ant-list-item-action > li:first-child { + padding-left: 0; +} +.ant-list-grid .ant-col > .ant-list-item { + display: block; + max-width: 100%; + margin-bottom: 8px; + padding-top: 0; + padding-bottom: 0; + border-bottom: none; +} +.ant-list-item-no-flex { + display: block; +} +.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action { + float: right; +} +.ant-list-bordered { + border: 1px solid #d9d9d9; + border-radius: 2px; +} +.ant-list-bordered .ant-list-header { + padding-right: 16px; + padding-left: 16px; +} +.ant-list-bordered .ant-list-footer { + padding-right: 16px; + padding-left: 16px; +} +.ant-list-bordered .ant-list-item { + padding-right: 16px; + padding-left: 16px; +} +.ant-list-bordered .ant-list-pagination { + margin: 8px 16px; +} +.ant-list-bordered.ant-list-sm .ant-list-item { + padding: 4px 12px; +} +.ant-list-bordered.ant-list-sm .ant-list-header, +.ant-list-bordered.ant-list-sm .ant-list-footer { + padding: 4px 12px; +} +.ant-list-bordered.ant-list-lg .ant-list-item { + padding: 12px 16px; +} +.ant-list-bordered.ant-list-lg .ant-list-header, +.ant-list-bordered.ant-list-lg .ant-list-footer { + padding: 12px 16px; +} +@media screen and (max-width: 768px) { + .ant-list-item-action { + margin-left: 24px; + } + .ant-list-vertical .ant-list-item-extra { + margin-left: 24px; + } +} +@media screen and (max-width: 576px) { + .ant-list-item { + flex-wrap: wrap; + } + .ant-list-item-action { + margin-left: 12px; + } + .ant-list-vertical .ant-list-item { + flex-wrap: wrap-reverse; + } + .ant-list-vertical .ant-list-item-main { + min-width: 220px; + } + .ant-list-vertical .ant-list-item-extra { + margin: auto auto 16px; + } +} +.ant-list-rtl { + direction: rtl; + text-align: right; +} +.ant-list-rtl .ReactVirtualized__List .ant-list-item { + direction: rtl; +} +.ant-list-rtl .ant-list-pagination { + text-align: left; +} +.ant-list-rtl .ant-list-item-meta-avatar { + margin-right: 0; + margin-left: 8px; +} +.ant-list-rtl .ant-list-item-action { + margin-right: 48px; + margin-left: 0; +} +.ant-list.ant-list-rtl .ant-list-item-action > li:first-child { + padding-right: 0; + padding-left: 8px; +} +.ant-list-rtl .ant-list-item-action-split { + right: auto; + left: 0; +} +.ant-list-rtl.ant-list-vertical .ant-list-item-extra { + margin-right: 40px; + margin-left: 0; +} +.ant-list-rtl.ant-list-vertical .ant-list-item-action { + margin-right: auto; +} +.ant-list-rtl .ant-list-vertical .ant-list-item-action > li:first-child { + padding-right: 0; + padding-left: 8px; +} +.ant-list-rtl .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action { + float: left; +} +@media screen and (max-width: 768px) { + .ant-list-rtl .ant-list-item-action { + margin-right: 24px; + margin-left: 0; + } + .ant-list-rtl .ant-list-vertical .ant-list-item-extra { + margin-right: 24px; + margin-left: 0; + } +} +@media screen and (max-width: 576px) { + .ant-list-rtl .ant-list-item-action { + margin-right: 22px; + margin-left: 0; + } + .ant-list-rtl.ant-list-vertical .ant-list-item-extra { + margin: auto auto 16px; + } +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/form/style/index.less ***! + \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-form-item .ant-input-number + .ant-form-text { + margin-left: 8px; +} +.ant-form-inline { + display: flex; + flex-wrap: wrap; +} +.ant-form-inline .ant-form-item { + flex: none; + flex-wrap: nowrap; + margin-right: 16px; + margin-bottom: 0; +} +.ant-form-inline .ant-form-item-with-help { + margin-bottom: 16px; +} +.ant-form-inline .ant-form-item > .ant-form-item-label, +.ant-form-inline .ant-form-item > .ant-form-item-control { + display: inline-block; + vertical-align: top; +} +.ant-form-inline .ant-form-item > .ant-form-item-label { + flex: none; +} +.ant-form-inline .ant-form-item .ant-form-text { + display: inline-block; +} +.ant-form-inline .ant-form-item .ant-form-item-has-feedback { + display: inline-block; +} +.ant-form-horizontal .ant-form-item-label { + flex-grow: 0; +} +.ant-form-horizontal .ant-form-item-control { + flex: 1 1; + min-width: 0; +} +.ant-form-horizontal .ant-form-item-label[class$='-24'] + .ant-form-item-control, +.ant-form-horizontal .ant-form-item-label[class*='-24 '] + .ant-form-item-control { + min-width: 0; + min-width: initial; +} +.ant-form-vertical .ant-form-item-row { + flex-direction: column; +} +.ant-form-vertical .ant-form-item-label > label { + height: auto; +} +.ant-form-vertical .ant-form-item .ant-form-item-control { + width: 100%; +} +.ant-form-vertical .ant-form-item-label, +.ant-col-24.ant-form-item-label, +.ant-col-xl-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; +} +.ant-form-vertical .ant-form-item-label > label, +.ant-col-24.ant-form-item-label > label, +.ant-col-xl-24.ant-form-item-label > label { + margin: 0; +} +.ant-form-vertical .ant-form-item-label > label::after, +.ant-col-24.ant-form-item-label > label::after, +.ant-col-xl-24.ant-form-item-label > label::after { + display: none; +} +.ant-form-rtl.ant-form-vertical .ant-form-item-label, +.ant-form-rtl.ant-col-24.ant-form-item-label, +.ant-form-rtl.ant-col-xl-24.ant-form-item-label { + text-align: right; +} +@media (max-width: 575px) { + .ant-form-item .ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-form-item .ant-form-item-label > label { + margin: 0; + } + .ant-form-item .ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-form-item .ant-form-item-label { + text-align: right; + } + .ant-form .ant-form-item { + flex-wrap: wrap; + } + .ant-form .ant-form-item .ant-form-item-label, + .ant-form .ant-form-item .ant-form-item-control { + flex: 0 0 100%; + max-width: 100%; + } + .ant-col-xs-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-xs-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-xs-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-xs-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 767px) { + .ant-col-sm-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-sm-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-sm-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-sm-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 991px) { + .ant-col-md-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-md-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-md-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-md-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 1199px) { + .ant-col-lg-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-lg-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-lg-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-lg-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 1599px) { + .ant-col-xl-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-xl-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-xl-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-xl-24.ant-form-item-label { + text-align: right; + } +} +.ant-form-item { + /* Some non-status related component style is in `components.less` */ + /* To support leave along ErrorList. We add additional className to handle explain style */ +} +.ant-form-item-explain-error { + color: #ff4d4f; +} +.ant-form-item-explain-warning { + color: #faad14; +} +.ant-form-item-has-feedback .ant-switch { + margin: 2px 0 4px; +} +.ant-form-item-has-warning .ant-form-item-split { + color: #faad14; +} +.ant-form-item-has-error .ant-form-item-split { + color: #ff4d4f; +} +.ant-form { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; +} +.ant-form legend { + display: block; + width: 100%; + margin-bottom: 20px; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-size: 14px; + line-height: inherit; + border: 0; + border-bottom: 1px solid #d9d9d9; +} +.ant-form label { + font-size: 12px; +} +.ant-form input[type='search'] { + box-sizing: border-box; +} +.ant-form input[type='radio'], +.ant-form input[type='checkbox'] { + line-height: normal; +} +.ant-form input[type='file'] { + display: block; +} +.ant-form input[type='range'] { + display: block; + width: 100%; +} +.ant-form select[multiple], +.ant-form select[size] { + height: auto; +} +.ant-form input[type='file']:focus, +.ant-form input[type='radio']:focus, +.ant-form input[type='checkbox']:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.ant-form output { + display: block; + padding-top: 15px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + line-height: 1.66667; +} +.ant-form .ant-form-text { + display: inline-block; + padding-right: 8px; +} +.ant-form-small .ant-form-item-label > label { + height: 22px; +} +.ant-form-small .ant-form-item-control-input { + min-height: 22px; +} +.ant-form-large .ant-form-item-label > label { + height: 32px; +} +.ant-form-large .ant-form-item-control-input { + min-height: 32px; +} +.ant-form-item { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + margin-bottom: 16px; + vertical-align: top; +} +.ant-form-item-with-help { + transition: none; +} +.ant-form-item-hidden, +.ant-form-item-hidden.ant-row { + display: none; +} +.ant-form-item-label { + display: inline-block; + flex-grow: 0; + overflow: hidden; + white-space: nowrap; + text-align: right; + vertical-align: middle; +} +.ant-form-item-label-left { + text-align: left; +} +.ant-form-item-label-wrap { + overflow: visible; + overflow: initial; + line-height: 1.41667em; + white-space: inherit; +} +.ant-form-item-label > label { + position: relative; + display: inline-flex; + align-items: center; + max-width: 100%; + height: 28px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; +} +.ant-form-item-label > label > .anticon { + font-size: 12px; + vertical-align: top; +} +.ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before { + display: inline-block; + margin-right: 4px; + color: #ff4d4f; + font-size: 12px; + font-family: SimSun, sans-serif; + line-height: 1; + content: '*'; +} +.ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before { + display: none; +} +.ant-form-item-label > label .ant-form-item-optional { + display: inline-block; + margin-left: 0px; + color: rgba(0, 0, 0, 0.45); +} +.ant-form-hide-required-mark .ant-form-item-label > label .ant-form-item-optional { + display: none; +} +.ant-form-item-label > label .ant-form-item-tooltip { + color: rgba(0, 0, 0, 0.45); + cursor: help; + -webkit-writing-mode: horizontal-tb; + -ms-writing-mode: lr-tb; + writing-mode: horizontal-tb; + -webkit-margin-start: 0px; + margin-inline-start: 0px; +} +.ant-form-item-label > label::after { + content: ':'; + position: relative; + top: -0.5px; + margin: 0 8px 0 2px; +} +.ant-form-item-label > label.ant-form-item-no-colon::after { + content: ' '; +} +.ant-form-item-control { + display: flex; + flex-direction: column; + flex-grow: 1; +} +.ant-form-item-control:first-child:not([class^='ant-col-']):not([class*=' ant-col-']) { + width: 100%; +} +.ant-form-item-control-input { + position: relative; + display: flex; + align-items: center; + min-height: 28px; +} +.ant-form-item-control-input-content { + flex: auto; + max-width: 100%; +} +.ant-form-item-explain, +.ant-form-item-extra { + clear: both; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + line-height: 1.66667; + transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); +} +.ant-form-item-explain-connected { + width: 100%; +} +.ant-form-item-extra { + min-height: 16px; +} +.ant-form-item-with-help .ant-form-item-explain { + height: auto; + opacity: 1; +} +.ant-form-item-feedback-icon { + font-size: 12px; + text-align: center; + visibility: visible; + animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + pointer-events: none; +} +.ant-form-item-feedback-icon-success { + color: #52c41a; +} +.ant-form-item-feedback-icon-error { + color: #ff4d4f; +} +.ant-form-item-feedback-icon-warning { + color: #faad14; +} +.ant-form-item-feedback-icon-validating { + color: #3061D0; +} +.ant-show-help { + transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-show-help-appear, +.ant-show-help-enter { + opacity: 0; +} +.ant-show-help-appear-active, +.ant-show-help-enter-active { + opacity: 1; +} +.ant-show-help-leave { + opacity: 1; +} +.ant-show-help-leave-active { + opacity: 0; +} +.ant-show-help-item { + overflow: hidden; + transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important; +} +.ant-show-help-item-appear, +.ant-show-help-item-enter { + transform: translateY(-5px); + opacity: 0; +} +.ant-show-help-item-appear-active, +.ant-show-help-item-enter-active { + transform: translateY(0); + opacity: 1; +} +.ant-show-help-item-leave { + transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important; +} +.ant-show-help-item-leave-active { + transform: translateY(-5px); +} +@keyframes diffZoomIn1 { + 0% { + transform: scale(0); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@keyframes diffZoomIn2 { + 0% { + transform: scale(0); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@keyframes diffZoomIn3 { + 0% { + transform: scale(0); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +.ant-form-rtl { + direction: rtl; +} +.ant-form-rtl .ant-form-item-label { + text-align: left; +} +.ant-form-rtl .ant-form-item-label > label.ant-form-item-required::before { + margin-right: 0; + margin-left: 4px; +} +.ant-form-rtl .ant-form-item-label > label::after { + margin: 0 2px 0 8px; +} +.ant-form-rtl .ant-form-item-label > label .ant-form-item-optional { + margin-right: 0px; + margin-left: 0; +} +.ant-col-rtl .ant-form-item-control:first-child { + width: 100%; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input { + padding-right: 7px; + padding-left: 24px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input-suffix { + padding-right: 7px; + padding-left: 18px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input { + padding: 0; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-number-affix-wrapper .ant-input-number { + padding: 0; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix { + right: auto; + left: 28px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-number { + padding-left: 18px; +} +.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-arrow, +.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-clear, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear { + right: auto; + left: 32px; +} +.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value { + padding-right: 0; + padding-left: 42px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-arrow { + margin-right: 0; + margin-left: 19px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-clear { + right: auto; + left: 32px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-picker { + padding-right: 7px; + padding-left: 22.6px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-picker-large { + padding-right: 11px; + padding-left: 26.6px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-picker-small { + padding-right: 7px; + padding-left: 22.6px; +} +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon, +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-warning .ant-form-item-children-icon, +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-error .ant-form-item-children-icon, +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-is-validating .ant-form-item-children-icon { + right: auto; + left: 0; +} +.ant-form-rtl.ant-form-inline .ant-form-item { + margin-right: 0; + margin-left: 16px; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/divider/style/index.less ***! + \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-divider { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + border-top: 1px solid rgba(0, 0, 0, 0.06); +} +.ant-divider-vertical { + position: relative; + top: -0.06em; + display: inline-block; + height: 0.9em; + margin: 0 8px; + vertical-align: middle; + border-top: 0; + border-left: 1px solid rgba(0, 0, 0, 0.06); +} +.ant-divider-horizontal { + display: flex; + clear: both; + width: 100%; + min-width: 100%; + margin: 24px 0; +} +.ant-divider-horizontal.ant-divider-with-text { + display: flex; + align-items: center; + margin: 16px 0; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 14px; + white-space: nowrap; + text-align: center; + border-top: 0; + border-top-color: rgba(0, 0, 0, 0.06); +} +.ant-divider-horizontal.ant-divider-with-text::before, +.ant-divider-horizontal.ant-divider-with-text::after { + position: relative; + width: 50%; + border-top: 1px solid transparent; + border-top-color: inherit; + border-bottom: 0; + transform: translateY(50%); + content: ''; +} +.ant-divider-horizontal.ant-divider-with-text-left::before { + width: 5%; +} +.ant-divider-horizontal.ant-divider-with-text-left::after { + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::before { + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::after { + width: 5%; +} +.ant-divider-inner-text { + display: inline-block; + padding: 0 1em; +} +.ant-divider-dashed { + background: none; + border-color: rgba(0, 0, 0, 0.06); + border-style: dashed; + border-width: 1px 0 0; +} +.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before, +.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after { + border-style: dashed none none; +} +.ant-divider-vertical.ant-divider-dashed { + border-width: 0 0 0 1px; +} +.ant-divider-plain.ant-divider-with-text { + color: rgba(0, 0, 0, 0.85); + font-weight: normal; + font-size: 12px; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before { + width: 0; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after { + width: 100%; +} +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text { + padding-left: 0; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before { + width: 100%; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after { + width: 0; +} +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text { + padding-right: 0; +} +.ant-divider-rtl { + direction: rtl; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before { + width: 95%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after { + width: 5%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before { + width: 5%; +} +.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after { + width: 95%; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/rate/style/index.less ***! + \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-rate { + box-sizing: border-box; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + font-feature-settings: tnum, "tnum"; + display: inline-block; + margin: 0; + padding: 0; + color: #fadb14; + font-size: 16px; + line-height: inherit; + list-style: none; + outline: none; +} +.ant-rate-disabled .ant-rate-star { + cursor: default; +} +.ant-rate-disabled .ant-rate-star > div:hover { + transform: scale(1); +} +.ant-rate-star { + position: relative; + display: inline-block; + color: inherit; + cursor: pointer; +} +.ant-rate-star:not(:last-child) { + margin-right: 8px; +} +.ant-rate-star > div { + transition: all 0.3s, outline 0s; +} +.ant-rate-star > div:hover { + transform: scale(1.1); +} +.ant-rate-star > div:focus { + outline: 0; +} +.ant-rate-star > div:focus-visible { + outline: 1px dashed #fadb14; + transform: scale(1.1); +} +.ant-rate-star-first, +.ant-rate-star-second { + color: #f0f0f0; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-rate-star-first .anticon, +.ant-rate-star-second .anticon { + vertical-align: middle; +} +.ant-rate-star-first { + position: absolute; + top: 0; + left: 0; + width: 50%; + height: 100%; + overflow: hidden; + opacity: 0; +} +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-half .ant-rate-star-second { + opacity: 1; +} +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-full .ant-rate-star-second { + color: inherit; +} +.ant-rate-text { + display: inline-block; + margin: 0 8px; + font-size: 12px; +} +.ant-rate-rtl { + direction: rtl; +} +.ant-rate-rtl .ant-rate-star:not(:last-child) { + margin-right: 0; + margin-left: 8px; +} +.ant-rate-rtl .ant-rate-star-first { + right: 0; + left: auto; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + diff --git a/54836.async.js b/54836.async.js index c1533d9c7f..4ba73f0ca8 100644 --- a/54836.async.js +++ b/54836.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/69060.async.js b/69060.async.js index 3862c17e7e..c3bde21c15 100644 --- a/69060.async.js +++ b/69060.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/84685.async.js b/80583.async.js similarity index 66% rename from 84685.async.js rename to 80583.async.js index 89cb1cacb6..9a984e5682 100644 --- a/84685.async.js +++ b/80583.async.js @@ -1,5 +1,5 @@ "use strict"; -(self["webpackChunk"] = self["webpackChunk"] || []).push([[84685],{ +(self["webpackChunk"] = self["webpackChunk"] || []).push([[80583],{ /***/ 31662: /*!************************************************************************!*\ @@ -28,303 +28,6 @@ CloseCircleOutlined.displayName = 'CloseCircleOutlined'; /***/ }), -/***/ 32808: -/*!************************************************************!*\ - !*** ./node_modules/antd/es/checkbox/index.js + 2 modules ***! - \************************************************************/ -/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { - - -// EXPORTS -__webpack_require__.d(__webpack_exports__, { - "Z": function() { return /* binding */ es_checkbox; } -}); - -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js -var defineProperty = __webpack_require__(4942); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js -var esm_extends = __webpack_require__(87462); -// EXTERNAL MODULE: ./node_modules/classnames/index.js -var classnames = __webpack_require__(94184); -var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); -// EXTERNAL MODULE: ./node_modules/rc-checkbox/es/index.js -var es = __webpack_require__(50132); -// EXTERNAL MODULE: ./node_modules/react/index.js -var react = __webpack_require__(67294); -// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js -var config_provider_context = __webpack_require__(53124); -// EXTERNAL MODULE: ./node_modules/antd/es/form/context.js -var context = __webpack_require__(65223); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 2 modules -var toConsumableArray = __webpack_require__(74902); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules -var slicedToArray = __webpack_require__(97685); -// EXTERNAL MODULE: ./node_modules/rc-util/es/omit.js -var omit = __webpack_require__(98423); -;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/Group.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; -}; - - - - - -var GroupContext = /*#__PURE__*/react.createContext(null); -var InternalCheckboxGroup = function InternalCheckboxGroup(_a, ref) { - var defaultValue = _a.defaultValue, - children = _a.children, - _a$options = _a.options, - options = _a$options === void 0 ? [] : _a$options, - customizePrefixCls = _a.prefixCls, - className = _a.className, - style = _a.style, - onChange = _a.onChange, - restProps = __rest(_a, ["defaultValue", "children", "options", "prefixCls", "className", "style", "onChange"]); - var _React$useContext = react.useContext(config_provider_context/* ConfigContext */.E_), - getPrefixCls = _React$useContext.getPrefixCls, - direction = _React$useContext.direction; - var _React$useState = react.useState(restProps.value || defaultValue || []), - _React$useState2 = (0,slicedToArray/* default */.Z)(_React$useState, 2), - value = _React$useState2[0], - setValue = _React$useState2[1]; - var _React$useState3 = react.useState([]), - _React$useState4 = (0,slicedToArray/* default */.Z)(_React$useState3, 2), - registeredValues = _React$useState4[0], - setRegisteredValues = _React$useState4[1]; - react.useEffect(function () { - if ('value' in restProps) { - setValue(restProps.value || []); - } - }, [restProps.value]); - var getOptions = function getOptions() { - return options.map(function (option) { - if (typeof option === 'string' || typeof option === 'number') { - return { - label: option, - value: option - }; - } - return option; - }); - }; - var cancelValue = function cancelValue(val) { - setRegisteredValues(function (prevValues) { - return prevValues.filter(function (v) { - return v !== val; - }); - }); - }; - var registerValue = function registerValue(val) { - setRegisteredValues(function (prevValues) { - return [].concat((0,toConsumableArray/* default */.Z)(prevValues), [val]); - }); - }; - var toggleOption = function toggleOption(option) { - var optionIndex = value.indexOf(option.value); - var newValue = (0,toConsumableArray/* default */.Z)(value); - if (optionIndex === -1) { - newValue.push(option.value); - } else { - newValue.splice(optionIndex, 1); - } - if (!('value' in restProps)) { - setValue(newValue); - } - var opts = getOptions(); - onChange === null || onChange === void 0 ? void 0 : onChange(newValue.filter(function (val) { - return registeredValues.includes(val); - }).sort(function (a, b) { - var indexA = opts.findIndex(function (opt) { - return opt.value === a; - }); - var indexB = opts.findIndex(function (opt) { - return opt.value === b; - }); - return indexA - indexB; - })); - }; - var prefixCls = getPrefixCls('checkbox', customizePrefixCls); - var groupPrefixCls = "".concat(prefixCls, "-group"); - var domProps = (0,omit/* default */.Z)(restProps, ['value', 'disabled']); - if (options && options.length > 0) { - children = getOptions().map(function (option) { - return /*#__PURE__*/react.createElement(checkbox_Checkbox, { - prefixCls: prefixCls, - key: option.value.toString(), - disabled: 'disabled' in option ? option.disabled : restProps.disabled, - value: option.value, - checked: value.includes(option.value), - onChange: option.onChange, - className: "".concat(groupPrefixCls, "-item"), - style: option.style - }, option.label); - }); - } - // eslint-disable-next-line react/jsx-no-constructed-context-values - var context = { - toggleOption: toggleOption, - value: value, - disabled: restProps.disabled, - name: restProps.name, - // https://github.com/ant-design/ant-design/issues/16376 - registerValue: registerValue, - cancelValue: cancelValue - }; - var classString = classnames_default()(groupPrefixCls, (0,defineProperty/* default */.Z)({}, "".concat(groupPrefixCls, "-rtl"), direction === 'rtl'), className); - return /*#__PURE__*/react.createElement("div", (0,esm_extends/* default */.Z)({ - className: classString, - style: style - }, domProps, { - ref: ref - }), /*#__PURE__*/react.createElement(GroupContext.Provider, { - value: context - }, children)); -}; -var CheckboxGroup = /*#__PURE__*/react.forwardRef(InternalCheckboxGroup); -/* harmony default export */ var Group = (/*#__PURE__*/react.memo(CheckboxGroup)); -// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/DisabledContext.js -var DisabledContext = __webpack_require__(98866); -;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/Checkbox.js - - -var Checkbox_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; -}; - - - - - - - - - -var InternalCheckbox = function InternalCheckbox(_a, ref) { - var _classNames; - var _b; - var customizePrefixCls = _a.prefixCls, - className = _a.className, - children = _a.children, - _a$indeterminate = _a.indeterminate, - indeterminate = _a$indeterminate === void 0 ? false : _a$indeterminate, - style = _a.style, - onMouseEnter = _a.onMouseEnter, - onMouseLeave = _a.onMouseLeave, - _a$skipGroup = _a.skipGroup, - skipGroup = _a$skipGroup === void 0 ? false : _a$skipGroup, - disabled = _a.disabled, - restProps = Checkbox_rest(_a, ["prefixCls", "className", "children", "indeterminate", "style", "onMouseEnter", "onMouseLeave", "skipGroup", "disabled"]); - var _React$useContext = react.useContext(config_provider_context/* ConfigContext */.E_), - getPrefixCls = _React$useContext.getPrefixCls, - direction = _React$useContext.direction; - var checkboxGroup = react.useContext(GroupContext); - var _useContext = (0,react.useContext)(context/* FormItemInputContext */.aM), - isFormItemInput = _useContext.isFormItemInput; - var contextDisabled = (0,react.useContext)(DisabledContext/* default */.Z); - var mergedDisabled = (_b = (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.disabled) || disabled) !== null && _b !== void 0 ? _b : contextDisabled; - var prevValue = react.useRef(restProps.value); - react.useEffect(function () { - checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.registerValue(restProps.value); - false ? 0 : void 0; - }, []); - react.useEffect(function () { - if (skipGroup) { - return; - } - if (restProps.value !== prevValue.current) { - checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.cancelValue(prevValue.current); - checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.registerValue(restProps.value); - prevValue.current = restProps.value; - } - return function () { - return checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.cancelValue(restProps.value); - }; - }, [restProps.value]); - var prefixCls = getPrefixCls('checkbox', customizePrefixCls); - var checkboxProps = (0,esm_extends/* default */.Z)({}, restProps); - if (checkboxGroup && !skipGroup) { - checkboxProps.onChange = function () { - if (restProps.onChange) { - restProps.onChange.apply(restProps, arguments); - } - if (checkboxGroup.toggleOption) { - checkboxGroup.toggleOption({ - label: children, - value: restProps.value - }); - } - }; - checkboxProps.name = checkboxGroup.name; - checkboxProps.checked = checkboxGroup.value.includes(restProps.value); - } - var classString = classnames_default()((_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper"), true), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-checked"), checkboxProps.checked), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-disabled"), mergedDisabled), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-wrapper-in-form-item"), isFormItemInput), _classNames), className); - var checkboxClass = classnames_default()((0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-indeterminate"), indeterminate)); - var ariaChecked = indeterminate ? 'mixed' : undefined; - return ( - /*#__PURE__*/ - // eslint-disable-next-line jsx-a11y/label-has-associated-control - react.createElement("label", { - className: classString, - style: style, - onMouseEnter: onMouseEnter, - onMouseLeave: onMouseLeave - }, /*#__PURE__*/react.createElement(es/* default */.Z, (0,esm_extends/* default */.Z)({ - "aria-checked": ariaChecked - }, checkboxProps, { - prefixCls: prefixCls, - className: checkboxClass, - disabled: mergedDisabled, - ref: ref - })), children !== undefined && /*#__PURE__*/react.createElement("span", null, children)) - ); -}; -var Checkbox = /*#__PURE__*/react.forwardRef(InternalCheckbox); -if (false) {} -/* harmony default export */ var checkbox_Checkbox = (Checkbox); -;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/index.js - - -var es_checkbox_Checkbox = checkbox_Checkbox; -es_checkbox_Checkbox.Group = Group; -es_checkbox_Checkbox.__ANT_CHECKBOX = true; -/* harmony default export */ var es_checkbox = (es_checkbox_Checkbox); - -/***/ }), - -/***/ 82000: -/*!******************************************************************!*\ - !*** ./node_modules/antd/es/checkbox/style/index.js + 1 modules ***! - \******************************************************************/ -/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { - - -// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less -var style_default = __webpack_require__(43146); -;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/style/index.less -// extracted by mini-css-extract-plugin - -;// CONCATENATED MODULE: ./node_modules/antd/es/checkbox/style/index.js - - -// deps-lint-skip: form - -/***/ }), - /***/ 27049: /*!***********************************************!*\ !*** ./node_modules/antd/es/divider/index.js ***! @@ -409,18 +112,6 @@ var style_default = __webpack_require__(43146); -/***/ }), - -/***/ 13013: -/*!************************************************!*\ - !*** ./node_modules/antd/es/dropdown/index.js ***! - \************************************************/ -/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { - -/* harmony import */ var _dropdown__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dropdown */ 18562); - -/* harmony default export */ __webpack_exports__["Z"] = (_dropdown__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z); - /***/ }), /***/ 61460: diff --git a/76563.chunk.css b/81762.chunk.css similarity index 91% rename from 76563.chunk.css rename to 81762.chunk.css index 650fd78f9b..f7c9bf8340 100644 --- a/76563.chunk.css +++ b/81762.chunk.css @@ -721,79 +721,6 @@ span.ant-radio + * { /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/back-top/style/index.less ***! - \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -.ant-back-top { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; - position: fixed; - right: 100px; - bottom: 50px; - z-index: 10; - width: 40px; - height: 40px; - cursor: pointer; -} -.ant-back-top:empty { - display: none; -} -.ant-back-top-rtl { - right: auto; - left: 100px; - direction: rtl; -} -.ant-back-top-content { - width: 40px; - height: 40px; - overflow: hidden; - color: #fff; - text-align: center; - background-color: rgba(0, 0, 0, 0.45); - border-radius: 20px; - transition: all 0.3s; -} -.ant-back-top-content:hover { - background-color: rgba(0, 0, 0, 0.85); - transition: all 0.3s; -} -.ant-back-top-icon { - font-size: 24px; - line-height: 40px; -} -@media screen and (max-width: 768px) { - .ant-back-top { - right: 60px; - } - .ant-back-top-rtl { - right: auto; - left: 60px; - } -} -@media screen and (max-width: 480px) { - .ant-back-top { - right: 20px; - } - .ant-back-top-rtl { - right: auto; - left: 20px; - } -} -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ - /*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/carousel/style/index.less ***! \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ diff --git a/84635.async.js b/84635.async.js new file mode 100644 index 0000000000..7e7a6dc70d --- /dev/null +++ b/84635.async.js @@ -0,0 +1,1473 @@ +"use strict"; +(self["webpackChunk"] = self["webpackChunk"] || []).push([[84635,71514,32415],{ + +/***/ 13013: +/*!************************************************!*\ + !*** ./node_modules/antd/es/dropdown/index.js ***! + \************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +/* harmony import */ var _dropdown__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dropdown */ 18562); + +/* harmony default export */ __webpack_exports__["Z"] = (_dropdown__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z); + +/***/ }), + +/***/ 75008: +/*!*********************************************************!*\ + !*** ./node_modules/antd/es/input/index.js + 5 modules ***! + \*********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ input; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/form/context.js +var form_context = __webpack_require__(65223); +;// CONCATENATED MODULE: ./node_modules/antd/es/input/Group.js + + + + + + + +var Group = function Group(props) { + var _classNames; + var _useContext = (0,react.useContext)(context/* ConfigContext */.E_), + getPrefixCls = _useContext.getPrefixCls, + direction = _useContext.direction; + var customizePrefixCls = props.prefixCls, + _props$className = props.className, + className = _props$className === void 0 ? '' : _props$className; + var prefixCls = getPrefixCls('input-group', customizePrefixCls); + var cls = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-lg"), props.size === 'large'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-sm"), props.size === 'small'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-compact"), props.compact), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className); + var formItemContext = (0,react.useContext)(form_context/* FormItemInputContext */.aM); + var groupFormItemContext = (0,react.useMemo)(function () { + return (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, formItemContext), { + isFormItemInput: false + }); + }, [formItemContext]); + return /*#__PURE__*/react.createElement("span", { + className: cls, + style: props.style, + onMouseEnter: props.onMouseEnter, + onMouseLeave: props.onMouseLeave, + onFocus: props.onFocus, + onBlur: props.onBlur + }, /*#__PURE__*/react.createElement(form_context/* FormItemInputContext.Provider */.aM.Provider, { + value: groupFormItemContext + }, props.children)); +}; +/* harmony default export */ var input_Group = (Group); +// EXTERNAL MODULE: ./node_modules/antd/es/input/Input.js + 1 modules +var Input = __webpack_require__(82586); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules +var slicedToArray = __webpack_require__(97685); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js +var esm_typeof = __webpack_require__(71002); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js +var objectSpread2 = __webpack_require__(1413); +;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.js +// This icon file is generated automatically. +var EyeInvisibleOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M942.2 486.2Q889.47 375.11 816.7 305l-50.88 50.88C807.31 395.53 843.45 447.4 874.7 512 791.5 684.2 673.4 766 512 766q-72.67 0-133.87-22.38L323 798.75Q408 838 512 838q288.3 0 430.2-300.3a60.29 60.29 0 000-51.5zm-63.57-320.64L836 122.88a8 8 0 00-11.32 0L715.31 232.2Q624.86 186 512 186q-288.3 0-430.2 300.3a60.3 60.3 0 000 51.5q56.69 119.4 136.5 191.41L112.48 835a8 8 0 000 11.31L155.17 889a8 8 0 0011.31 0l712.15-712.12a8 8 0 000-11.32zM149.3 512C232.6 339.8 350.7 258 512 258c54.54 0 104.13 9.36 149.12 28.39l-70.3 70.3a176 176 0 00-238.13 238.13l-83.42 83.42C223.1 637.49 183.3 582.28 149.3 512zm246.7 0a112.11 112.11 0 01146.2-106.69L401.31 546.2A112 112 0 01396 512z" } }, { "tag": "path", "attrs": { "d": "M508 624c-3.46 0-6.87-.16-10.25-.47l-52.82 52.82a176.09 176.09 0 00227.42-227.42l-52.82 52.82c.31 3.38.47 6.79.47 10.25a111.94 111.94 0 01-112 112z" } }] }, "name": "eye-invisible", "theme": "outlined" }; +/* harmony default export */ var asn_EyeInvisibleOutlined = (EyeInvisibleOutlined); + +// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/components/AntdIcon.js + 3 modules +var AntdIcon = __webpack_require__(93771); +;// CONCATENATED MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.js + +// GENERATE BY ./scripts/generate.ts +// DON NOT EDIT IT MANUALLY + + + +var EyeInvisibleOutlined_EyeInvisibleOutlined = function EyeInvisibleOutlined(props, ref) { + return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, { + ref: ref, + icon: asn_EyeInvisibleOutlined + })); +}; +EyeInvisibleOutlined_EyeInvisibleOutlined.displayName = 'EyeInvisibleOutlined'; +/* harmony default export */ var icons_EyeInvisibleOutlined = (/*#__PURE__*/react.forwardRef(EyeInvisibleOutlined_EyeInvisibleOutlined)); +// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeOutlined.js + 1 modules +var EyeOutlined = __webpack_require__(7124); +// EXTERNAL MODULE: ./node_modules/rc-util/es/omit.js +var omit = __webpack_require__(98423); +// EXTERNAL MODULE: ./node_modules/rc-util/es/ref.js +var es_ref = __webpack_require__(42550); +// EXTERNAL MODULE: ./node_modules/antd/es/input/hooks/useRemovePasswordTimeout.js +var useRemovePasswordTimeout = __webpack_require__(72922); +;// CONCATENATED MODULE: ./node_modules/antd/es/input/Password.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; +}; + + + + + + + + + + +var defaultIconRender = function defaultIconRender(visible) { + return visible ? /*#__PURE__*/react.createElement(EyeOutlined/* default */.Z, null) : /*#__PURE__*/react.createElement(icons_EyeInvisibleOutlined, null); +}; +var ActionMap = { + click: 'onClick', + hover: 'onMouseOver' +}; +var Password = /*#__PURE__*/react.forwardRef(function (props, ref) { + var _props$visibilityTogg = props.visibilityToggle, + visibilityToggle = _props$visibilityTogg === void 0 ? true : _props$visibilityTogg; + var visibilityControlled = (0,esm_typeof/* default */.Z)(visibilityToggle) === 'object' && visibilityToggle.visible !== undefined; + var _useState = (0,react.useState)(function () { + return visibilityControlled ? visibilityToggle.visible : false; + }), + _useState2 = (0,slicedToArray/* default */.Z)(_useState, 2), + visible = _useState2[0], + setVisible = _useState2[1]; + var inputRef = (0,react.useRef)(null); + react.useEffect(function () { + if (visibilityControlled) { + setVisible(visibilityToggle.visible); + } + }, [visibilityControlled, visibilityToggle]); + // Remove Password value + var removePasswordTimeout = (0,useRemovePasswordTimeout/* default */.Z)(inputRef); + var onVisibleChange = function onVisibleChange() { + var disabled = props.disabled; + if (disabled) { + return; + } + if (visible) { + removePasswordTimeout(); + } + setVisible(function (prevState) { + var _a; + var newState = !prevState; + if ((0,esm_typeof/* default */.Z)(visibilityToggle) === 'object') { + (_a = visibilityToggle.onVisibleChange) === null || _a === void 0 ? void 0 : _a.call(visibilityToggle, newState); + } + return newState; + }); + }; + var getIcon = function getIcon(prefixCls) { + var _iconProps; + var _props$action = props.action, + action = _props$action === void 0 ? 'click' : _props$action, + _props$iconRender = props.iconRender, + iconRender = _props$iconRender === void 0 ? defaultIconRender : _props$iconRender; + var iconTrigger = ActionMap[action] || ''; + var icon = iconRender(visible); + var iconProps = (_iconProps = {}, (0,defineProperty/* default */.Z)(_iconProps, iconTrigger, onVisibleChange), (0,defineProperty/* default */.Z)(_iconProps, "className", "".concat(prefixCls, "-icon")), (0,defineProperty/* default */.Z)(_iconProps, "key", 'passwordIcon'), (0,defineProperty/* default */.Z)(_iconProps, "onMouseDown", function onMouseDown(e) { + // Prevent focused state lost + // https://github.com/ant-design/ant-design/issues/15173 + e.preventDefault(); + }), (0,defineProperty/* default */.Z)(_iconProps, "onMouseUp", function onMouseUp(e) { + // Prevent caret position change + // https://github.com/ant-design/ant-design/issues/23524 + e.preventDefault(); + }), _iconProps); + return /*#__PURE__*/react.cloneElement( /*#__PURE__*/react.isValidElement(icon) ? icon : /*#__PURE__*/react.createElement("span", null, icon), iconProps); + }; + var renderPassword = function renderPassword(_ref) { + var getPrefixCls = _ref.getPrefixCls; + var className = props.className, + customizePrefixCls = props.prefixCls, + customizeInputPrefixCls = props.inputPrefixCls, + size = props.size, + restProps = __rest(props, ["className", "prefixCls", "inputPrefixCls", "size"]); + var inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls); + var prefixCls = getPrefixCls('input-password', customizePrefixCls); + var suffixIcon = visibilityToggle && getIcon(prefixCls); + var inputClassName = classnames_default()(prefixCls, className, (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-").concat(size), !!size)); + var omittedProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, (0,omit/* default */.Z)(restProps, ['suffix', 'iconRender', 'visibilityToggle'])), { + type: visible ? 'text' : 'password', + className: inputClassName, + prefixCls: inputPrefixCls, + suffix: suffixIcon + }); + if (size) { + omittedProps.size = size; + } + return /*#__PURE__*/react.createElement(Input/* default */.ZP, (0,esm_extends/* default */.Z)({ + ref: (0,es_ref/* composeRef */.sQ)(ref, inputRef) + }, omittedProps)); + }; + return /*#__PURE__*/react.createElement(context/* ConfigConsumer */.C, null, renderPassword); +}); +if (false) {} +/* harmony default export */ var input_Password = (Password); +// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/SearchOutlined.js +var SearchOutlined = __webpack_require__(25783); +// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js +var es_button = __webpack_require__(71577); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/SizeContext.js +var SizeContext = __webpack_require__(97647); +// EXTERNAL MODULE: ./node_modules/antd/es/space/Compact.js +var Compact = __webpack_require__(4173); +// EXTERNAL MODULE: ./node_modules/antd/es/_util/reactNode.js +var reactNode = __webpack_require__(96159); +;// CONCATENATED MODULE: ./node_modules/antd/es/input/Search.js + + +var Search_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; +}; + + + + + + + + + + +var Search = /*#__PURE__*/react.forwardRef(function (props, ref) { + var _classNames; + var customizePrefixCls = props.prefixCls, + customizeInputPrefixCls = props.inputPrefixCls, + className = props.className, + customizeSize = props.size, + suffix = props.suffix, + _props$enterButton = props.enterButton, + enterButton = _props$enterButton === void 0 ? false : _props$enterButton, + addonAfter = props.addonAfter, + loading = props.loading, + disabled = props.disabled, + customOnSearch = props.onSearch, + customOnChange = props.onChange, + onCompositionStart = props.onCompositionStart, + onCompositionEnd = props.onCompositionEnd, + restProps = Search_rest(props, ["prefixCls", "inputPrefixCls", "className", "size", "suffix", "enterButton", "addonAfter", "loading", "disabled", "onSearch", "onChange", "onCompositionStart", "onCompositionEnd"]); + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var contextSize = react.useContext(SizeContext/* default */.Z); + var composedRef = react.useRef(false); + var prefixCls = getPrefixCls('input-search', customizePrefixCls); + var inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls); + var _useCompactItemContex = (0,Compact/* useCompactItemContext */.ri)(prefixCls, direction), + compactSize = _useCompactItemContex.compactSize; + var size = compactSize || customizeSize || contextSize; + var inputRef = react.useRef(null); + var onChange = function onChange(e) { + if (e && e.target && e.type === 'click' && customOnSearch) { + customOnSearch(e.target.value, e); + } + if (customOnChange) { + customOnChange(e); + } + }; + var onMouseDown = function onMouseDown(e) { + var _a; + if (document.activeElement === ((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.input)) { + e.preventDefault(); + } + }; + var onSearch = function onSearch(e) { + var _a, _b; + if (customOnSearch) { + customOnSearch((_b = (_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.input) === null || _b === void 0 ? void 0 : _b.value, e); + } + }; + var onPressEnter = function onPressEnter(e) { + if (composedRef.current || loading) { + return; + } + onSearch(e); + }; + var searchIcon = typeof enterButton === 'boolean' ? /*#__PURE__*/react.createElement(SearchOutlined/* default */.Z, null) : null; + var btnClassName = "".concat(prefixCls, "-button"); + var button; + var enterButtonAsElement = enterButton || {}; + var isAntdButton = enterButtonAsElement.type && enterButtonAsElement.type.__ANT_BUTTON === true; + if (isAntdButton || enterButtonAsElement.type === 'button') { + button = (0,reactNode/* cloneElement */.Tm)(enterButtonAsElement, (0,esm_extends/* default */.Z)({ + onMouseDown: onMouseDown, + onClick: function onClick(e) { + var _a, _b; + (_b = (_a = enterButtonAsElement === null || enterButtonAsElement === void 0 ? void 0 : enterButtonAsElement.props) === null || _a === void 0 ? void 0 : _a.onClick) === null || _b === void 0 ? void 0 : _b.call(_a, e); + onSearch(e); + }, + key: 'enterButton' + }, isAntdButton ? { + className: btnClassName, + size: size + } : {})); + } else { + button = /*#__PURE__*/react.createElement(es_button/* default */.Z, { + className: btnClassName, + type: enterButton ? 'primary' : undefined, + size: size, + disabled: disabled, + key: "enterButton", + onMouseDown: onMouseDown, + onClick: onSearch, + loading: loading, + icon: searchIcon + }, enterButton); + } + if (addonAfter) { + button = [button, (0,reactNode/* cloneElement */.Tm)(addonAfter, { + key: 'addonAfter' + })]; + } + var cls = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-").concat(size), !!size), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-with-button"), !!enterButton), _classNames), className); + var handleOnCompositionStart = function handleOnCompositionStart(e) { + composedRef.current = true; + onCompositionStart === null || onCompositionStart === void 0 ? void 0 : onCompositionStart(e); + }; + var handleOnCompositionEnd = function handleOnCompositionEnd(e) { + composedRef.current = false; + onCompositionEnd === null || onCompositionEnd === void 0 ? void 0 : onCompositionEnd(e); + }; + return /*#__PURE__*/react.createElement(Input/* default */.ZP, (0,esm_extends/* default */.Z)({ + ref: (0,es_ref/* composeRef */.sQ)(inputRef, ref), + onPressEnter: onPressEnter + }, restProps, { + size: size, + onCompositionStart: handleOnCompositionStart, + onCompositionEnd: handleOnCompositionEnd, + prefixCls: inputPrefixCls, + addonAfter: button, + suffix: suffix, + onChange: onChange, + className: cls, + disabled: disabled + })); +}); +if (false) {} +/* harmony default export */ var input_Search = (Search); +// EXTERNAL MODULE: ./node_modules/antd/es/input/TextArea.js + 1 modules +var TextArea = __webpack_require__(80173); +;// CONCATENATED MODULE: ./node_modules/antd/es/input/index.js + + + + + +var input_Input = Input/* default */.ZP; +input_Input.Group = input_Group; +input_Input.Search = input_Search; +input_Input.TextArea = TextArea/* default */.Z; +input_Input.Password = input_Password; +/* harmony default export */ var input = (input_Input); + +/***/ }), + +/***/ 95507: +/*!********************************************************!*\ + !*** ./node_modules/antd/es/list/index.js + 1 modules ***! + \********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "ZM": function() { return /* binding */ ListContext; }, + "ZP": function() { return /* binding */ list; } +}); + +// UNUSED EXPORTS: ListConsumer + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 2 modules +var toConsumableArray = __webpack_require__(74902); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 1 modules +var slicedToArray = __webpack_require__(97685); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js +var esm_typeof = __webpack_require__(71002); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/defaultRenderEmpty.js +var defaultRenderEmpty = __webpack_require__(88258); +// EXTERNAL MODULE: ./node_modules/antd/es/grid/row.js +var row = __webpack_require__(92820); +// EXTERNAL MODULE: ./node_modules/antd/es/grid/hooks/useBreakpoint.js +var useBreakpoint = __webpack_require__(25378); +// EXTERNAL MODULE: ./node_modules/antd/es/pagination/index.js + 10 modules +var es_pagination = __webpack_require__(260); +// EXTERNAL MODULE: ./node_modules/antd/es/spin/index.js +var spin = __webpack_require__(11382); +// EXTERNAL MODULE: ./node_modules/antd/es/_util/responsiveObserve.js +var responsiveObserve = __webpack_require__(24308); +// EXTERNAL MODULE: ./node_modules/antd/es/grid/col.js +var col = __webpack_require__(21584); +// EXTERNAL MODULE: ./node_modules/antd/es/_util/reactNode.js +var reactNode = __webpack_require__(96159); +;// CONCATENATED MODULE: ./node_modules/antd/es/list/Item.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; +}; + + + + + + +var Meta = function Meta(_a) { + var customizePrefixCls = _a.prefixCls, + className = _a.className, + avatar = _a.avatar, + title = _a.title, + description = _a.description, + others = __rest(_a, ["prefixCls", "className", "avatar", "title", "description"]); + var _useContext = (0,react.useContext)(context/* ConfigContext */.E_), + getPrefixCls = _useContext.getPrefixCls; + var prefixCls = getPrefixCls('list', customizePrefixCls); + var classString = classnames_default()("".concat(prefixCls, "-item-meta"), className); + var content = /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-item-meta-content") + }, title && /*#__PURE__*/react.createElement("h4", { + className: "".concat(prefixCls, "-item-meta-title") + }, title), description && /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-item-meta-description") + }, description)); + return /*#__PURE__*/react.createElement("div", (0,esm_extends/* default */.Z)({}, others, { + className: classString + }), avatar && /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-item-meta-avatar") + }, avatar), (title || description) && content); +}; +var InternalItem = function InternalItem(_a, ref) { + var customizePrefixCls = _a.prefixCls, + children = _a.children, + actions = _a.actions, + extra = _a.extra, + className = _a.className, + colStyle = _a.colStyle, + others = __rest(_a, ["prefixCls", "children", "actions", "extra", "className", "colStyle"]); + var _useContext2 = (0,react.useContext)(ListContext), + grid = _useContext2.grid, + itemLayout = _useContext2.itemLayout; + var _useContext3 = (0,react.useContext)(context/* ConfigContext */.E_), + getPrefixCls = _useContext3.getPrefixCls; + var isItemContainsTextNodeAndNotSingular = function isItemContainsTextNodeAndNotSingular() { + var result; + react.Children.forEach(children, function (element) { + if (typeof element === 'string') { + result = true; + } + }); + return result && react.Children.count(children) > 1; + }; + var isFlexMode = function isFlexMode() { + if (itemLayout === 'vertical') { + return !!extra; + } + return !isItemContainsTextNodeAndNotSingular(); + }; + var prefixCls = getPrefixCls('list', customizePrefixCls); + var actionsContent = actions && actions.length > 0 && /*#__PURE__*/react.createElement("ul", { + className: "".concat(prefixCls, "-item-action"), + key: "actions" + }, actions.map(function (action, i) { + return ( + /*#__PURE__*/ + // eslint-disable-next-line react/no-array-index-key + react.createElement("li", { + key: "".concat(prefixCls, "-item-action-").concat(i) + }, action, i !== actions.length - 1 && /*#__PURE__*/react.createElement("em", { + className: "".concat(prefixCls, "-item-action-split") + })) + ); + })); + var Element = grid ? 'div' : 'li'; + var itemChildren = /*#__PURE__*/react.createElement(Element, (0,esm_extends/* default */.Z)({}, others, !grid ? { + ref: ref + } : {}, { + className: classnames_default()("".concat(prefixCls, "-item"), (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-item-no-flex"), !isFlexMode()), className) + }), itemLayout === 'vertical' && extra ? [/*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-item-main"), + key: "content" + }, children, actionsContent), /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-item-extra"), + key: "extra" + }, extra)] : [children, actionsContent, (0,reactNode/* cloneElement */.Tm)(extra, { + key: 'extra' + })]); + return grid ? /*#__PURE__*/react.createElement(col/* default */.Z, { + ref: ref, + flex: 1, + style: colStyle + }, itemChildren) : itemChildren; +}; +var Item = /*#__PURE__*/(0,react.forwardRef)(InternalItem); +Item.Meta = Meta; +/* harmony default export */ var list_Item = (Item); +;// CONCATENATED MODULE: ./node_modules/antd/es/list/index.js + + + + + +var list_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; +}; + + + + + + + + + + +var ListContext = /*#__PURE__*/react.createContext({}); +var ListConsumer = ListContext.Consumer; +function List(_a) { + var _classNames; + var _a$pagination = _a.pagination, + pagination = _a$pagination === void 0 ? false : _a$pagination, + customizePrefixCls = _a.prefixCls, + _a$bordered = _a.bordered, + bordered = _a$bordered === void 0 ? false : _a$bordered, + _a$split = _a.split, + split = _a$split === void 0 ? true : _a$split, + className = _a.className, + children = _a.children, + itemLayout = _a.itemLayout, + loadMore = _a.loadMore, + grid = _a.grid, + _a$dataSource = _a.dataSource, + dataSource = _a$dataSource === void 0 ? [] : _a$dataSource, + size = _a.size, + header = _a.header, + footer = _a.footer, + _a$loading = _a.loading, + loading = _a$loading === void 0 ? false : _a$loading, + rowKey = _a.rowKey, + renderItem = _a.renderItem, + locale = _a.locale, + rest = list_rest(_a, ["pagination", "prefixCls", "bordered", "split", "className", "children", "itemLayout", "loadMore", "grid", "dataSource", "size", "header", "footer", "loading", "rowKey", "renderItem", "locale"]); + var paginationObj = pagination && (0,esm_typeof/* default */.Z)(pagination) === 'object' ? pagination : {}; + var _React$useState = react.useState(paginationObj.defaultCurrent || 1), + _React$useState2 = (0,slicedToArray/* default */.Z)(_React$useState, 2), + paginationCurrent = _React$useState2[0], + setPaginationCurrent = _React$useState2[1]; + var _React$useState3 = react.useState(paginationObj.defaultPageSize || 10), + _React$useState4 = (0,slicedToArray/* default */.Z)(_React$useState3, 2), + paginationSize = _React$useState4[0], + setPaginationSize = _React$useState4[1]; + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + renderEmpty = _React$useContext.renderEmpty, + direction = _React$useContext.direction; + var defaultPaginationProps = { + current: 1, + total: 0 + }; + var triggerPaginationEvent = function triggerPaginationEvent(eventName) { + return function (page, pageSize) { + setPaginationCurrent(page); + setPaginationSize(pageSize); + if (pagination && pagination[eventName]) { + pagination[eventName](page, pageSize); + } + }; + }; + var onPaginationChange = triggerPaginationEvent('onChange'); + var onPaginationShowSizeChange = triggerPaginationEvent('onShowSizeChange'); + var renderInnerItem = function renderInnerItem(item, index) { + if (!renderItem) return null; + var key; + if (typeof rowKey === 'function') { + key = rowKey(item); + } else if (rowKey) { + key = item[rowKey]; + } else { + key = item.key; + } + if (!key) { + key = "list-item-".concat(index); + } + return /*#__PURE__*/react.createElement(react.Fragment, { + key: key + }, renderItem(item, index)); + }; + var isSomethingAfterLastItem = function isSomethingAfterLastItem() { + return !!(loadMore || pagination || footer); + }; + var renderEmptyFunc = function renderEmptyFunc(prefixCls, renderEmptyHandler) { + return /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-empty-text") + }, locale && locale.emptyText || renderEmptyHandler('List')); + }; + var prefixCls = getPrefixCls('list', customizePrefixCls); + var loadingProp = loading; + if (typeof loadingProp === 'boolean') { + loadingProp = { + spinning: loadingProp + }; + } + var isLoading = loadingProp && loadingProp.spinning; + // large => lg + // small => sm + var sizeCls = ''; + switch (size) { + case 'large': + sizeCls = 'lg'; + break; + case 'small': + sizeCls = 'sm'; + break; + default: + break; + } + var classString = classnames_default()(prefixCls, (_classNames = {}, (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-vertical"), itemLayout === 'vertical'), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-").concat(sizeCls), sizeCls), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-split"), split), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-bordered"), bordered), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-loading"), isLoading), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-grid"), !!grid), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-something-after-last-item"), isSomethingAfterLastItem()), (0,defineProperty/* default */.Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className); + var paginationProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, defaultPaginationProps), { + total: dataSource.length, + current: paginationCurrent, + pageSize: paginationSize + }), pagination || {}); + var largestPage = Math.ceil(paginationProps.total / paginationProps.pageSize); + if (paginationProps.current > largestPage) { + paginationProps.current = largestPage; + } + var paginationContent = pagination ? /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-pagination") + }, /*#__PURE__*/react.createElement(es_pagination/* default */.Z, (0,esm_extends/* default */.Z)({}, paginationProps, { + onChange: onPaginationChange, + onShowSizeChange: onPaginationShowSizeChange + }))) : null; + var splitDataSource = (0,toConsumableArray/* default */.Z)(dataSource); + if (pagination) { + if (dataSource.length > (paginationProps.current - 1) * paginationProps.pageSize) { + splitDataSource = (0,toConsumableArray/* default */.Z)(dataSource).splice((paginationProps.current - 1) * paginationProps.pageSize, paginationProps.pageSize); + } + } + var needResponsive = Object.keys(grid || {}).some(function (key) { + return ['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].includes(key); + }); + var screens = (0,useBreakpoint/* default */.Z)(needResponsive); + var currentBreakpoint = react.useMemo(function () { + for (var i = 0; i < responsiveObserve/* responsiveArray.length */.c4.length; i += 1) { + var breakpoint = responsiveObserve/* responsiveArray */.c4[i]; + if (screens[breakpoint]) { + return breakpoint; + } + } + return undefined; + }, [screens]); + var colStyle = react.useMemo(function () { + if (!grid) { + return undefined; + } + var columnCount = currentBreakpoint && grid[currentBreakpoint] ? grid[currentBreakpoint] : grid.column; + if (columnCount) { + return { + width: "".concat(100 / columnCount, "%"), + maxWidth: "".concat(100 / columnCount, "%") + }; + } + }, [grid === null || grid === void 0 ? void 0 : grid.column, currentBreakpoint]); + var childrenContent = isLoading && /*#__PURE__*/react.createElement("div", { + style: { + minHeight: 53 + } + }); + if (splitDataSource.length > 0) { + var items = splitDataSource.map(function (item, index) { + return renderInnerItem(item, index); + }); + childrenContent = grid ? /*#__PURE__*/react.createElement(row/* default */.Z, { + gutter: grid.gutter + }, react.Children.map(items, function (child) { + return /*#__PURE__*/react.createElement("div", { + key: child === null || child === void 0 ? void 0 : child.key, + style: colStyle + }, child); + })) : /*#__PURE__*/react.createElement("ul", { + className: "".concat(prefixCls, "-items") + }, items); + } else if (!children && !isLoading) { + childrenContent = renderEmptyFunc(prefixCls, renderEmpty || defaultRenderEmpty/* default */.Z); + } + var paginationPosition = paginationProps.position || 'bottom'; + var contextValue = react.useMemo(function () { + return { + grid: grid, + itemLayout: itemLayout + }; + }, [JSON.stringify(grid), itemLayout]); + return /*#__PURE__*/react.createElement(ListContext.Provider, { + value: contextValue + }, /*#__PURE__*/react.createElement("div", (0,esm_extends/* default */.Z)({ + className: classString + }, rest), (paginationPosition === 'top' || paginationPosition === 'both') && paginationContent, header && /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-header") + }, header), /*#__PURE__*/react.createElement(spin/* default */.Z, (0,esm_extends/* default */.Z)({}, loadingProp), childrenContent, children), footer && /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-footer") + }, footer), loadMore || (paginationPosition === 'bottom' || paginationPosition === 'both') && paginationContent)); +} +List.Item = list_Item; +/* harmony default export */ var list = (List); + +/***/ }), + +/***/ 36931: +/*!**************************************************************!*\ + !*** ./node_modules/antd/es/list/style/index.js + 1 modules ***! + \**************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/list/style/index.less +// extracted by mini-css-extract-plugin + +// EXTERNAL MODULE: ./node_modules/antd/es/empty/style/index.js + 1 modules +var style = __webpack_require__(81151); +// EXTERNAL MODULE: ./node_modules/antd/es/grid/style/index.js + 1 modules +var grid_style = __webpack_require__(157); +// EXTERNAL MODULE: ./node_modules/antd/es/pagination/style/index.js + 1 modules +var pagination_style = __webpack_require__(14182); +// EXTERNAL MODULE: ./node_modules/antd/es/spin/style/index.js + 1 modules +var spin_style = __webpack_require__(22536); +;// CONCATENATED MODULE: ./node_modules/antd/es/list/style/index.js + + +// style dependencies + + + + + +/***/ }), + +/***/ 61460: +/*!********************************************************!*\ + !*** ./node_modules/antd/es/rate/index.js + 6 modules ***! + \********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ rate; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js +var esm_extends = __webpack_require__(87462); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js +var objectSpread2 = __webpack_require__(1413); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/StarFilled.js +// This icon file is generated automatically. +var StarFilled = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 00.6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0046.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z" } }] }, "name": "star", "theme": "filled" }; +/* harmony default export */ var asn_StarFilled = (StarFilled); + +// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/components/AntdIcon.js + 3 modules +var AntdIcon = __webpack_require__(93771); +;// CONCATENATED MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/StarFilled.js + +// GENERATE BY ./scripts/generate.ts +// DON NOT EDIT IT MANUALLY + + + +var StarFilled_StarFilled = function StarFilled(props, ref) { + return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, { + ref: ref, + icon: asn_StarFilled + })); +}; +StarFilled_StarFilled.displayName = 'StarFilled'; +/* harmony default export */ var icons_StarFilled = (/*#__PURE__*/react.forwardRef(StarFilled_StarFilled)); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js +var defineProperty = __webpack_require__(4942); +// 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); +// EXTERNAL MODULE: ./node_modules/rc-util/es/Dom/findDOMNode.js +var findDOMNode = __webpack_require__(34203); +// EXTERNAL MODULE: ./node_modules/classnames/index.js +var classnames = __webpack_require__(94184); +var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames); +// EXTERNAL MODULE: ./node_modules/rc-util/es/KeyCode.js +var KeyCode = __webpack_require__(15105); +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/util.js +function getScroll(w) { + var ret = w.pageXOffset; + var method = 'scrollLeft'; + + if (typeof ret !== 'number') { + var d = w.document; // ie6,7,8 standard mode + + ret = d.documentElement[method]; + + if (typeof ret !== 'number') { + // quirks mode + ret = d.body[method]; + } + } + + return ret; +} + +function getClientPosition(elem) { + var x; + var y; + var doc = elem.ownerDocument; + var body = doc.body; + var docElem = doc && doc.documentElement; + var box = elem.getBoundingClientRect(); + x = box.left; + y = box.top; + x -= docElem.clientLeft || body.clientLeft || 0; + y -= docElem.clientTop || body.clientTop || 0; + return { + left: x, + top: y + }; +} + +function getOffsetLeft(el) { + var pos = getClientPosition(el); + var doc = el.ownerDocument; // Only IE use `parentWindow` + + var w = doc.defaultView || doc.parentWindow; + pos.left += getScroll(w); + return pos.left; +} +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/Star.js + + + + + + +var Star = /*#__PURE__*/function (_React$Component) { + (0,inherits/* default */.Z)(Star, _React$Component); + + var _super = (0,createSuper/* default */.Z)(Star); + + function Star() { + var _this; + + (0,classCallCheck/* default */.Z)(this, Star); + + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + _this = _super.call.apply(_super, [this].concat(args)); + + _this.onHover = function (e) { + var _this$props = _this.props, + onHover = _this$props.onHover, + index = _this$props.index; + onHover(e, index); + }; + + _this.onClick = function (e) { + var _this$props2 = _this.props, + onClick = _this$props2.onClick, + index = _this$props2.index; + onClick(e, index); + }; + + _this.onKeyDown = function (e) { + var _this$props3 = _this.props, + onClick = _this$props3.onClick, + index = _this$props3.index; + + if (e.keyCode === 13) { + onClick(e, index); + } + }; + + return _this; + } + + (0,createClass/* default */.Z)(Star, [{ + key: "getClassName", + value: function getClassName() { + var _this$props4 = this.props, + prefixCls = _this$props4.prefixCls, + index = _this$props4.index, + value = _this$props4.value, + allowHalf = _this$props4.allowHalf, + focused = _this$props4.focused; + var starValue = index + 1; + var className = prefixCls; + + if (value === 0 && index === 0 && focused) { + className += " ".concat(prefixCls, "-focused"); + } else if (allowHalf && value + 0.5 >= starValue && value < starValue) { + className += " ".concat(prefixCls, "-half ").concat(prefixCls, "-active"); + + if (focused) { + className += " ".concat(prefixCls, "-focused"); + } + } else { + className += starValue <= value ? " ".concat(prefixCls, "-full") : " ".concat(prefixCls, "-zero"); + + if (starValue === value && focused) { + className += " ".concat(prefixCls, "-focused"); + } + } + + return className; + } + }, { + key: "render", + value: function render() { + var onHover = this.onHover, + onClick = this.onClick, + onKeyDown = this.onKeyDown; + var _this$props5 = this.props, + disabled = _this$props5.disabled, + prefixCls = _this$props5.prefixCls, + character = _this$props5.character, + characterRender = _this$props5.characterRender, + index = _this$props5.index, + count = _this$props5.count, + value = _this$props5.value; + var characterNode = typeof character === 'function' ? character(this.props) : character; + var start = /*#__PURE__*/react.createElement("li", { + className: this.getClassName() + }, /*#__PURE__*/react.createElement("div", { + onClick: disabled ? null : onClick, + onKeyDown: disabled ? null : onKeyDown, + onMouseMove: disabled ? null : onHover, + role: "radio", + "aria-checked": value > index ? 'true' : 'false', + "aria-posinset": index + 1, + "aria-setsize": count, + tabIndex: disabled ? -1 : 0 + }, /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-first") + }, characterNode), /*#__PURE__*/react.createElement("div", { + className: "".concat(prefixCls, "-second") + }, characterNode))); + + if (characterRender) { + start = characterRender(start, this.props); + } + + return start; + } + }]); + + return Star; +}(react.Component); + + +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/Rate.js + + + + + + + + + + + + + +function noop() {} + +var Rate = /*#__PURE__*/function (_React$Component) { + (0,inherits/* default */.Z)(Rate, _React$Component); + + var _super = (0,createSuper/* default */.Z)(Rate); + + function Rate(props) { + var _this; + + (0,classCallCheck/* default */.Z)(this, Rate); + + _this = _super.call(this, props); + _this.stars = void 0; + _this.rate = void 0; + + _this.onHover = function (event, index) { + var onHoverChange = _this.props.onHoverChange; + + var hoverValue = _this.getStarValue(index, event.pageX); + + var cleanedValue = _this.state.cleanedValue; + + if (hoverValue !== cleanedValue) { + _this.setState({ + hoverValue: hoverValue, + cleanedValue: null + }); + } + + onHoverChange(hoverValue); + }; + + _this.onMouseLeave = function () { + var onHoverChange = _this.props.onHoverChange; + + _this.setState({ + hoverValue: undefined, + cleanedValue: null + }); + + onHoverChange(undefined); + }; + + _this.onClick = function (event, index) { + var allowClear = _this.props.allowClear; + var value = _this.state.value; + + var newValue = _this.getStarValue(index, event.pageX); + + var isReset = false; + + if (allowClear) { + isReset = newValue === value; + } + + _this.onMouseLeave(); + + _this.changeValue(isReset ? 0 : newValue); + + _this.setState({ + cleanedValue: isReset ? newValue : null + }); + }; + + _this.onFocus = function () { + var onFocus = _this.props.onFocus; + + _this.setState({ + focused: true + }); + + if (onFocus) { + onFocus(); + } + }; + + _this.onBlur = function () { + var onBlur = _this.props.onBlur; + + _this.setState({ + focused: false + }); + + if (onBlur) { + onBlur(); + } + }; + + _this.onKeyDown = function (event) { + var keyCode = event.keyCode; + var _this$props = _this.props, + count = _this$props.count, + allowHalf = _this$props.allowHalf, + onKeyDown = _this$props.onKeyDown, + direction = _this$props.direction; + var reverse = direction === 'rtl'; + var value = _this.state.value; + + if (keyCode === KeyCode/* default.RIGHT */.Z.RIGHT && value < count && !reverse) { + if (allowHalf) { + value += 0.5; + } else { + value += 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } else if (keyCode === KeyCode/* default.LEFT */.Z.LEFT && value > 0 && !reverse) { + if (allowHalf) { + value -= 0.5; + } else { + value -= 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } else if (keyCode === KeyCode/* default.RIGHT */.Z.RIGHT && value > 0 && reverse) { + if (allowHalf) { + value -= 0.5; + } else { + value -= 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } else if (keyCode === KeyCode/* default.LEFT */.Z.LEFT && value < count && reverse) { + if (allowHalf) { + value += 0.5; + } else { + value += 1; + } + + _this.changeValue(value); + + event.preventDefault(); + } + + if (onKeyDown) { + onKeyDown(event); + } + }; + + _this.saveRef = function (index) { + return function (node) { + _this.stars[index] = node; + }; + }; + + _this.saveRate = function (node) { + _this.rate = node; + }; + + var _value = props.value; + + if (_value === undefined) { + _value = props.defaultValue; + } + + _this.stars = {}; + _this.state = { + value: _value, + focused: false, + cleanedValue: null + }; + return _this; + } + + (0,createClass/* default */.Z)(Rate, [{ + key: "componentDidMount", + value: function componentDidMount() { + var _this$props2 = this.props, + autoFocus = _this$props2.autoFocus, + disabled = _this$props2.disabled; + + if (autoFocus && !disabled) { + this.focus(); + } + } + }, { + key: "getStarDOM", + value: function getStarDOM(index) { + return (0,findDOMNode/* default */.Z)(this.stars[index]); + } + }, { + key: "getStarValue", + value: function getStarValue(index, x) { + var _this$props3 = this.props, + allowHalf = _this$props3.allowHalf, + direction = _this$props3.direction; + var reverse = direction === 'rtl'; + var value = index + 1; + + if (allowHalf) { + var starEle = this.getStarDOM(index); + var leftDis = getOffsetLeft(starEle); + var width = starEle.clientWidth; + + if (reverse && x - leftDis > width / 2) { + value -= 0.5; + } else if (!reverse && x - leftDis < width / 2) { + value -= 0.5; + } + } + + return value; + } + }, { + key: "focus", + value: function focus() { + var disabled = this.props.disabled; + + if (!disabled) { + this.rate.focus(); + } + } + }, { + key: "blur", + value: function blur() { + var disabled = this.props.disabled; + + if (!disabled) { + this.rate.blur(); + } + } + }, { + key: "changeValue", + value: function changeValue(value) { + var onChange = this.props.onChange; + + if (!('value' in this.props)) { + this.setState({ + value: value + }); + } + + onChange(value); + } + }, { + key: "render", + value: function render() { + var _this$props4 = this.props, + count = _this$props4.count, + allowHalf = _this$props4.allowHalf, + style = _this$props4.style, + prefixCls = _this$props4.prefixCls, + disabled = _this$props4.disabled, + className = _this$props4.className, + character = _this$props4.character, + characterRender = _this$props4.characterRender, + tabIndex = _this$props4.tabIndex, + direction = _this$props4.direction; + var _this$state = this.state, + value = _this$state.value, + hoverValue = _this$state.hoverValue, + focused = _this$state.focused; + var stars = []; + var disabledClass = disabled ? "".concat(prefixCls, "-disabled") : ''; + + for (var index = 0; index < count; index += 1) { + stars.push( /*#__PURE__*/react.createElement(Star, { + ref: this.saveRef(index), + index: index, + count: count, + disabled: disabled, + prefixCls: "".concat(prefixCls, "-star"), + allowHalf: allowHalf, + value: hoverValue === undefined ? value : hoverValue, + onClick: this.onClick, + onHover: this.onHover, + key: index, + character: character, + characterRender: characterRender, + focused: focused + })); + } + + var rateClassName = classnames_default()(prefixCls, disabledClass, className, (0,defineProperty/* default */.Z)({}, "".concat(prefixCls, "-rtl"), direction === 'rtl')); + return /*#__PURE__*/react.createElement("ul", { + className: rateClassName, + style: style, + onMouseLeave: disabled ? null : this.onMouseLeave, + tabIndex: disabled ? -1 : tabIndex, + onFocus: disabled ? null : this.onFocus, + onBlur: disabled ? null : this.onBlur, + onKeyDown: disabled ? null : this.onKeyDown, + ref: this.saveRate, + role: "radiogroup" + }, stars); + } + }], [{ + key: "getDerivedStateFromProps", + value: function getDerivedStateFromProps(nextProps, state) { + if ('value' in nextProps && nextProps.value !== undefined) { + return (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, state), {}, { + value: nextProps.value + }); + } + + return state; + } + }]); + + return Rate; +}(react.Component); + +Rate.defaultProps = { + defaultValue: 0, + count: 5, + allowHalf: false, + allowClear: true, + style: {}, + prefixCls: 'rc-rate', + onChange: noop, + character: '★', + onHoverChange: noop, + tabIndex: 0, + direction: 'ltr' +}; +/* harmony default export */ var es_Rate = (Rate); +;// CONCATENATED MODULE: ./node_modules/rc-rate/es/index.js + +/* harmony default export */ var es = (es_Rate); +// EXTERNAL MODULE: ./node_modules/antd/es/config-provider/context.js +var context = __webpack_require__(53124); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules +var tooltip = __webpack_require__(84908); +;// CONCATENATED MODULE: ./node_modules/antd/es/rate/index.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; +}; + + + + + +var rate_Rate = /*#__PURE__*/react.forwardRef(function (props, ref) { + var prefixCls = props.prefixCls, + tooltips = props.tooltips, + _props$character = props.character, + character = _props$character === void 0 ? /*#__PURE__*/react.createElement(icons_StarFilled, null) : _props$character, + rest = __rest(props, ["prefixCls", "tooltips", "character"]); + var characterRender = function characterRender(node, _ref) { + var index = _ref.index; + if (!tooltips) { + return node; + } + return /*#__PURE__*/react.createElement(tooltip/* default */.Z, { + title: tooltips[index] + }, node); + }; + var _React$useContext = react.useContext(context/* ConfigContext */.E_), + getPrefixCls = _React$useContext.getPrefixCls, + direction = _React$useContext.direction; + var ratePrefixCls = getPrefixCls('rate', prefixCls); + return /*#__PURE__*/react.createElement(es, (0,esm_extends/* default */.Z)({ + ref: ref, + character: character, + characterRender: characterRender + }, rest, { + prefixCls: ratePrefixCls, + direction: direction + })); +}); +if (false) {} +/* harmony default export */ var rate = (rate_Rate); + +/***/ }), + +/***/ 50936: +/*!**************************************************************!*\ + !*** ./node_modules/antd/es/rate/style/index.js + 1 modules ***! + \**************************************************************/ +/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { + + +// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less +var style_default = __webpack_require__(43146); +;// CONCATENATED MODULE: ./node_modules/antd/es/rate/style/index.less +// extracted by mini-css-extract-plugin + +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules +var style = __webpack_require__(38390); +;// CONCATENATED MODULE: ./node_modules/antd/es/rate/style/index.js + + +// style dependencies + + +/***/ }), + +/***/ 7124: +/*!**********************************************************************************************!*\ + !*** ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeOutlined.js + 1 modules ***! + \**********************************************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ icons_EyeOutlined; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js +var objectSpread2 = __webpack_require__(1413); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +;// CONCATENATED MODULE: ./node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.js +// This icon file is generated automatically. +var EyeOutlined = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M942.2 486.2C847.4 286.5 704.1 186 512 186c-192.2 0-335.4 100.5-430.2 300.3a60.3 60.3 0 000 51.5C176.6 737.5 319.9 838 512 838c192.2 0 335.4-100.5 430.2-300.3 7.7-16.2 7.7-35 0-51.5zM512 766c-161.3 0-279.4-81.8-362.7-254C232.6 339.8 350.7 258 512 258c161.3 0 279.4 81.8 362.7 254C791.5 684.2 673.4 766 512 766zm-4-430c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm0 288c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z" } }] }, "name": "eye", "theme": "outlined" }; +/* harmony default export */ var asn_EyeOutlined = (EyeOutlined); + +// EXTERNAL MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/components/AntdIcon.js + 3 modules +var AntdIcon = __webpack_require__(93771); +;// CONCATENATED MODULE: ./node_modules/antd/node_modules/@ant-design/icons/es/icons/EyeOutlined.js + +// GENERATE BY ./scripts/generate.ts +// DON NOT EDIT IT MANUALLY + + + +var EyeOutlined_EyeOutlined = function EyeOutlined(props, ref) { + return /*#__PURE__*/react.createElement(AntdIcon/* default */.Z, (0,objectSpread2/* default */.Z)((0,objectSpread2/* default */.Z)({}, props), {}, { + ref: ref, + icon: asn_EyeOutlined + })); +}; +EyeOutlined_EyeOutlined.displayName = 'EyeOutlined'; +/* harmony default export */ var icons_EyeOutlined = (/*#__PURE__*/react.forwardRef(EyeOutlined_EyeOutlined)); + +/***/ }) + +}]); \ No newline at end of file diff --git a/84685.chunk.css b/84635.chunk.css similarity index 56% rename from 84685.chunk.css rename to 84635.chunk.css index 752aa227bd..ac1f7bc2ec 100644 --- a/84685.chunk.css +++ b/84635.chunk.css @@ -1,235 +1,3 @@ -/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/checkbox/style/index.less ***! - \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -@keyframes antCheckboxEffect { - 0% { - transform: scale(1); - opacity: 0.5; - } - 100% { - transform: scale(1.6); - opacity: 0; - } -} -.ant-checkbox { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; - position: relative; - top: 0.2em; - line-height: 1; - white-space: nowrap; - outline: none; - cursor: pointer; -} -.ant-checkbox-wrapper:hover .ant-checkbox-inner, -.ant-checkbox:hover .ant-checkbox-inner, -.ant-checkbox-input:focus + .ant-checkbox-inner { - border-color: #3061D0; -} -.ant-checkbox-checked::after { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border: 1px solid #3061D0; - border-radius: 2px; - visibility: hidden; - animation: antCheckboxEffect 0.36s ease-in-out; - animation-fill-mode: backwards; - content: ''; -} -.ant-checkbox:hover::after, -.ant-checkbox-wrapper:hover .ant-checkbox::after { - visibility: visible; -} -.ant-checkbox-inner { - position: relative; - top: 0; - left: 0; - display: block; - width: 14px; - height: 14px; - direction: ltr; - background-color: #fff; - border: 1px solid #d9d9d9; - border-radius: 2px; - border-collapse: separate; - transition: all 0.3s; -} -.ant-checkbox-inner::after { - position: absolute; - top: 50%; - left: 21.5%; - display: table; - width: 5px; - height: 8px; - border: 2px solid #fff; - border-top: 0; - border-left: 0; - transform: rotate(45deg) scale(0) translate(-50%, -50%); - opacity: 0; - transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; - content: ' '; -} -.ant-checkbox-input { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - width: 100%; - height: 100%; - cursor: pointer; - opacity: 0; -} -.ant-checkbox-checked .ant-checkbox-inner::after { - position: absolute; - display: table; - border: 2px solid #fff; - border-top: 0; - border-left: 0; - transform: rotate(45deg) scale(1) translate(-50%, -50%); - opacity: 1; - transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; - content: ' '; -} -.ant-checkbox-checked .ant-checkbox-inner { - background-color: #3061D0; - border-color: #3061D0; -} -.ant-checkbox-disabled { - cursor: not-allowed; -} -.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after { - border-color: rgba(0, 0, 0, 0.25); - animation-name: none; -} -.ant-checkbox-disabled .ant-checkbox-input { - cursor: not-allowed; - pointer-events: none; -} -.ant-checkbox-disabled .ant-checkbox-inner { - background-color: #f5f5f5; - border-color: #d9d9d9 !important; -} -.ant-checkbox-disabled .ant-checkbox-inner::after { - border-color: #f5f5f5; - border-collapse: separate; - animation-name: none; -} -.ant-checkbox-disabled + span { - color: rgba(0, 0, 0, 0.25); - cursor: not-allowed; -} -.ant-checkbox-disabled:hover::after, -.ant-checkbox-wrapper:hover .ant-checkbox-disabled::after { - visibility: hidden; -} -.ant-checkbox-wrapper { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; - display: inline-flex; - align-items: baseline; - line-height: inherit; - cursor: pointer; -} -.ant-checkbox-wrapper::after { - display: inline-block; - width: 0; - overflow: hidden; - content: '\a0'; -} -.ant-checkbox-wrapper.ant-checkbox-wrapper-disabled { - cursor: not-allowed; -} -.ant-checkbox-wrapper + .ant-checkbox-wrapper { - margin-left: 8px; -} -.ant-checkbox-wrapper.ant-checkbox-wrapper-in-form-item input[type='checkbox'] { - width: 14px; - height: 14px; -} -.ant-checkbox + span { - padding-right: 8px; - padding-left: 8px; -} -.ant-checkbox-group { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; - display: inline-block; -} -.ant-checkbox-group-item { - margin-right: 6px; -} -.ant-checkbox-group-item:last-child { - margin-right: 0; -} -.ant-checkbox-group-item + .ant-checkbox-group-item { - margin-left: 0; -} -.ant-checkbox-indeterminate .ant-checkbox-inner { - background-color: #fff; - border-color: #d9d9d9; -} -.ant-checkbox-indeterminate .ant-checkbox-inner::after { - top: 50%; - left: 50%; - width: 6px; - height: 6px; - background-color: #3061D0; - border: 0; - transform: translate(-50%, -50%) scale(1); - opacity: 1; - content: ' '; -} -.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after { - background-color: rgba(0, 0, 0, 0.25); - border-color: rgba(0, 0, 0, 0.25); -} -.ant-checkbox-rtl { - direction: rtl; -} -.ant-checkbox-group-rtl .ant-checkbox-group-item { - margin-right: 0; - margin-left: 6px; -} -.ant-checkbox-group-rtl .ant-checkbox-group-item:last-child { - margin-left: 0 !important; -} -.ant-checkbox-group-rtl .ant-checkbox-group-item + .ant-checkbox-group-item { - margin-left: 6px; -} -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ - /*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/pagination/style/index.less ***! \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ @@ -792,14 +560,14 @@ textarea.ant-pagination-options-quick-jumper input { /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/divider/style/index.less ***! - \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/list/style/index.less ***! + \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -.ant-divider { +.ant-list { box-sizing: border-box; margin: 0; padding: 0; @@ -809,113 +577,897 @@ textarea.ant-pagination-options-quick-jumper input { line-height: 1.66667; list-style: none; font-feature-settings: tnum, "tnum"; - border-top: 1px solid rgba(0, 0, 0, 0.06); -} -.ant-divider-vertical { position: relative; - top: -0.06em; - display: inline-block; - height: 0.9em; - margin: 0 8px; - vertical-align: middle; - border-top: 0; - border-left: 1px solid rgba(0, 0, 0, 0.06); } -.ant-divider-horizontal { - display: flex; - clear: both; - width: 100%; - min-width: 100%; - margin: 24px 0; +.ant-list * { + outline: none; +} +.ant-list-pagination { + margin-top: 16px; + text-align: right; +} +.ant-list-pagination .ant-pagination-options { + text-align: left; +} +.ant-list-more { + margin-top: 8px; + text-align: center; +} +.ant-list-more button { + padding-right: 32px; + padding-left: 32px; +} +.ant-list-spin { + min-height: 40px; + text-align: center; +} +.ant-list-empty-text { + padding: 8px; + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + text-align: center; +} +.ant-list-items { + margin: 0; + padding: 0; + list-style: none; } -.ant-divider-horizontal.ant-divider-with-text { +.ant-list-item { display: flex; align-items: center; - margin: 16px 0; + justify-content: space-between; + padding: 8px 0; color: rgba(0, 0, 0, 0.85); - font-weight: 500; - font-size: 14px; - white-space: nowrap; - text-align: center; - border-top: 0; - border-top-color: rgba(0, 0, 0, 0.06); } -.ant-divider-horizontal.ant-divider-with-text::before, -.ant-divider-horizontal.ant-divider-with-text::after { - position: relative; - width: 50%; - border-top: 1px solid transparent; - border-top-color: inherit; - border-bottom: 0; - transform: translateY(50%); - content: ''; +.ant-list-item-meta { + display: flex; + flex: 1 1; + align-items: flex-start; + max-width: 100%; +} +.ant-list-item-meta-avatar { + margin-right: 8px; +} +.ant-list-item-meta-content { + flex: 1 0; + width: 0; + color: rgba(0, 0, 0, 0.85); +} +.ant-list-item-meta-title { + margin-bottom: 4px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + line-height: 1.66667; } -.ant-divider-horizontal.ant-divider-with-text-left::before { - width: 5%; +.ant-list-item-meta-title > a { + color: rgba(0, 0, 0, 0.85); + transition: all 0.3s; } -.ant-divider-horizontal.ant-divider-with-text-left::after { - width: 95%; +.ant-list-item-meta-title > a:hover { + color: #3061D0; } -.ant-divider-horizontal.ant-divider-with-text-right::before { - width: 95%; +.ant-list-item-meta-description { + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + line-height: 1.66667; } -.ant-divider-horizontal.ant-divider-with-text-right::after { - width: 5%; +.ant-list-item-action { + flex: 0 0 auto; + margin-left: 48px; + padding: 0; + font-size: 0; + list-style: none; } -.ant-divider-inner-text { +.ant-list-item-action > li { + position: relative; display: inline-block; - padding: 0 1em; + padding: 0 4px; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + line-height: 1.66667; + text-align: center; +} +.ant-list-item-action > li:first-child { + padding-left: 0; +} +.ant-list-item-action-split { + position: absolute; + top: 50%; + right: 0; + width: 1px; + height: 14px; + margin-top: -7px; + background-color: #f0f0f0; } -.ant-divider-dashed { - background: none; - border-color: rgba(0, 0, 0, 0.06); - border-style: dashed; - border-width: 1px 0 0; +.ant-list-header { + background: transparent; } -.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before, -.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after { - border-style: dashed none none; +.ant-list-footer { + background: transparent; } -.ant-divider-vertical.ant-divider-dashed { - border-width: 0 0 0 1px; +.ant-list-header, +.ant-list-footer { + padding-top: 8px; + padding-bottom: 8px; } -.ant-divider-plain.ant-divider-with-text { - color: rgba(0, 0, 0, 0.85); - font-weight: normal; +.ant-list-empty { + padding: 8px 0; + color: rgba(0, 0, 0, 0.45); font-size: 12px; + text-align: center; } -.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before { - width: 0; +.ant-list-split .ant-list-item { + border-bottom: 1px solid #f0f0f0; } -.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after { - width: 100%; +.ant-list-split .ant-list-item:last-child { + border-bottom: none; +} +.ant-list-split .ant-list-header { + border-bottom: 1px solid #f0f0f0; +} +.ant-list-split.ant-list-empty .ant-list-footer { + border-top: 1px solid #f0f0f0; +} +.ant-list-loading .ant-list-spin-nested-loading { + min-height: 32px; +} +.ant-list-split.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child { + border-bottom: 1px solid #f0f0f0; +} +.ant-list-lg .ant-list-item { + padding: 12px 16px; +} +.ant-list-sm .ant-list-item { + padding: 4px 12px; +} +.ant-list-vertical .ant-list-item { + align-items: initial; +} +.ant-list-vertical .ant-list-item-main { + display: block; + flex: 1 1; +} +.ant-list-vertical .ant-list-item-extra { + margin-left: 40px; +} +.ant-list-vertical .ant-list-item-meta { + margin-bottom: 8px; +} +.ant-list-vertical .ant-list-item-meta-title { + margin-bottom: 8px; + color: rgba(0, 0, 0, 0.85); + font-size: 14px; + line-height: 24px; } -.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text { +.ant-list-vertical .ant-list-item-action { + margin-top: 8px; + margin-left: auto; +} +.ant-list-vertical .ant-list-item-action > li { + padding: 0 8px; +} +.ant-list-vertical .ant-list-item-action > li:first-child { padding-left: 0; } -.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before { - width: 100%; +.ant-list-grid .ant-col > .ant-list-item { + display: block; + max-width: 100%; + margin-bottom: 8px; + padding-top: 0; + padding-bottom: 0; + border-bottom: none; } -.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after { - width: 0; +.ant-list-item-no-flex { + display: block; } -.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text { - padding-right: 0; +.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action { + float: right; +} +.ant-list-bordered { + border: 1px solid #d9d9d9; + border-radius: 2px; +} +.ant-list-bordered .ant-list-header { + padding-right: 16px; + padding-left: 16px; +} +.ant-list-bordered .ant-list-footer { + padding-right: 16px; + padding-left: 16px; +} +.ant-list-bordered .ant-list-item { + padding-right: 16px; + padding-left: 16px; +} +.ant-list-bordered .ant-list-pagination { + margin: 8px 16px; +} +.ant-list-bordered.ant-list-sm .ant-list-item { + padding: 4px 12px; } -.ant-divider-rtl { +.ant-list-bordered.ant-list-sm .ant-list-header, +.ant-list-bordered.ant-list-sm .ant-list-footer { + padding: 4px 12px; +} +.ant-list-bordered.ant-list-lg .ant-list-item { + padding: 12px 16px; +} +.ant-list-bordered.ant-list-lg .ant-list-header, +.ant-list-bordered.ant-list-lg .ant-list-footer { + padding: 12px 16px; +} +@media screen and (max-width: 768px) { + .ant-list-item-action { + margin-left: 24px; + } + .ant-list-vertical .ant-list-item-extra { + margin-left: 24px; + } +} +@media screen and (max-width: 576px) { + .ant-list-item { + flex-wrap: wrap; + } + .ant-list-item-action { + margin-left: 12px; + } + .ant-list-vertical .ant-list-item { + flex-wrap: wrap-reverse; + } + .ant-list-vertical .ant-list-item-main { + min-width: 220px; + } + .ant-list-vertical .ant-list-item-extra { + margin: auto auto 16px; + } +} +.ant-list-rtl { direction: rtl; + text-align: right; } -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before { - width: 95%; +.ant-list-rtl .ReactVirtualized__List .ant-list-item { + direction: rtl; } -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after { - width: 5%; +.ant-list-rtl .ant-list-pagination { + text-align: left; } -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before { - width: 5%; +.ant-list-rtl .ant-list-item-meta-avatar { + margin-right: 0; + margin-left: 8px; } -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after { - width: 95%; +.ant-list-rtl .ant-list-item-action { + margin-right: 48px; + margin-left: 0; +} +.ant-list.ant-list-rtl .ant-list-item-action > li:first-child { + padding-right: 0; + padding-left: 8px; +} +.ant-list-rtl .ant-list-item-action-split { + right: auto; + left: 0; +} +.ant-list-rtl.ant-list-vertical .ant-list-item-extra { + margin-right: 40px; + margin-left: 0; +} +.ant-list-rtl.ant-list-vertical .ant-list-item-action { + margin-right: auto; +} +.ant-list-rtl .ant-list-vertical .ant-list-item-action > li:first-child { + padding-right: 0; + padding-left: 8px; +} +.ant-list-rtl .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action { + float: left; +} +@media screen and (max-width: 768px) { + .ant-list-rtl .ant-list-item-action { + margin-right: 24px; + margin-left: 0; + } + .ant-list-rtl .ant-list-vertical .ant-list-item-extra { + margin-right: 24px; + margin-left: 0; + } +} +@media screen and (max-width: 576px) { + .ant-list-rtl .ant-list-item-action { + margin-right: 22px; + margin-left: 0; + } + .ant-list-rtl.ant-list-vertical .ant-list-item-extra { + margin: auto auto 16px; + } +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + +/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/form/style/index.less ***! + \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-form-item .ant-input-number + .ant-form-text { + margin-left: 8px; +} +.ant-form-inline { + display: flex; + flex-wrap: wrap; +} +.ant-form-inline .ant-form-item { + flex: none; + flex-wrap: nowrap; + margin-right: 16px; + margin-bottom: 0; +} +.ant-form-inline .ant-form-item-with-help { + margin-bottom: 16px; +} +.ant-form-inline .ant-form-item > .ant-form-item-label, +.ant-form-inline .ant-form-item > .ant-form-item-control { + display: inline-block; + vertical-align: top; +} +.ant-form-inline .ant-form-item > .ant-form-item-label { + flex: none; +} +.ant-form-inline .ant-form-item .ant-form-text { + display: inline-block; +} +.ant-form-inline .ant-form-item .ant-form-item-has-feedback { + display: inline-block; +} +.ant-form-horizontal .ant-form-item-label { + flex-grow: 0; +} +.ant-form-horizontal .ant-form-item-control { + flex: 1 1; + min-width: 0; +} +.ant-form-horizontal .ant-form-item-label[class$='-24'] + .ant-form-item-control, +.ant-form-horizontal .ant-form-item-label[class*='-24 '] + .ant-form-item-control { + min-width: 0; + min-width: initial; +} +.ant-form-vertical .ant-form-item-row { + flex-direction: column; +} +.ant-form-vertical .ant-form-item-label > label { + height: auto; +} +.ant-form-vertical .ant-form-item .ant-form-item-control { + width: 100%; +} +.ant-form-vertical .ant-form-item-label, +.ant-col-24.ant-form-item-label, +.ant-col-xl-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; +} +.ant-form-vertical .ant-form-item-label > label, +.ant-col-24.ant-form-item-label > label, +.ant-col-xl-24.ant-form-item-label > label { + margin: 0; +} +.ant-form-vertical .ant-form-item-label > label::after, +.ant-col-24.ant-form-item-label > label::after, +.ant-col-xl-24.ant-form-item-label > label::after { + display: none; +} +.ant-form-rtl.ant-form-vertical .ant-form-item-label, +.ant-form-rtl.ant-col-24.ant-form-item-label, +.ant-form-rtl.ant-col-xl-24.ant-form-item-label { + text-align: right; +} +@media (max-width: 575px) { + .ant-form-item .ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-form-item .ant-form-item-label > label { + margin: 0; + } + .ant-form-item .ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-form-item .ant-form-item-label { + text-align: right; + } + .ant-form .ant-form-item { + flex-wrap: wrap; + } + .ant-form .ant-form-item .ant-form-item-label, + .ant-form .ant-form-item .ant-form-item-control { + flex: 0 0 100%; + max-width: 100%; + } + .ant-col-xs-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-xs-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-xs-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-xs-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 767px) { + .ant-col-sm-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-sm-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-sm-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-sm-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 991px) { + .ant-col-md-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-md-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-md-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-md-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 1199px) { + .ant-col-lg-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-lg-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-lg-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-lg-24.ant-form-item-label { + text-align: right; + } +} +@media (max-width: 1599px) { + .ant-col-xl-24.ant-form-item-label { + padding: 0 0 4px; + line-height: 1.66667; + white-space: normal; + white-space: initial; + text-align: left; + } + .ant-col-xl-24.ant-form-item-label > label { + margin: 0; + } + .ant-col-xl-24.ant-form-item-label > label::after { + display: none; + } + .ant-form-rtl.ant-col-xl-24.ant-form-item-label { + text-align: right; + } +} +.ant-form-item { + /* Some non-status related component style is in `components.less` */ + /* To support leave along ErrorList. We add additional className to handle explain style */ +} +.ant-form-item-explain-error { + color: #ff4d4f; +} +.ant-form-item-explain-warning { + color: #faad14; +} +.ant-form-item-has-feedback .ant-switch { + margin: 2px 0 4px; +} +.ant-form-item-has-warning .ant-form-item-split { + color: #faad14; +} +.ant-form-item-has-error .ant-form-item-split { + color: #ff4d4f; +} +.ant-form { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; +} +.ant-form legend { + display: block; + width: 100%; + margin-bottom: 20px; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-size: 14px; + line-height: inherit; + border: 0; + border-bottom: 1px solid #d9d9d9; +} +.ant-form label { + font-size: 12px; +} +.ant-form input[type='search'] { + box-sizing: border-box; +} +.ant-form input[type='radio'], +.ant-form input[type='checkbox'] { + line-height: normal; +} +.ant-form input[type='file'] { + display: block; +} +.ant-form input[type='range'] { + display: block; + width: 100%; +} +.ant-form select[multiple], +.ant-form select[size] { + height: auto; +} +.ant-form input[type='file']:focus, +.ant-form input[type='radio']:focus, +.ant-form input[type='checkbox']:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.ant-form output { + display: block; + padding-top: 15px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + line-height: 1.66667; +} +.ant-form .ant-form-text { + display: inline-block; + padding-right: 8px; +} +.ant-form-small .ant-form-item-label > label { + height: 22px; +} +.ant-form-small .ant-form-item-control-input { + min-height: 22px; +} +.ant-form-large .ant-form-item-label > label { + height: 32px; +} +.ant-form-large .ant-form-item-control-input { + min-height: 32px; +} +.ant-form-item { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + margin-bottom: 16px; + vertical-align: top; +} +.ant-form-item-with-help { + transition: none; +} +.ant-form-item-hidden, +.ant-form-item-hidden.ant-row { + display: none; +} +.ant-form-item-label { + display: inline-block; + flex-grow: 0; + overflow: hidden; + white-space: nowrap; + text-align: right; + vertical-align: middle; +} +.ant-form-item-label-left { + text-align: left; +} +.ant-form-item-label-wrap { + overflow: visible; + overflow: initial; + line-height: 1.41667em; + white-space: inherit; +} +.ant-form-item-label > label { + position: relative; + display: inline-flex; + align-items: center; + max-width: 100%; + height: 28px; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; +} +.ant-form-item-label > label > .anticon { + font-size: 12px; + vertical-align: top; +} +.ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before { + display: inline-block; + margin-right: 4px; + color: #ff4d4f; + font-size: 12px; + font-family: SimSun, sans-serif; + line-height: 1; + content: '*'; +} +.ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before { + display: none; +} +.ant-form-item-label > label .ant-form-item-optional { + display: inline-block; + margin-left: 0px; + color: rgba(0, 0, 0, 0.45); +} +.ant-form-hide-required-mark .ant-form-item-label > label .ant-form-item-optional { + display: none; +} +.ant-form-item-label > label .ant-form-item-tooltip { + color: rgba(0, 0, 0, 0.45); + cursor: help; + -webkit-writing-mode: horizontal-tb; + -ms-writing-mode: lr-tb; + writing-mode: horizontal-tb; + -webkit-margin-start: 0px; + margin-inline-start: 0px; +} +.ant-form-item-label > label::after { + content: ':'; + position: relative; + top: -0.5px; + margin: 0 8px 0 2px; +} +.ant-form-item-label > label.ant-form-item-no-colon::after { + content: ' '; +} +.ant-form-item-control { + display: flex; + flex-direction: column; + flex-grow: 1; +} +.ant-form-item-control:first-child:not([class^='ant-col-']):not([class*=' ant-col-']) { + width: 100%; +} +.ant-form-item-control-input { + position: relative; + display: flex; + align-items: center; + min-height: 28px; +} +.ant-form-item-control-input-content { + flex: auto; + max-width: 100%; +} +.ant-form-item-explain, +.ant-form-item-extra { + clear: both; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + line-height: 1.66667; + transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); +} +.ant-form-item-explain-connected { + width: 100%; +} +.ant-form-item-extra { + min-height: 16px; +} +.ant-form-item-with-help .ant-form-item-explain { + height: auto; + opacity: 1; +} +.ant-form-item-feedback-icon { + font-size: 12px; + text-align: center; + visibility: visible; + animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + pointer-events: none; +} +.ant-form-item-feedback-icon-success { + color: #52c41a; +} +.ant-form-item-feedback-icon-error { + color: #ff4d4f; +} +.ant-form-item-feedback-icon-warning { + color: #faad14; +} +.ant-form-item-feedback-icon-validating { + color: #3061D0; +} +.ant-show-help { + transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-show-help-appear, +.ant-show-help-enter { + opacity: 0; +} +.ant-show-help-appear-active, +.ant-show-help-enter-active { + opacity: 1; +} +.ant-show-help-leave { + opacity: 1; +} +.ant-show-help-leave-active { + opacity: 0; +} +.ant-show-help-item { + overflow: hidden; + transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important; +} +.ant-show-help-item-appear, +.ant-show-help-item-enter { + transform: translateY(-5px); + opacity: 0; +} +.ant-show-help-item-appear-active, +.ant-show-help-item-enter-active { + transform: translateY(0); + opacity: 1; +} +.ant-show-help-item-leave { + transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important; +} +.ant-show-help-item-leave-active { + transform: translateY(-5px); +} +@keyframes diffZoomIn1 { + 0% { + transform: scale(0); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@keyframes diffZoomIn2 { + 0% { + transform: scale(0); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@keyframes diffZoomIn3 { + 0% { + transform: scale(0); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +.ant-form-rtl { + direction: rtl; +} +.ant-form-rtl .ant-form-item-label { + text-align: left; +} +.ant-form-rtl .ant-form-item-label > label.ant-form-item-required::before { + margin-right: 0; + margin-left: 4px; +} +.ant-form-rtl .ant-form-item-label > label::after { + margin: 0 2px 0 8px; +} +.ant-form-rtl .ant-form-item-label > label .ant-form-item-optional { + margin-right: 0px; + margin-left: 0; +} +.ant-col-rtl .ant-form-item-control:first-child { + width: 100%; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input { + padding-right: 7px; + padding-left: 24px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input-suffix { + padding-right: 7px; + padding-left: 18px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input { + padding: 0; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-number-affix-wrapper .ant-input-number { + padding: 0; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix { + right: auto; + left: 28px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-input-number { + padding-left: 18px; +} +.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-arrow, +.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-clear, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear { + right: auto; + left: 32px; +} +.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value, +.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value { + padding-right: 0; + padding-left: 42px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-arrow { + margin-right: 0; + margin-left: 19px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-clear { + right: auto; + left: 32px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-picker { + padding-right: 7px; + padding-left: 22.6px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-picker-large { + padding-right: 11px; + padding-left: 26.6px; +} +.ant-form-rtl .ant-form-item-has-feedback .ant-picker-small { + padding-right: 7px; + padding-left: 22.6px; +} +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon, +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-warning .ant-form-item-children-icon, +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-error .ant-form-item-children-icon, +.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-is-validating .ant-form-item-children-icon { + right: auto; + left: 0; +} +.ant-form-rtl.ant-form-inline .ant-form-item { + margin-right: 0; + margin-left: 16px; } /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ diff --git a/85343.async.js b/85343.async.js index 96b32fff06..78f0fde884 100644 --- a/85343.async.js +++ b/85343.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -289,8 +289,11 @@ var SuperiorTabs = function SuperiorTabs(_ref) { dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource, value = _ref.value, onChange = _ref.onChange, - className = _ref.className; + className = _ref.className, + _ref$style = _ref.style, + style = _ref$style === void 0 ? {} : _ref$style; return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + style: style, className: classnames_default()(SuperiorTabsmodules.tabs, className), children: dataSource.map(function (e) { return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { @@ -925,7 +928,7 @@ var CustomTabs = function CustomTabs(_ref) { return /*#__PURE__*/(0,jsx_runtime.jsxs)("aside", { className: CustomTabsmodules.tab, onClick: function onClick() { - return onChange(item.id); + onChange(item.id); }, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { className: value === item.id ? CustomTabsmodules.active : '', diff --git a/85343.chunk.css b/85343.chunk.css index 5ddc1d26ac..10c24f0d27 100644 --- a/85343.chunk.css +++ b/85343.chunk.css @@ -240,6 +240,7 @@ background: #f6f7f9; box-shadow: inset 0px 1px 3px 0px #d7d8d9; border-radius: 16px; + display: inline-block; } .tabs___GTqPV span { display: inline-block; @@ -381,6 +382,7 @@ color: rgba(0, 0, 0, 0.88); font-weight: 400; font-size: 14px; + text-align: left; line-height: 1.57142857; cursor: pointer; transition: all 0.2s; @@ -1042,12 +1044,14 @@ .table___zOWN7 .ant-table-tbody tr td { border: none; color: #000000; + border-bottom: 1px solid #f6F7F9; } .table___zOWN7 .ant-table-thead > tr > th { background: white; border: none; color: #5f6368; font-weight: 400; + background: #f6F7F9; } .table___zOWN7 .ant-table-thead > tr > th::before { display: none; diff --git a/92026.async.js b/92026.async.js index 19dc55d35c..c707338d41 100644 --- a/92026.async.js +++ b/92026.async.js @@ -431,8 +431,8 @@ var layout = __webpack_require__(97183); var react = __webpack_require__(67294); // EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules var _umi_production_exports = __webpack_require__(89214); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/components/Header/index.less?modules // extracted by mini-css-extract-plugin /* harmony default export */ var Headermodules = ({"flex_box_center":"flex_box_center___et8xE","flex_space_between":"flex_space_between___GBGuw","flex_box_vertical_center":"flex_box_vertical_center____6P1q","flex_box_center_end":"flex_box_center_end___whXw6","flex_box_column":"flex_box_column___mWgI_","header":"header___Wn4fJ","logo":"logo___QnotM","menu":"menu___twLGR","dropDown":"dropDown___Cwaoa","line":"line___D1auu","subName":"subName___gql7K","name":"name___dR5V2","actived":"actived___ohMks","edu-menu":"edu-menu___iWLK0","newslight":"newslight___lSZjL","classromediv":"classromediv___knFRv","glow":"glow___gzrPH","spandiv":"spandiv___Gm_hg","header-iearning":"header-iearning___LZfyg","title":"title___Ozzjk","headerFixed":"headerFixed___QLwBd"}); @@ -975,7 +975,7 @@ var User = function User(_ref) { }) }); } else { - var _user$userInfo6, _user$userInfo7, _user$userInfo8, _user$userInfo9, _user$userInfo10, _user$userInfo11, _user$userInfo12, _user$navigationInfo, _user$navigationInfo$, _user$navigationInfo2, _user$navigationInfo3, _user$navigationInfo4, _user$navigationInfo5, _user$navigationInfo6, _user$navigationInfo7, _user$navigationInfo8, _user$navigationInfo9, _user$navigationInfo10, _user$navigationInfo11; + var _user$userInfo6, _user$userInfo7, _user$userInfo8, _user$userInfo9, _user$userInfo10, _user$userInfo11, _user$userInfo12, _user$userInfo13, _user$navigationInfo, _user$navigationInfo$, _user$navigationInfo2, _user$navigationInfo3, _user$navigationInfo4, _user$navigationInfo5, _user$navigationInfo6, _user$navigationInfo7, _user$navigationInfo8, _user$navigationInfo9, _user$navigationInfo10, _user$navigationInfo11; return /*#__PURE__*/(0,jsx_runtime.jsxs)(menu/* default */.Z, { className: "".concat(Usermodules.rightMenu, " ").concat(Usermodules.menuWrap), children: [/*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default.Item */.Z.Item, { @@ -1003,6 +1003,11 @@ var User = function User(_ref) { to: "/users/".concat((_user$userInfo12 = user.userInfo) === null || _user$userInfo12 === void 0 ? void 0 : _user$userInfo12.login, "/teach-group"), children: "\u6211\u7684\u6559\u7814\u56E2\u961F" }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default.Item */.Z.Item, { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(_umi_production_exports.Link, { + to: "/users/".concat((_user$userInfo13 = user.userInfo) === null || _user$userInfo13 === void 0 ? void 0 : _user$userInfo13.login, "/competitions"), + children: "\u6211\u7684\u7ADE\u8D5B\u7BA1\u7406" + }) }), /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default.Item */.Z.Item, { children: /*#__PURE__*/(0,jsx_runtime.jsx)(_umi_production_exports.Link, { to: "/order", @@ -1109,7 +1114,7 @@ var User = function User(_ref) { } }; if ((0,authority/* isLogin */.bg)()) { - var _user$userInfo13, _user$userInfo15; + var _user$userInfo14, _user$userInfo16; return /*#__PURE__*/(0,jsx_runtime.jsx)(dropdown/* default */.Z, { className: "".concat(Usermodules.height67), dropdownRender: DropdownMenu, @@ -1120,15 +1125,15 @@ var User = function User(_ref) { className: shixunHomeworks.actionTabs.type === 1 ? Usermodules.classromediv : '', children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { className: "".concat(Usermodules.userPic, " current ml15"), - src: "".concat(env/* default */.Z === null || env/* default */.Z === void 0 ? void 0 : env/* default.IMG_SERVER */.Z.IMG_SERVER, "/images/").concat((_user$userInfo13 = user.userInfo) === null || _user$userInfo13 === void 0 ? void 0 : _user$userInfo13.image_url), + src: "".concat(env/* default */.Z === null || env/* default */.Z === void 0 ? void 0 : env/* default.IMG_SERVER */.Z.IMG_SERVER, "/images/").concat((_user$userInfo14 = user.userInfo) === null || _user$userInfo14 === void 0 ? void 0 : _user$userInfo14.image_url), alt: "", onClick: function onClick() { - var _user$userInfo14; - return _umi_production_exports.history.push((0,util/* checkIsClientExam */.Ll)() ? '/account/profile' : "/users/".concat((_user$userInfo14 = user.userInfo) === null || _user$userInfo14 === void 0 ? void 0 : _user$userInfo14.login, "/classrooms")); + var _user$userInfo15; + return _umi_production_exports.history.push((0,util/* checkIsClientExam */.Ll)() ? '/account/profile' : "/users/".concat((_user$userInfo15 = user.userInfo) === null || _user$userInfo15 === void 0 ? void 0 : _user$userInfo15.login, "/classrooms")); } }), (0,util/* checkIsClientExam */.Ll)() && /*#__PURE__*/(0,jsx_runtime.jsx)("span", { className: "ml10 font16", - children: (_user$userInfo15 = user.userInfo) === null || _user$userInfo15 === void 0 ? void 0 : _user$userInfo15.username + children: (_user$userInfo16 = user.userInfo) === null || _user$userInfo16 === void 0 ? void 0 : _user$userInfo16.username }), /*#__PURE__*/(0,jsx_runtime.jsx)("i", { className: "iconfont icon-zhankai4 ".concat(Usermodules.icon) })] diff --git a/93601.async.js b/93601.async.js index 84a9738054..8f633fa899 100644 --- a/93601.async.js +++ b/93601.async.js @@ -198,8 +198,8 @@ var SvgStar = function SvgStar(props) { /* harmony default export */ var star = ("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTUuNTAzIDIxLjg5NmEyLjA2NyAyLjA2NyAwIDAgMS0uODctLjIwMSA0NTEuOTg3IDQ1MS45ODcgMCAwIDEtNC4zNzYtMi4xMWMtMS40NjYuNjktMi45MzEgMS4zODQtNC4zOTYgMi4wOC0uNjc0LjI5OS0xLjMzLjI2LTEuODE2LS4wOTYtLjQ1OC0uMzM1LS42ODUtLjkxMi0uNjI0LTEuNTc5LjE3My0xLjU2LjQ2NS0zLjY5My41NzQtNC40ODVhMTg4LjAyOSAxODguMDI5IDAgMCAxLTMuNTg3LTMuOTIyIDEuNSAxLjUgMCAwIDEtLjMtMS41MWMuMjEzLS41NzQuNzYtLjk4MiAxLjQ3Mi0xLjA4Nmw0LjY1NS0uODUzQTUxMi45NSA1MTIuOTUgMCAwIDEgOC43ODcgMy43M2MuNzE3LTEuMzQ0IDEuNDI2LTEuMzQ0IDEuOC0xLjIwOS40MDcuMTM0Ljc5Mi41MzEgMS4xNzcgMS4yMjMuODI5IDEuNDMzIDIuMDggMy42NDIgMi41MDQgNC4zOTFsNC42MS44NThjLjY3OC4xIDEuMjE4LjUwNyAxLjQyOCAxLjA4NGExLjUwNyAxLjUwNyAwIDAgMS0uMjg2IDEuNTA0IDE5Mi44MDggMTkyLjgwOCAwIDAgMS0zLjU1NiAzLjk0NGMuMTA0Ljc4OC4zODggMi45MjcuNTczIDQuNDc5LjA3MS42ODUtLjE1MiAxLjI2OS0uNjE2IDEuNjA5YTEuNTUgMS41NSAwIDAgMS0uOTE2LjI4NGgtLjAwMloiIGZpbGw9IiM1MDkxRkYiLz48cGF0aCBkPSJNMjEuNzA2IDQuNDYyYS41NTcuNTU3IDAgMCAxLS4yNDcuMDczYy0uNDUuMDMtMS4xMjIuMDY3LTEuMzk3LjA4bC0uNzc4IDEuMmMtLjEyMi4xOC0uMjkuMjY1LS40NjQuMjQtLjE2My0uMDItLjMwNi0uMTQtLjM5LS4zMjlhNjAuODEgNjAuODEgMCAwIDEtLjUyOS0xLjI3OCA1My4wMDkgNTMuMDA5IDAgMCAxLTEuNDc2LS41MTguNDc1LjQ3NSAwIDAgMS0uMy0uMzYuNTMzLjUzMyAwIDAgMSAuMi0uNTA1bDEuMDI1LS45MWMtLjAxMS0uNTE2LS4wMi0xLjAzMi0uMDI4LTEuNTQ4LS4wMjQtLjQ2My4xNS0uNTY4LjI2NC0uNTg1LjEyMS0uMDI2LjI3NS4wMjQuNDc0LjE1MS40MTkuMjYyIDEuMDYuNjY3IDEuMjc3LjgwNGwxLjI3LS40NDhhLjQ5LjQ5IDAgMCAxIC41MTUuMDhjLjEyNC4xMS4xODMuMjguMTU1LjQ0MS0uMDkuNTI2LS4xODYgMS4wNTItLjI5IDEuNTc0LjE0NS4xOTQuNTM2LjcyMi44MTQgMS4xMS4xMi4xNzIuMTUyLjM2LjA4OC41MThhLjQzNS40MzUgMCAwIDEtLjE4NS4yMWguMDAyWk0yLjg1OSA1LjgzYS4yODcuMjg3IDAgMCAxLS4wOTMtLjA5MSA2Mi4xNyA2Mi4xNyAwIDAgMS0uMzgyLS42MDMgNDkuOTkgNDkuOTkgMCAwIDAtLjctLjA0NWMtLjEwNi0uMDEtLjE4NS0uMDYzLS4yMTgtLjE0NmEuMjc2LjI3NiAwIDAgMSAuMDQtLjI1NWMuMTQtLjE5Ny4zMzQtLjQ2LjQwNy0uNTU3YTI4LjM5NyAyOC4zOTcgMCAwIDEtLjE0OS0uNzg2LjI0My4yNDMgMCAwIDEgLjA3Ni0uMjIzLjI1LjI1IDAgMCAxIC4yNjQtLjAzN2wuNjQuMjI4Yy4xMDgtLjA2OC40MzEtLjI3LjY0NC0uMzk4LjE5LS4xMjguMjc4LS4wNzUuMzE0LS4wMy4wNC4wNDcuMDU5LjEyOC4wNTQuMjVsLS4wMTkuNzY4LjUwNi40NTNhLjI1OC4yNTggMCAwIDEgLjA5NS4yNDkuMjM4LjIzOCAwIDAgMS0uMTQ3LjE3OGMtLjI0NS4wOTItLjQ5LjE4LS43MzYuMjY1LS4wNDcuMTEzLS4xNzEuNDItLjI2NC42NC0uMDQ0LjA5NS0uMTE1LjE1OS0uMTk3LjE2OGEuMjA4LjIwOCAwIDAgMS0uMTM1LS4wMjhaIiBmaWxsPSIjQjZEMEZDIi8+PC9nPjwvc3ZnPg=="); // EXTERNAL MODULE: ./node_modules/echarts-for-react/lib/index.js var lib = __webpack_require__(50976); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); // EXTERNAL MODULE: ./node_modules/echarts-wordcloud/index.js var echarts_wordcloud = __webpack_require__(89777); // EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js diff --git a/color.less b/color.less index 6ef1259875..be0af7e7db 100644 --- a/color.less +++ b/color.less @@ -563,10 +563,10 @@ a.ant-btn-disabled:active > a:only-child::after {background: transparent;} .ant-comment-actions > li > span {color: @text-color-secondary;} .ant-comment-actions > li > span:hover {color: #595959;} .ant-picker-status-error.ant-picker, .ant-picker-status-error.ant-picker:not([disabled]):hover {background-color: #fff;border-color: @error-color;} -.ant-picker-status-error.ant-picker-focused, .ant-picker-status-error.ant-picker:focus {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(110, 230, 137, 0.2);border-right-width: 1px;} +.ant-picker-status-error.ant-picker-focused, .ant-picker-status-error.ant-picker:focus {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(201, 75, 135, 0.2);border-right-width: 1px;} .ant-picker-status-error.ant-picker .ant-picker-active-bar {background: color(~`colorPalette("@{error-color}", 5)`);} .ant-picker-status-warning.ant-picker, .ant-picker-status-warning.ant-picker:not([disabled]):hover {background-color: #fff;border-color: @warning-color;} -.ant-picker-status-warning.ant-picker-focused, .ant-picker-status-warning.ant-picker:focus {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(23, 178, 1, 0.2);border-right-width: 1px;} +.ant-picker-status-warning.ant-picker-focused, .ant-picker-status-warning.ant-picker:focus {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(233, 231, 17, 0.2);border-right-width: 1px;} .ant-picker-status-warning.ant-picker .ant-picker-active-bar {background: color(~`colorPalette("@{warning-color}", 5)`);} .ant-picker {color: @text-color;background: #fff;border: 1px solid @border-color-base;border-radius: 2px;} .ant-picker:hover, .ant-picker-focused {border-color: color(~`colorPalette("@{primary-color}", 5)`);border-right-width: 1px;} @@ -788,16 +788,16 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .anticon.ant-input-clear-icon:hover, .ant-input-clear-icon:hover {color: @text-color-secondary;} .anticon.ant-input-clear-icon:active, .ant-input-clear-icon:active {color: @text-color;} .ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input, .ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover {background: #fff;border-color: @error-color;} -.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, .ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(110, 230, 137, 0.2);border-right-width: 1px;} +.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, .ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(201, 75, 135, 0.2);border-right-width: 1px;} .ant-input-status-error .ant-input-prefix {color: @error-color;} .ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input, .ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover {background: #fff;border-color: @warning-color;} -.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, .ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(23, 178, 1, 0.2);border-right-width: 1px;} +.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, .ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(233, 231, 17, 0.2);border-right-width: 1px;} .ant-input-status-warning .ant-input-prefix {color: @warning-color;} .ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper, .ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {background: #fff;border-color: @error-color;} -.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus, .ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(110, 230, 137, 0.2);border-right-width: 1px;} +.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus, .ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(201, 75, 135, 0.2);border-right-width: 1px;} .ant-input-affix-wrapper-status-error .ant-input-prefix {color: @error-color;} .ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper, .ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {background: #fff;border-color: @warning-color;} -.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus, .ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(23, 178, 1, 0.2);border-right-width: 1px;} +.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus, .ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(233, 231, 17, 0.2);border-right-width: 1px;} .ant-input-affix-wrapper-status-warning .ant-input-prefix {color: @warning-color;} .ant-input-group-wrapper-status-error .ant-input-group-addon {color: @error-color;border-color: @error-color;} .ant-input-group-wrapper-status-warning .ant-input-group-addon {color: @warning-color;border-color: @warning-color;} @@ -894,16 +894,16 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-input-number-affix-wrapper > div.ant-input-number {border: none;} .ant-input-number-affix-wrapper > div.ant-input-number.ant-input-number-focused {box-shadow: none !important;} .ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number, .ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:hover {background: #fff;border-color: @error-color;} -.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus, .ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(110, 230, 137, 0.2);border-right-width: 1px;} +.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus, .ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(201, 75, 135, 0.2);border-right-width: 1px;} .ant-input-number-status-error .ant-input-number-prefix {color: @error-color;} .ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number, .ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:hover {background: #fff;border-color: @warning-color;} -.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus, .ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(23, 178, 1, 0.2);border-right-width: 1px;} +.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus, .ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(233, 231, 17, 0.2);border-right-width: 1px;} .ant-input-number-status-warning .ant-input-number-prefix {color: @warning-color;} .ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper, .ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {background: #fff;border-color: @error-color;} -.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus, .ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(110, 230, 137, 0.2);border-right-width: 1px;} +.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus, .ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(201, 75, 135, 0.2);border-right-width: 1px;} .ant-input-number-affix-wrapper-status-error .ant-input-number-prefix {color: @error-color;} .ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper, .ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {background: #fff;border-color: @warning-color;} -.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus, .ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(23, 178, 1, 0.2);border-right-width: 1px;} +.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus, .ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(233, 231, 17, 0.2);border-right-width: 1px;} .ant-input-number-affix-wrapper-status-warning .ant-input-number-prefix {color: @warning-color;} .ant-input-number-group-wrapper-status-error .ant-input-number-group-addon {color: @error-color;border-color: @error-color;} .ant-input-number-group-wrapper-status-warning .ant-input-number-group-addon {color: @warning-color;border-color: @warning-color;} @@ -1024,10 +1024,10 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-list-grid .ant-col > .ant-list-item {border-bottom: none;} .ant-list-bordered {border: 1px solid @border-color-base;border-radius: 2px;} .ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions, .ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:hover {background: #fff;border-color: @error-color;} -.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus, .ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(110, 230, 137, 0.2);border-right-width: 1px;} +.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus, .ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(201, 75, 135, 0.2);border-right-width: 1px;} .ant-mentions-status-error .ant-input-prefix {color: @error-color;} .ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions, .ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:hover {background: #fff;border-color: @warning-color;} -.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus, .ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(23, 178, 1, 0.2);border-right-width: 1px;} +.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus, .ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(233, 231, 17, 0.2);border-right-width: 1px;} .ant-mentions-status-warning .ant-input-prefix {color: @warning-color;} .ant-mentions {color: @text-color;background-color: #fff;background-image: none;border: 1px solid @border-color-base;border-radius: 2px;} .ant-mentions::placeholder {color: #bfbfbf;} @@ -1058,10 +1058,10 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-mentions-dropdown-menu-item-active {background-color: #f5f5f5;} .ant-menu-item-danger.ant-menu-item {color: @error-color;} .ant-menu-item-danger.ant-menu-item:hover, .ant-menu-item-danger.ant-menu-item-active {color: @error-color;} -.ant-menu-item-danger.ant-menu-item:active {background: #fff1f0;} +.ant-menu-item-danger.ant-menu-item:active {background: color(~`colorPalette("@{modal-heading-color}", 1)`);} .ant-menu-item-danger.ant-menu-item-selected {color: @error-color;} .ant-menu-item-danger.ant-menu-item-selected > a, .ant-menu-item-danger.ant-menu-item-selected > a:hover {color: @error-color;} -.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {background-color: #fff1f0;} +.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {background-color: color(~`colorPalette("@{modal-heading-color}", 1)`);} .ant-menu-inline .ant-menu-item-danger.ant-menu-item::after {border-right-color: @error-color;} .ant-menu-dark .ant-menu-item-danger.ant-menu-item, .ant-menu-dark .ant-menu-item-danger.ant-menu-item:hover, .ant-menu-dark .ant-menu-item-danger.ant-menu-item > a {color: @error-color;} .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {color: #fff;background-color: @error-color;} @@ -1360,9 +1360,9 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-select-multiple .ant-select-selection-item-remove {color: inherit;color: @text-color-secondary;} .ant-select-multiple .ant-select-selection-item-remove:hover {color: rgba(0, 0, 0, 0.75);} .ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {background-color: #fff;border-color: @error-color !important;} -.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector, .ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(110, 230, 137, 0.2);border-right-width: 1px;} +.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector, .ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {border-color: color(~`colorPalette("@{error-color}", 5)`);box-shadow: 0 0 0 2px rgba(201, 75, 135, 0.2);border-right-width: 1px;} .ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {background-color: #fff;border-color: @warning-color !important;} -.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector, .ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(23, 178, 1, 0.2);border-right-width: 1px;} +.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector, .ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {border-color: color(~`colorPalette("@{warning-color}", 5)`);box-shadow: 0 0 0 2px rgba(233, 231, 17, 0.2);border-right-width: 1px;} .ant-select {color: @text-color;} .ant-select:not(.ant-select-customize-input) .ant-select-selector {background-color: #fff;border: 1px solid @border-color-base;border-radius: 2px;} .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {border-color: color(~`colorPalette("@{primary-color}", 5)`);box-shadow: 0 0 0 2px fade(@primary-color, 20%);border-right-width: 1px;} @@ -1636,11 +1636,11 @@ tr.ant-table-expanded-row:hover > td {background: #fbfbfb;} .ant-tag-checkable:active, .ant-tag-checkable-checked {color: #fff;} .ant-tag-checkable-checked {background-color: @primary-color;} .ant-tag-checkable:active {background-color: color(~`colorPalette("@{primary-color}", 7)`);} -.ant-tag-pink {color: #c41d7f;background: color(~`colorPalette("@{modal-close-color}", 1)`);border-color: #ffadd2;} +.ant-tag-pink {color: #c41d7f;background: color(~`colorPalette("@{modal-mask-bg}", 1)`);border-color: #ffadd2;} .ant-tag-pink-inverse {color: #fff;background: #eb2f96;border-color: #eb2f96;} -.ant-tag-magenta {color: #c41d7f;background: color(~`colorPalette("@{modal-close-color}", 1)`);border-color: #ffadd2;} +.ant-tag-magenta {color: #c41d7f;background: color(~`colorPalette("@{modal-mask-bg}", 1)`);border-color: #ffadd2;} .ant-tag-magenta-inverse {color: #fff;background: #eb2f96;border-color: #eb2f96;} -.ant-tag-red {color: #cf1322;background: #fff1f0;border-color: #ffa39e;} +.ant-tag-red {color: #cf1322;background: color(~`colorPalette("@{modal-heading-color}", 1)`);border-color: #ffa39e;} .ant-tag-red-inverse {color: #fff;background: #f5222d;border-color: #f5222d;} .ant-tag-volcano {color: #d4380d;background: #fff2e8;border-color: #ffbb96;} .ant-tag-volcano-inverse {color: #fff;background: #fa541c;border-color: #fa541c;} diff --git a/js/iverilog/index.html b/js/iverilog/index.html index 62c6c0ea72..1c374f271d 100644 --- a/js/iverilog/index.html +++ b/js/iverilog/index.html @@ -22,7 +22,7 @@ document.body.appendChild(script) WaveDrom.ProcessAll() } catch (e) { - debugger + // debugger } } }) diff --git a/layouts__ShixunDetail__index.async.js b/layouts__ShixunDetail__index.async.js index 0798c06798..eeeec52f04 100644 --- a/layouts__ShixunDetail__index.async.js +++ b/layouts__ShixunDetail__index.async.js @@ -493,8 +493,8 @@ var toConsumableArray_default = /*#__PURE__*/__webpack_require__.n(toConsumableA // EXTERNAL MODULE: ./node_modules/react-infinite-scroller/index.js var react_infinite_scroller = __webpack_require__(246); var react_infinite_scroller_default = /*#__PURE__*/__webpack_require__.n(react_infinite_scroller); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/layouts/ShixunDetail/components/AddTeacher.tsx diff --git a/layouts__SimpleLayouts.chunk.css b/layouts__SimpleLayouts.chunk.css index e8f8392b64..39e98ae3f4 100644 --- a/layouts__SimpleLayouts.chunk.css +++ b/layouts__SimpleLayouts.chunk.css @@ -762,6 +762,79 @@ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/back-top/style/index.less ***! + \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +.ant-back-top { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.85); + font-size: 12px; + font-variant: tabular-nums; + line-height: 1.66667; + list-style: none; + font-feature-settings: tnum, "tnum"; + position: fixed; + right: 100px; + bottom: 50px; + z-index: 10; + width: 40px; + height: 40px; + cursor: pointer; +} +.ant-back-top:empty { + display: none; +} +.ant-back-top-rtl { + right: auto; + left: 100px; + direction: rtl; +} +.ant-back-top-content { + width: 40px; + height: 40px; + overflow: hidden; + color: #fff; + text-align: center; + background-color: rgba(0, 0, 0, 0.45); + border-radius: 20px; + transition: all 0.3s; +} +.ant-back-top-content:hover { + background-color: rgba(0, 0, 0, 0.85); + transition: all 0.3s; +} +.ant-back-top-icon { + font-size: 24px; + line-height: 40px; +} +@media screen and (max-width: 768px) { + .ant-back-top { + right: 60px; + } + .ant-back-top-rtl { + right: auto; + left: 60px; + } +} +@media screen and (max-width: 480px) { + .ant-back-top { + right: 20px; + } + .ant-back-top-rtl { + right: auto; + left: 20px; + } +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + /*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/SideBar/index.less?modules ***! \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ diff --git a/p__Classrooms__ExamList__index.async.js b/p__Classrooms__ExamList__index.async.js index ffacecb77b..84e7d33442 100644 --- a/p__Classrooms__ExamList__index.async.js +++ b/p__Classrooms__ExamList__index.async.js @@ -62,7 +62,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Announcement__index.async.js b/p__Classrooms__Lists__Announcement__index.async.js index d9939f1541..4fcd3a7007 100644 --- a/p__Classrooms__Lists__Announcement__index.async.js +++ b/p__Classrooms__Lists__Announcement__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Attachment__index.async.js b/p__Classrooms__Lists__Attachment__index.async.js index 05499704e0..8c1b931d36 100644 --- a/p__Classrooms__Lists__Attachment__index.async.js +++ b/p__Classrooms__Lists__Attachment__index.async.js @@ -77,7 +77,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Attendance__Detail__index.async.js b/p__Classrooms__Lists__Attendance__Detail__index.async.js index d69a499fb0..99e195415a 100644 --- a/p__Classrooms__Lists__Attendance__Detail__index.async.js +++ b/p__Classrooms__Lists__Attendance__Detail__index.async.js @@ -580,7 +580,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Attendance__index.async.js b/p__Classrooms__Lists__Attendance__index.async.js index 540f1d2706..d1e4e7726f 100644 --- a/p__Classrooms__Lists__Attendance__index.async.js +++ b/p__Classrooms__Lists__Attendance__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -1354,8 +1354,8 @@ var Add_EditAttendance = function EditAttendance(_ref) { })(Add_EditAttendance)); // EXTERNAL MODULE: ./node_modules/qrcode/lib/browser.js var browser = __webpack_require__(92592); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/Attendance/components/SignIn.tsx diff --git a/p__Classrooms__Lists__Board__index.async.js b/p__Classrooms__Lists__Board__index.async.js index 44b29400db..de2b2feaa2 100644 --- a/p__Classrooms__Lists__Board__index.async.js +++ b/p__Classrooms__Lists__Board__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__CommonHomework__Detail__index.async.js b/p__Classrooms__Lists__CommonHomework__Detail__index.async.js index 84ca6977a6..87943b7820 100644 --- a/p__Classrooms__Lists__CommonHomework__Detail__index.async.js +++ b/p__Classrooms__Lists__CommonHomework__Detail__index.async.js @@ -909,7 +909,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__CommonHomework__Review__index.async.js b/p__Classrooms__Lists__CommonHomework__Review__index.async.js index 8b5d853580..f1167d9faf 100644 --- a/p__Classrooms__Lists__CommonHomework__Review__index.async.js +++ b/p__Classrooms__Lists__CommonHomework__Review__index.async.js @@ -474,8 +474,8 @@ var PublishShixun = function PublishShixun(_ref) { var util = __webpack_require__(29427); // EXTERNAL MODULE: ./src/utils/authority.ts var authority = __webpack_require__(7); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/CommonHomework/Review/index.tsx diff --git a/p__Classrooms__Lists__CommonHomework__index.async.js b/p__Classrooms__Lists__CommonHomework__index.async.js index 8aa367c6a5..6aa1bf78a5 100644 --- a/p__Classrooms__Lists__CommonHomework__index.async.js +++ b/p__Classrooms__Lists__CommonHomework__index.async.js @@ -2300,8 +2300,8 @@ var CuttOffNowShixun = function CuttOffNowShixun(_ref) { var radio_style = __webpack_require__(83822); // EXTERNAL MODULE: ./node_modules/antd/es/radio/index.js + 4 modules var es_radio = __webpack_require__(29924); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/CommonHomework/components/Guide.tsx diff --git a/p__Classrooms__Lists__CourseGroup__Detail__index.async.js b/p__Classrooms__Lists__CourseGroup__Detail__index.async.js index 794680bf72..8bda531fca 100644 --- a/p__Classrooms__Lists__CourseGroup__Detail__index.async.js +++ b/p__Classrooms__Lists__CourseGroup__Detail__index.async.js @@ -608,7 +608,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__CourseGroup__List__index.async.js b/p__Classrooms__Lists__CourseGroup__List__index.async.js index 6101864e74..6b7e126ed5 100644 --- a/p__Classrooms__Lists__CourseGroup__List__index.async.js +++ b/p__Classrooms__Lists__CourseGroup__List__index.async.js @@ -90,7 +90,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__CourseGroup__NotList__index.async.js b/p__Classrooms__Lists__CourseGroup__NotList__index.async.js index d5f4f5372c..947687d5ee 100644 --- a/p__Classrooms__Lists__CourseGroup__NotList__index.async.js +++ b/p__Classrooms__Lists__CourseGroup__NotList__index.async.js @@ -329,7 +329,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Engineering__Detail__index.async.js b/p__Classrooms__Lists__Engineering__Detail__index.async.js index a2978e339b..b45f616135 100644 --- a/p__Classrooms__Lists__Engineering__Detail__index.async.js +++ b/p__Classrooms__Lists__Engineering__Detail__index.async.js @@ -77,7 +77,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Exercise__Add__index.async.js b/p__Classrooms__Lists__Exercise__Add__index.async.js index 1ccfa92da5..f488e150d7 100644 --- a/p__Classrooms__Lists__Exercise__Add__index.async.js +++ b/p__Classrooms__Lists__Exercise__Add__index.async.js @@ -158,7 +158,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Exercise__AnswerCheck__index.async.js b/p__Classrooms__Lists__Exercise__AnswerCheck__index.async.js index ad4f311020..43b699cf40 100644 --- a/p__Classrooms__Lists__Exercise__AnswerCheck__index.async.js +++ b/p__Classrooms__Lists__Exercise__AnswerCheck__index.async.js @@ -104,7 +104,7 @@ var reNameFile = /*#__PURE__*/(/* unused pure expression or super */ null && (fu // .catch(e => console.log(e)); })["catch"](function (e) { console.log(e); - debugger; + // debugger }); })); case 7: @@ -362,7 +362,7 @@ var UploadFile = function UploadFile(_ref4) { console.log("err:", err); }); } catch (e) { - debugger; + // debugger } })); case 19: diff --git a/p__Classrooms__Lists__Exercise__Answer__index.async.js b/p__Classrooms__Lists__Exercise__Answer__index.async.js index 32a3289c83..b25c483f49 100644 --- a/p__Classrooms__Lists__Exercise__Answer__index.async.js +++ b/p__Classrooms__Lists__Exercise__Answer__index.async.js @@ -940,7 +940,7 @@ var reNameFile = /*#__PURE__*/(/* unused pure expression or super */ null && (fu // .catch(e => console.log(e)); })["catch"](function (e) { console.log(e); - debugger; + // debugger }); })); case 7: @@ -1198,7 +1198,7 @@ var UploadFile = function UploadFile(_ref4) { console.log("err:", err); }); } catch (e) { - debugger; + // debugger } })); case 19: @@ -4365,8 +4365,8 @@ var Fill = function Fill(_ref) { }); }; /* harmony default export */ var components_Fill = (Fill); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/Exercise/Answer/components/ErrCheckIpTip.tsx diff --git a/p__Classrooms__Lists__Exercise__Detail__index.async.js b/p__Classrooms__Lists__Exercise__Detail__index.async.js index 2b4829d05d..731cbb73c0 100644 --- a/p__Classrooms__Lists__Exercise__Detail__index.async.js +++ b/p__Classrooms__Lists__Exercise__Detail__index.async.js @@ -7682,8 +7682,8 @@ var SubjectTable = function SubjectTable(_ref) { }); }; /* harmony default export */ var components_SubjectTable = (SubjectTable); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/Exercise/Detail/components/DuplicateChecking/index.tsx @@ -14637,28 +14637,8 @@ var ExerciseRedo = function ExerciseRedo(_ref) { children: val.student_id }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { children: val.course_group_name - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [(val === null || val === void 0 ? void 0 : val.commit_status) === 0 && /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#666666' - }, - children: "\u672A\u5F00\u59CB" - }), (val === null || val === void 0 ? void 0 : val.commit_status) === 1 && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#DF3042' - }, - children: [" ", !val.is_make_up && '考试中', val.is_make_up && '考试中 (补考)'] - }), (val === null || val === void 0 ? void 0 : val.commit_status) === 2 && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#5AB891' - }, - children: [" ", !val.is_make_up && '已交卷', val.is_make_up && '已交卷 (补考)'] - }), (val === null || val === void 0 ? void 0 : val.commit_status) > 2 && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#5AB891' - }, - children: [" ", !val.is_make_up && '已交卷(未答)', val.is_make_up && '已交卷/未答(补考)'] - })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + children: "\u63D0\u4EA4\u72B6\u6001" }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { className: "pl10", children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", { @@ -22386,8 +22366,8 @@ var PlusOutlined = __webpack_require__(51042); var _umi_production_exports = __webpack_require__(89214); // EXTERNAL MODULE: ./src/utils/fetch.ts var fetch = __webpack_require__(84519); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); // EXTERNAL MODULE: ./src/components/mediator.js var mediator = __webpack_require__(91562); // EXTERNAL MODULE: ./src/utils/env.ts + 1 modules diff --git a/p__Classrooms__Lists__Exercise__Export__index.async.js b/p__Classrooms__Lists__Exercise__Export__index.async.js index 604068d990..52fdc1d3ba 100644 --- a/p__Classrooms__Lists__Exercise__Export__index.async.js +++ b/p__Classrooms__Lists__Exercise__Export__index.async.js @@ -1845,8 +1845,8 @@ var PlusOutlined = __webpack_require__(51042); var _umi_production_exports = __webpack_require__(89214); // EXTERNAL MODULE: ./src/utils/fetch.ts var fetch = __webpack_require__(84519); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); // EXTERNAL MODULE: ./src/components/mediator.js var mediator = __webpack_require__(91562); // EXTERNAL MODULE: ./src/utils/env.ts + 1 modules diff --git a/p__Classrooms__Lists__Exercise__ImitateAnswer__index.async.js b/p__Classrooms__Lists__Exercise__ImitateAnswer__index.async.js index 91deaa9426..92b7892e4d 100644 --- a/p__Classrooms__Lists__Exercise__ImitateAnswer__index.async.js +++ b/p__Classrooms__Lists__Exercise__ImitateAnswer__index.async.js @@ -816,8 +816,8 @@ var Fill = function Fill(_ref) { }); }; /* harmony default export */ var components_Fill = (Fill); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/Exercise/ImitateAnswer/components/ErrCheckIpTip.tsx diff --git a/p__Classrooms__Lists__Exercise__Review__index.async.js b/p__Classrooms__Lists__Exercise__Review__index.async.js index f8711bc21d..d90147dc74 100644 --- a/p__Classrooms__Lists__Exercise__Review__index.async.js +++ b/p__Classrooms__Lists__Exercise__Review__index.async.js @@ -122,7 +122,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -2533,8 +2533,8 @@ var PlusOutlined = __webpack_require__(51042); var _umi_production_exports = __webpack_require__(89214); // EXTERNAL MODULE: ./src/utils/fetch.ts var fetch = __webpack_require__(84519); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); // EXTERNAL MODULE: ./src/components/mediator.js var mediator = __webpack_require__(91562); // EXTERNAL MODULE: ./src/utils/env.ts + 1 modules diff --git a/p__Classrooms__Lists__Graduation__Tasks__index.async.js b/p__Classrooms__Lists__Graduation__Tasks__index.async.js index ccbd2fd15e..0d810a89a1 100644 --- a/p__Classrooms__Lists__Graduation__Tasks__index.async.js +++ b/p__Classrooms__Lists__Graduation__Tasks__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Graduation__Topics__index.async.js b/p__Classrooms__Lists__Graduation__Topics__index.async.js index d0fc2c3045..537d46e1b4 100644 --- a/p__Classrooms__Lists__Graduation__Topics__index.async.js +++ b/p__Classrooms__Lists__Graduation__Topics__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__GroupHomework__Detail__index.async.js b/p__Classrooms__Lists__GroupHomework__Detail__index.async.js index d9b961aaf3..a21323483c 100644 --- a/p__Classrooms__Lists__GroupHomework__Detail__index.async.js +++ b/p__Classrooms__Lists__GroupHomework__Detail__index.async.js @@ -1838,7 +1838,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__GroupHomework__index.async.js b/p__Classrooms__Lists__GroupHomework__index.async.js index b28bdb9e1e..141e248149 100644 --- a/p__Classrooms__Lists__GroupHomework__index.async.js +++ b/p__Classrooms__Lists__GroupHomework__index.async.js @@ -502,7 +502,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -2692,8 +2692,8 @@ var CuttOffNowShixun = function CuttOffNowShixun(_ref) { var AfterAppendix = __webpack_require__(11542); // EXTERNAL MODULE: ./src/pages/Classrooms/Lists/GroupHomework/components/AssociatedProjects.tsx var AssociatedProjects = __webpack_require__(58443); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/GroupHomework/components/Guide.tsx diff --git a/p__Classrooms__Lists__LiveVideo__index.async.js b/p__Classrooms__Lists__LiveVideo__index.async.js index d10d128908..d917146e86 100644 --- a/p__Classrooms__Lists__LiveVideo__index.async.js +++ b/p__Classrooms__Lists__LiveVideo__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -809,8 +809,8 @@ var TabMenu = __webpack_require__(15582); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/LiveVideo/index.less?modules // extracted by mini-css-extract-plugin /* harmony default export */ var LiveVideomodules = ({"flex_box_center":"flex_box_center___ZOntB","flex_space_between":"flex_space_between___xCjmA","flex_box_vertical_center":"flex_box_vertical_center___gyDc0","flex_box_center_end":"flex_box_center_end___ytAb3","flex_box_column":"flex_box_column___KhTU7","bg":"bg___JLZ_u","menu":"menu___Fc6i8","desc":"desc___gI7VF","otherLink":"otherLink___msxoY","card":"card___qCDxO","supportPlatform":"supportPlatform___gN3jm"}); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/LiveVideo/index.tsx diff --git a/p__Classrooms__Lists__OnlineLearning__index.async.js b/p__Classrooms__Lists__OnlineLearning__index.async.js index 4a2cf9f5fc..bda856fa55 100644 --- a/p__Classrooms__Lists__OnlineLearning__index.async.js +++ b/p__Classrooms__Lists__OnlineLearning__index.async.js @@ -931,7 +931,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Polls__Detail__index.async.js b/p__Classrooms__Lists__Polls__Detail__index.async.js index 8168bd3a50..d175f0d794 100644 --- a/p__Classrooms__Lists__Polls__Detail__index.async.js +++ b/p__Classrooms__Lists__Polls__Detail__index.async.js @@ -120,7 +120,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Polls__index.async.js b/p__Classrooms__Lists__Polls__index.async.js index 466fb29ed1..1036acf879 100644 --- a/p__Classrooms__Lists__Polls__index.async.js +++ b/p__Classrooms__Lists__Polls__index.async.js @@ -339,7 +339,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__ProgramHomework__Detail__answer__index.async.js b/p__Classrooms__Lists__ProgramHomework__Detail__answer__index.async.js index 7a3f80a1f9..a573273f9b 100644 --- a/p__Classrooms__Lists__ProgramHomework__Detail__answer__index.async.js +++ b/p__Classrooms__Lists__ProgramHomework__Detail__answer__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__ProgramHomework__Detail__index.async.js b/p__Classrooms__Lists__ProgramHomework__Detail__index.async.js index 950c746b30..720102c801 100644 --- a/p__Classrooms__Lists__ProgramHomework__Detail__index.async.js +++ b/p__Classrooms__Lists__ProgramHomework__Detail__index.async.js @@ -500,7 +500,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__ProgramHomework__index.async.js b/p__Classrooms__Lists__ProgramHomework__index.async.js index f3877098f9..1b9900bcbe 100644 --- a/p__Classrooms__Lists__ProgramHomework__index.async.js +++ b/p__Classrooms__Lists__ProgramHomework__index.async.js @@ -502,7 +502,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__ShixunHomeworks__Detail__index.async.js b/p__Classrooms__Lists__ShixunHomeworks__Detail__index.async.js index 043ae7b607..38fd7f9e77 100644 --- a/p__Classrooms__Lists__ShixunHomeworks__Detail__index.async.js +++ b/p__Classrooms__Lists__ShixunHomeworks__Detail__index.async.js @@ -1189,7 +1189,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__ShixunHomeworks__index.async.js b/p__Classrooms__Lists__ShixunHomeworks__index.async.js index cf33286302..0cab089f58 100644 --- a/p__Classrooms__Lists__ShixunHomeworks__index.async.js +++ b/p__Classrooms__Lists__ShixunHomeworks__index.async.js @@ -151,7 +151,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -3165,8 +3165,8 @@ var SelectCourses_PublishShixun = function PublishShixun(_ref) { loading: loading.effects }; })(SelectCourses_PublishShixun)); -// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules -var ImagesIcon = __webpack_require__(44190); +// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules +var ImagesIcon = __webpack_require__(51647); ;// CONCATENATED MODULE: ./src/pages/Classrooms/Lists/ShixunHomeworks/components/Guide.tsx diff --git a/p__Classrooms__Lists__Statistics__StudentStatistics__index.async.js b/p__Classrooms__Lists__Statistics__StudentStatistics__index.async.js index 0c299e3aae..cc921c4f0b 100644 --- a/p__Classrooms__Lists__Statistics__StudentStatistics__index.async.js +++ b/p__Classrooms__Lists__Statistics__StudentStatistics__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Statistics__StudentVideo__index.async.js b/p__Classrooms__Lists__Statistics__StudentVideo__index.async.js index fa5c05a6cf..dadc93ebef 100644 --- a/p__Classrooms__Lists__Statistics__StudentVideo__index.async.js +++ b/p__Classrooms__Lists__Statistics__StudentVideo__index.async.js @@ -63,7 +63,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Statistics__VideoStatistics__index.async.js b/p__Classrooms__Lists__Statistics__VideoStatistics__index.async.js index d5ba1cbbad..1c8666a2f2 100644 --- a/p__Classrooms__Lists__Statistics__VideoStatistics__index.async.js +++ b/p__Classrooms__Lists__Statistics__VideoStatistics__index.async.js @@ -63,7 +63,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Statistics__index.async.js b/p__Classrooms__Lists__Statistics__index.async.js index 00b371cd23..64419b2b02 100644 --- a/p__Classrooms__Lists__Statistics__index.async.js +++ b/p__Classrooms__Lists__Statistics__index.async.js @@ -90,7 +90,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Students__index.async.js b/p__Classrooms__Lists__Students__index.async.js index 3c519ea995..4f4931efd1 100644 --- a/p__Classrooms__Lists__Students__index.async.js +++ b/p__Classrooms__Lists__Students__index.async.js @@ -991,7 +991,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Teachers__index.async.js b/p__Classrooms__Lists__Teachers__index.async.js index 9976c75391..9958ad5c56 100644 --- a/p__Classrooms__Lists__Teachers__index.async.js +++ b/p__Classrooms__Lists__Teachers__index.async.js @@ -103,7 +103,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Classrooms__Lists__Template__index.async.js b/p__Classrooms__Lists__Template__index.async.js index 8f0a0713f5..1dd392f5dd 100644 --- a/p__Classrooms__Lists__Template__index.async.js +++ b/p__Classrooms__Lists__Template__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Colleges__index.async.js b/p__Colleges__index.async.js index 6b731abb3d..a6d0a836bf 100644 --- a/p__Colleges__index.async.js +++ b/p__Colleges__index.async.js @@ -36,7 +36,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, diff --git a/p__Competitions__Detail__index.async.js b/p__Competitions__Detail__index.async.js index 02eeacd78c..2dc3c147c8 100644 --- a/p__Competitions__Detail__index.async.js +++ b/p__Competitions__Detail__index.async.js @@ -521,7 +521,7 @@ var noData = function noData(_ref) { className: "tc animated fadeIn", style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { color: '#999', - margin: '200px auto' + margin: '100px auto' }), styles), children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, @@ -1280,7 +1280,7 @@ var reNameFile = /*#__PURE__*/(/* unused pure expression or super */ null && (fu // .catch(e => console.log(e)); })["catch"](function (e) { console.log(e); - debugger; + // debugger }); })); case 7: @@ -1538,7 +1538,7 @@ var UploadFile = function UploadFile(_ref4) { console.log("err:", err); }); } catch (e) { - debugger; + // debugger } })); case 19: @@ -3182,80 +3182,66 @@ function useInterval(callback, delay) { /***/ }), -/***/ 11940: -/*!**************************************************************!*\ - !*** ./src/pages/Competitions/Detail/index.tsx + 27 modules ***! - \**************************************************************/ +/***/ 61612: +/*!*****************************************************************!*\ + !*** ./src/pages/Competitions/Detail/AwardPdf.tsx + 12 modules ***! + \*****************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { "use strict"; -// ESM COMPAT FLAG -__webpack_require__.r(__webpack_exports__); // EXPORTS __webpack_require__.d(__webpack_exports__, { - "default": function() { return /* binding */ Detail; } + "Z": function() { return /* binding */ AwardPdf; } }); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js -var objectSpread2 = __webpack_require__(42122); -var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js -var regeneratorRuntime = __webpack_require__(17061); -var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime); -// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules -var style = __webpack_require__(35611); -// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules -var es_modal = __webpack_require__(85402); -// EXTERNAL MODULE: ./node_modules/antd/es/menu/style/index.js + 1 modules -var menu_style = __webpack_require__(83736); -// EXTERNAL MODULE: ./node_modules/antd/es/menu/index.js + 5 modules -var menu = __webpack_require__(66516); -// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules -var button_style = __webpack_require__(29913); -// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js -var es_button = __webpack_require__(71577); -// EXTERNAL MODULE: ./node_modules/antd/es/spin/style/index.js + 1 modules -var spin_style = __webpack_require__(22536); -// EXTERNAL MODULE: ./node_modules/antd/es/spin/index.js -var spin = __webpack_require__(11382); -// EXTERNAL MODULE: ./node_modules/antd/es/breadcrumb/style/index.js + 1 modules -var breadcrumb_style = __webpack_require__(63102); -// EXTERNAL MODULE: ./node_modules/antd/es/breadcrumb/index.js + 3 modules -var breadcrumb = __webpack_require__(58492); -// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules -var message_style = __webpack_require__(14934); -// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules -var message = __webpack_require__(12461); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js -var asyncToGenerator = __webpack_require__(17156); -var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +var objectDestructuringEmpty = __webpack_require__(13012); +var objectDestructuringEmpty_default = /*#__PURE__*/__webpack_require__.n(objectDestructuringEmpty); +// EXTERNAL MODULE: ./node_modules/antd/es/radio/style/index.js + 1 modules +var style = __webpack_require__(83822); +// EXTERNAL MODULE: ./node_modules/antd/es/radio/index.js + 4 modules +var es_radio = __webpack_require__(29924); // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js var slicedToArray = __webpack_require__(27424); var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray); -// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js -var objectWithoutProperties = __webpack_require__(70215); -var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties); // EXTERNAL MODULE: ./node_modules/react/index.js var react = __webpack_require__(67294); // EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules var _umi_production_exports = __webpack_require__(89214); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/index.less?modules -// extracted by mini-css-extract-plugin -/* harmony default export */ var Detailmodules = ({"flex_box_center":"flex_box_center___fo_3c","flex_space_between":"flex_space_between___G46CO","flex_box_vertical_center":"flex_box_vertical_center___br3Kr","flex_box_center_end":"flex_box_center_end___Xdo94","flex_box_column":"flex_box_column___Bcnmr","wrp":"wrp___TY7QJ","bg":"bg___xiaSy","commonimg":"commonimg___a4R0Q","titlesize":"titlesize___Wdd_a","timesize":"timesize___OkfYO","flex1":"flex1___N6paY","buttonsize":"buttonsize___syL9V","myteam":"myteam___RTWAt","bootmdetail":"bootmdetail___taUGk","flex6":"flex6___RuzJ4","menuItem":"menuItem___Kww4S","spanprev":"spanprev___Cssg_","spannext":"spannext___jVFGE","divwidth":"divwidth___r5hE3","receiveclick":"receiveclick___BauOs","receivealready":"receivealready___Z7Wo0","bkfff":"bkfff___lHrcJ","ant-input":"ant-input___m4bn_","onediv":"onediv___xzZRa","onetop":"onetop___M4GfM","towdiv":"towdiv___yj3ds","towtop":"towtop___veKa4","threediv":"threediv___Ztz0D","threetop":"threetop___zDXIg","imgradius":"imgradius___r4uGN","prize":"prize___YNRD4","spanrightradius":"spanrightradius___tC6T5","bottomItem":"bottomItem___CHcMJ","myTeam":"myTeam___fm7KX","downloadpdf":"downloadpdf___a2NuA","teamItem":"teamItem___mx2f3","dash":"dash___l6QH1","modal":"modal___yXh2H"}); -// EXTERNAL MODULE: ./src/components/AuthenticationModel/index.tsx -var AuthenticationModel = __webpack_require__(8213); -// EXTERNAL MODULE: ./node_modules/antd/es/upload/style/index.js + 1 modules -var upload_style = __webpack_require__(13759); -// EXTERNAL MODULE: ./node_modules/antd/es/upload/index.js + 20 modules -var upload = __webpack_require__(7426); -// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/InboxOutlined.js + 1 modules -var InboxOutlined = __webpack_require__(64082); -// EXTERNAL MODULE: ./src/components/UploadFile/index.tsx -var UploadFile = __webpack_require__(82394); +// EXTERNAL MODULE: ./node_modules/antd/es/row/style/index.js +var row_style = __webpack_require__(13062); +// EXTERNAL MODULE: ./node_modules/antd/es/row/index.js +var row = __webpack_require__(71230); +// EXTERNAL MODULE: ./node_modules/antd/es/col/style/index.js +var col_style = __webpack_require__(89032); +// EXTERNAL MODULE: ./node_modules/antd/es/col/index.js +var col = __webpack_require__(15746); +// EXTERNAL MODULE: ./node_modules/antd/es/table/style/index.js + 1 modules +var table_style = __webpack_require__(71854); +// EXTERNAL MODULE: ./node_modules/antd/es/table/index.js + 58 modules +var table = __webpack_require__(67250); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules +var tooltip_style = __webpack_require__(38390); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules +var tooltip = __webpack_require__(84908); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js +var regeneratorRuntime = __webpack_require__(17061); +var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js +var asyncToGenerator = __webpack_require__(17156); +var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator); +// EXTERNAL MODULE: ./src/pages/Competitions/Detail/index.less?modules +var Detailmodules = __webpack_require__(16455); +// EXTERNAL MODULE: ./src/service/competitions.ts +var competitions = __webpack_require__(80185); +// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules +var env = __webpack_require__(59758); +// EXTERNAL MODULE: ./src/components/AsyncButton/index.tsx +var AsyncButton = __webpack_require__(48559); // EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js var jsx_runtime = __webpack_require__(85893); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/AddSubmitModel.tsx +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Downloadpdf.tsx @@ -3267,156 +3253,270 @@ var jsx_runtime = __webpack_require__(85893); +//下载页 -var Dragger = upload/* default.Dragger */.Z.Dragger; -var ShixunsListPage = function ShixunsListPage(_ref) { - var user = _ref.user, - dispatch = _ref.dispatch, - classroomList = _ref.classroomList, - shixunsDetail = _ref.shixunsDetail, - getResults = _ref.getResults; + + + + +function downpdf(_ref) { + var _Prize$personal_certi, _Prize$personal_certi2, _Prize$team_certifica, _Prize$team_certifica2, _Prize$teams, _Prize$teams$4, _Prize$teams$5; + var Prize = _ref.Prize; var params = (0,_umi_production_exports.useParams)(); - var _useState = (0,react.useState)(), + var _useState = (0,react.useState)([{ + type: 1, + name: "团体奖证书" + }, { + type: 2, + name: "个人奖证书" + }, { + type: 3, + name: "优秀指导教师证书" + }]), _useState2 = slicedToArray_default()(_useState, 2), - time = _useState2[0], - setTime = _useState2[1]; - var _useState3 = (0,react.useState)([]), - _useState4 = slicedToArray_default()(_useState3, 2), - fileList = _useState4[0], - setFileList = _useState4[1]; - var _useState5 = (0,react.useState)(false), - _useState6 = slicedToArray_default()(_useState5, 2), - confirmLoading = _useState6[0], - setConfirmLoading = _useState6[1]; - var props = { - onRemove: function onRemove() { - setFileList([]); - }, - beforeUpload: function beforeUpload(file) { - console.log(file); - if ((file === null || file === void 0 ? void 0 : file.size) > 1024 * 1024 * 500) { - message/* default.info */.ZP.info('文件超过500M,不符合上传要求'); - return false; - } - var filelist = []; - filelist.push(file); - setFileList([].concat(filelist)); - return false; - }, - fileList: fileList - }; - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_modal/* default */.Z, { - title: "\u63D0\u4EA4\u6587\u4EF6", - open: shixunsDetail.actionTabs.key === 'md-tab', - confirmLoading: confirmLoading, - onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { - var _user$userInfo, _fileList$; - var resulr; + certData = _useState2[0], + setCertData = _useState2[1]; + var handleClick = /*#__PURE__*/function () { + var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(item) { + var res; return regeneratorRuntime_default()().wrap(function _callee$(_context) { while (1) switch (_context.prev = _context.next) { case 0: - if (!((fileList === null || fileList === void 0 ? void 0 : fileList.length) <= 0)) { - _context.next = 3; - break; - } - message/* default.info */.ZP.info('请先选择文件'); - return _context.abrupt("return"); - case 3: - setConfirmLoading(true); - _context.next = 6; - return (0,UploadFile/* uploadFile */.cT)(fileList[0], { - login: (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login, - container_type: "Competition", - container_id: shixunsDetail.actionTabs.params.id, - stage_type: shixunsDetail.actionTabs.params.value, - file_name: (_fileList$ = fileList[0]) === null || _fileList$ === void 0 ? void 0 : _fileList$.name + _context.next = 2; + return (0,competitions/* getCertificateInfo */.Ju)({ + type: item.type, + id: params.identifier }); - case 6: - resulr = _context.sent; - if ((resulr === null || resulr === void 0 ? void 0 : resulr.status) === 0) { - message/* default.info */.ZP.info('提交成功'); - dispatch({ - type: 'shixunsDetail/setActionTabs', - payload: { - key: '' - } - }); - setConfirmLoading(false); - setFileList([]); - getResults(shixunsDetail.actionTabs.params.value); - } else { - setConfirmLoading(false); - message/* default.info */.ZP.info('提交失败'); - } - case 8: + case 2: + res = _context.sent; + if ((res === null || res === void 0 ? void 0 : res.status) === 0) location.href = "/competitions/exports?id=".concat(params.identifier, "&type=").concat(item.type); + case 4: case "end": return _context.stop(); } }, _callee); - })), - onCancel: function onCancel() { - setFileList([]); - dispatch({ - type: 'shixunsDetail/setActionTabs', - payload: { - key: '' - } + })); + return function handleClick(_x) { + return _ref2.apply(this, arguments); + }; + }(); + var columns = [{ + title: "角色", + dataIndex: "role", + align: 'center', + width: 80, + render: function render(text) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + placement: "topLeft", + title: text, + children: text || "--" }); - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(Dragger, objectSpread2_default()(objectSpread2_default()({}, props), {}, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: "ant-upload-drag-icon", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(InboxOutlined/* default */.Z, {}) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: "ant-upload-hint", - children: "\u62D6\u62FD\u6587\u4EF6\u6216\u8005\u70B9\u51FB\u4E0A\u4F20" - })] - })) - }); -}; -/* harmony default export */ var AddSubmitModel = ((0,_umi_production_exports.connect)(function (_ref3) { - var user = _ref3.user, - classroomList = _ref3.classroomList, - shixunsDetail = _ref3.shixunsDetail; - return { - user: user, - classroomList: classroomList, - shixunsDetail: shixunsDetail - }; -})(ShixunsListPage)); -// EXTERNAL MODULE: ./node_modules/antd/es/row/style/index.js -var row_style = __webpack_require__(13062); -// EXTERNAL MODULE: ./node_modules/antd/es/row/index.js -var row = __webpack_require__(71230); -// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules -var input_style = __webpack_require__(69463); -// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules -var input = __webpack_require__(75008); -// EXTERNAL MODULE: ./src/components/RenderHtml/index.tsx + 1 modules -var RenderHtml = __webpack_require__(12768); -// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules -var env = __webpack_require__(59758); -// EXTERNAL MODULE: ./src/utils/fetch.ts -var utils_fetch = __webpack_require__(84519); -// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules -var verifyLogin = __webpack_require__(7303); -// EXTERNAL MODULE: ./node_modules/antd/es/carousel/style/index.js + 1 modules -var carousel_style = __webpack_require__(36936); -// EXTERNAL MODULE: ./node_modules/antd/es/carousel/index.js + 9 modules -var carousel = __webpack_require__(61980); -// EXTERNAL MODULE: ./node_modules/antd/es/select/style/index.js + 1 modules -var select_style = __webpack_require__(95985); -// EXTERNAL MODULE: ./node_modules/antd/es/select/index.js -var es_select = __webpack_require__(34041); -// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/LeftOutlined.js -var LeftOutlined = __webpack_require__(37653); -// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/RightOutlined.js -var RightOutlined = __webpack_require__(43929); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Competitionbonus.tsx + } + }, { + title: "姓名", + dataIndex: "name", + width: 100, + render: function render(text) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + placement: "topLeft", + title: text, + children: text || "--" + }); + } + }, { + title: "实名认证", + width: 100, + dataIndex: "real_name_auth", + render: function render(text) { + return text === "authed" ? '已认证' : text === "authing" ? '待审核' : '未认证'; + } + }, { + title: "职业认证", + width: 100, + dataIndex: "professional_auth", + render: function render(text) { + return text === "authed" ? '已认证' : text === "authing" ? '待审核' : '未认证'; + } + }, { + title: "手机号", + dataIndex: "phone_binded", + width: 100, + render: function render(text) { + return text ? '已绑定' : '未绑定'; + } + }, { + title: "邮箱号", + dataIndex: "email_binded", + width: 100, + render: function render(text) { + return text ? '已绑定' : '未绑定'; + } + }, { + title: "开户行及银行卡号信息(队长填写)", + dataIndex: "role", + align: 'center', + render: function render(text, _render) { + var _Prize$teams$, _Prize$teams$$bank_ac, _Prize$teams$2, _Prize$teams$2$bank_a, _Prize$teams$3, _Prize$teams$3$bank_a; + return (_render === null || _render === void 0 ? void 0 : _render.role) === '队长' ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + width: '50%', + textAlign: 'center' + }, + children: [(Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$ = Prize.teams[0]) === null || _Prize$teams$ === void 0 ? void 0 : (_Prize$teams$$bank_ac = _Prize$teams$.bank_account) === null || _Prize$teams$$bank_ac === void 0 ? void 0 : _Prize$teams$$bank_ac.bank), (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$2 = Prize.teams[0]) === null || _Prize$teams$2 === void 0 ? void 0 : (_Prize$teams$2$bank_a = _Prize$teams$2.bank_account) === null || _Prize$teams$2$bank_a === void 0 ? void 0 : _Prize$teams$2$bank_a.second_bank), (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$3 = Prize.teams[0]) === null || _Prize$teams$3 === void 0 ? void 0 : (_Prize$teams$3$bank_a = _Prize$teams$3.bank_account) === null || _Prize$teams$3$bank_a === void 0 ? void 0 : _Prize$teams$3$bank_a.card_no)] + }) : "--"; + } + }]; + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.downloadpdf */.Z.downloadpdf, + children: "\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u7684\u4E2A\u4EBA\u4FE1\u606F\u7ECF\u5BA1\u6279\u540E\uFF0C\u5C06\u63D0\u4F9B\u4E2A\u4EBA\u83B7\u5956\u8BC1\u4E66\u4E0B\u8F7D\uFF1B\u56E2\u961F\u961F\u5458\u4FE1\u606F\u5168\u90E8\u5BA1\u6279\u540E\uFF0C\u5C06\u63D0\u4F9B\u56E2\u961F\u83B7\u5956\u8BC1\u4E66\u4E0B\u8F7D\u3002" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + marginTop: '30px', + fontSize: '14px', + color: '#232B40', + fontWeight: "600" + }, + children: "\u8BC1\u4E66\u60C5\u51B5" + }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$personal_certi = Prize.personal_certifications) === null || _Prize$personal_certi === void 0 ? void 0 : _Prize$personal_certi.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: "\u4E2A\u4EBA\u8BC1\u4E66\uFF1A" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/pdfs.png" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("a", { + style: { + marginLeft: '5px' + }, + href: env/* default.API_SERVER */.Z.API_SERVER + "".concat(Prize === null || Prize === void 0 ? void 0 : (_Prize$personal_certi2 = Prize.personal_certifications[0]) === null || _Prize$personal_certi2 === void 0 ? void 0 : _Prize$personal_certi2.url), + children: "\u7ACB\u5373\u4E0B\u8F7D" + })] + }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + children: ["\u4E2A\u4EBA\u8BC1\u4E66\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#000' + }, + children: "\u6682\u672A\u751F\u6210" + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "c-red", + style: { + marginLeft: '20px' + }, + children: "\u539F\u56E0\uFF1A\u7EC4\u59D4\u4F1A\u672A\u5B8C\u6210\u8BC1\u4E66\u5BA1\u6279\uFF0C\u8BF7\u7A0D\u540E" + })] + }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$team_certifica = Prize.team_certifications) === null || _Prize$team_certifica === void 0 ? void 0 : _Prize$team_certifica.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: "\u56E2\u961F\u8BC1\u4E66\uFF1A" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/pdfs.png" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("a", { + style: { + marginLeft: '5px' + }, + href: env/* default.API_SERVER */.Z.API_SERVER + "".concat(Prize === null || Prize === void 0 ? void 0 : (_Prize$team_certifica2 = Prize.team_certifications[0]) === null || _Prize$team_certifica2 === void 0 ? void 0 : _Prize$team_certifica2.url), + children: "\u7ACB\u5373\u4E0B\u8F7D" + })] + }) : /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + children: ["\u56E2\u961F\u8BC1\u4E66\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#000' + }, + children: "\u6682\u672A\u751F\u6210" + })] + }) + }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams = Prize.teams) === null || _Prize$teams === void 0 ? void 0 : _Prize$teams.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + children: [(Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$4 = Prize.teams[0]) === null || _Prize$teams$4 === void 0 ? void 0 : _Prize$teams$4.name), "\u6218\u961F\u4FE1\u606F\u586B\u62A5\u6982\u51B5"] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, { + columns: columns, + dataSource: Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$5 = Prize.teams[0]) === null || _Prize$teams$5 === void 0 ? void 0 : _Prize$teams$5.team_members, + pagination: false + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(row/* default */.Z, { + style: { + marginTop: "20px" + }, + gutter: [20, 20], + children: certData.map(function (item, key) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(AsyncButton/* AsyncButton */.Z, { + icon: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-xiazai5", + style: { + marginRight: "6px" + } + }), + className: Detailmodules/* default.pdfBut */.Z.pdfBut, + onClick: /*#__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 handleClick(item); + case 2: + return _context2.abrupt("return", _context2.sent); + case 3: + case "end": + return _context2.stop(); + } + }, _callee2); + })), + children: item.name + }) + }, key); + }) + })] + }); +} +/* harmony default export */ var Downloadpdf = (downpdf); +// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules +var message_style = __webpack_require__(14934); +// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules +var message = __webpack_require__(12461); +// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules +var button_style = __webpack_require__(29913); +// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js +var es_button = __webpack_require__(71577); +// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules +var modal_style = __webpack_require__(35611); +// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules +var modal = __webpack_require__(85402); +// EXTERNAL MODULE: ./node_modules/antd/es/spin/style/index.js + 1 modules +var spin_style = __webpack_require__(22536); +// EXTERNAL MODULE: ./node_modules/antd/es/spin/index.js +var spin = __webpack_require__(11382); +// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules +var input_style = __webpack_require__(69463); +// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules +var input = __webpack_require__(75008); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js +var objectSpread2 = __webpack_require__(42122); +var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2); +// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules +var form_style = __webpack_require__(75627); +// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules +var es_form = __webpack_require__(51018); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js +var objectWithoutProperties = __webpack_require__(70215); +var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties); +// EXTERNAL MODULE: ./node_modules/antd/es/upload/style/index.js + 1 modules +var upload_style = __webpack_require__(13759); +// EXTERNAL MODULE: ./node_modules/antd/es/upload/index.js + 20 modules +var upload = __webpack_require__(7426); +// EXTERNAL MODULE: ./src/utils/util.tsx +var util = __webpack_require__(29427); +// EXTERNAL MODULE: ./src/assets/images/account/auth.png +var auth = __webpack_require__(98814); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/index.less?modules +// extracted by mini-css-extract-plugin +/* harmony default export */ var componentmodules = ({"modal":"modal___A9Ovz","colorBlue":"colorBlue___XSmR5","formWrap":"formWrap___wRvaA","flexRow":"flexRow___C40dc","flexColumn":"flexColumn___LkZfj","example":"example___bz7Hw","exampleImg":"exampleImg___gNkC_","colorOrange":"colorOrange___Ka6zf","uploader":"uploader___plQRr","uploadImg":"uploadImg___cjOpL","imageTip":"imageTip___p1_lZ","uploadTipIcon":"uploadTipIcon___SpsS2","uploadTip":"uploadTip___e9JlL","color05101a":"color05101a___CDEUv","viewLargerImg":"viewLargerImg___IclRX","footerWrap":"footerWrap___beWC6","note":"note___CXi9y","schoolHintWrap":"schoolHintWrap___Ma6ly","colorCDCDCD":"colorCDCDCD___D0UWo","color0152d9":"color0152d9___hF3Bb"}); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/RealNameAuthModal.tsx @@ -3430,677 +3530,374 @@ var RightOutlined = __webpack_require__(43929); -//代金劵 -var Option = es_select/* default.Option */.Z.Option; -function Bonus(_ref) { - var rewarddata = _ref.rewarddata, - getlistdatas = _ref.getlistdatas, - is_signed = _ref.is_signed, + +var _excluded = ["user", "account", "globalSetting", "loading", "dispatch"]; + + + + + + + + +var Dragger = upload/* default.Dragger */.Z.Dragger; +var MAX_NAME_LENGTH = 10; +var RealNameAuthModal = function RealNameAuthModal(_ref) { + var user = _ref.user, + account = _ref.account, + globalSetting = _ref.globalSetting, + loading = _ref.loading, dispatch = _ref.dispatch, - userlist = _ref.userlist; - var Carousels = (0,react.useRef)(null); - var _useState = (0,react.useState)(false), + props = objectWithoutProperties_default()(_ref, _excluded); + var _Form$useForm = es_form/* default.useForm */.Z.useForm(), + _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), + form = _Form$useForm2[0]; + var _useState = (0,react.useState)({}), _useState2 = slicedToArray_default()(_useState, 2), - isshow = _useState2[0], - SetIsshow = _useState2[1]; - var _useState3 = (0,react.useState)(undefined), + formValue = _useState2[0], + setFormValue = _useState2[1]; + var _useState3 = (0,react.useState)(true), _useState4 = slicedToArray_default()(_useState3, 2), - className = _useState4[0], - SetClassname = _useState4[1]; - var _useState5 = (0,react.useState)(''), + showRealName = _useState4[0], + setShowRealName = _useState4[1]; + var _useState5 = (0,react.useState)(), _useState6 = slicedToArray_default()(_useState5, 2), - id = _useState6[0], - SetId = _useState6[1]; - var _useState7 = (0,react.useState)(undefined), + realName = _useState6[0], + setRealName = _useState6[1]; + var _useState7 = (0,react.useState)(), _useState8 = slicedToArray_default()(_useState7, 2), - name = _useState8[0], - SetName = _useState8[1]; - var _useState9 = (0,react.useState)(undefined), + image = _useState8[0], + setImage = _useState8[1]; + var _useState9 = (0,react.useState)(), _useState10 = slicedToArray_default()(_useState9, 2), - email = _useState10[0], - SetEmail = _useState10[1]; - var _useState11 = (0,react.useState)(undefined), + fileId = _useState10[0], + setFileId = _useState10[1]; + var _useState11 = (0,react.useState)(), _useState12 = slicedToArray_default()(_useState11, 2), - phone = _useState12[0], - SetPhone = _useState12[1]; - function receive(_x) { - return _receive.apply(this, arguments); - } - function _receive() { - _receive = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(item) { - var result; - return regeneratorRuntime_default()().wrap(function _callee$(_context) { - while (1) switch (_context.prev = _context.next) { - case 0: - if (!item.user_received) { - _context.next = 3; - break; - } - window.open(item.click_info); - return _context.abrupt("return"); - case 3: - if ((0,verifyLogin/* handleVerifyLogin */.o1)(dispatch)) { - _context.next = 5; - break; - } - return _context.abrupt("return"); - case 5: - if (!(is_signed === false)) { - _context.next = 8; - break; - } - message/* default.info */.ZP.info('您尚未报名参赛,请报名参赛后领取'); - return _context.abrupt("return"); - case 8: - if (!(item.click_event === "Pop")) { - _context.next = 14; - break; - } - SetId(item.id); - SetIsshow(true); - return _context.abrupt("return"); - case 14: - SetClassname(undefined); - case 15: - _context.next = 17; - return dispatch({ - type: 'competitions/Reward', - payload: { - competition_module_setting_id: item.id - } - }); - case 17: - result = _context.sent; - if (result && result.status === 0) { - getlistdatas(); - if (item.click_event === "Link") { - message/* default.info */.ZP.info('领取成功'); - window.open(item.click_info); - } else { - message/* default.info */.ZP.info(item.click_info); - } - } - case 19: - case "end": - return _context.stop(); - } - }, _callee); - })); - return _receive.apply(this, arguments); - } - function submitreceive() { - return _submitreceive.apply(this, arguments); - } - function _submitreceive() { - _submitreceive = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { - var result; - return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { - while (1) switch (_context2.prev = _context2.next) { + isLoading = _useState12[0], + setIsLoading = _useState12[1]; + (0,react.useEffect)(function () { + if (!account.basicInfo) { + return; + } + var basicInfo = account.basicInfo; + var formData = { + name: basicInfo.show_realname ? basicInfo.name : (0,util/* getHiddenName */.YA)(basicInfo.name), + gender: basicInfo.gender + }; + setRealName(basicInfo.name); + setShowRealName(basicInfo.show_realname); + form.setFieldsValue(formData); + setFormValue(formData); + }, [account.basicInfo]); + var handleUploadChange = function handleUploadChange(info) { + if (info.file.status === 'uploading') { + setIsLoading(true); + return; + } + if (info.file.status === 'done') { + var _info$file$response; + console.log(info.file, info.file.response); + setFileId((_info$file$response = info.file.response) === null || _info$file$response === void 0 ? void 0 : _info$file$response.id); + (0,util/* getBase64 */.y3)(info.file.originFileObj, function (base64Img) { + setImage(base64Img); + setIsLoading(false); + }); + } + }; + var handleValuesChange = function handleValuesChange(changedValues) { + setFormValue(objectSpread2_default()({}, form.getFieldsValue())); + if ('name' in changedValues) { + setRealName(changedValues.name); + } + }; + var handleSetShowRealName = function handleSetShowRealName() { + var nextRealNameStatus = !showRealName; + setShowRealName(nextRealNameStatus); + var nextName = nextRealNameStatus ? realName : (0,util/* getHiddenName */.YA)(realName); + form.setFieldsValue({ + name: nextName + }); + }; + var handleFinish = /*#__PURE__*/function () { + var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) { + var _account$basicInfo, _user$userInfo; + var _ref3, name, gender, id_number, res, _user$userInfo2; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { case 0: - if (!(userlist && !userlist.real_name)) { - _context2.next = 4; - break; - } - if (name) { - _context2.next = 4; + _ref3 = values || {}, name = _ref3.name, gender = _ref3.gender, id_number = _ref3.idNumber; + if (image) { + _context.next = 4; break; } - message/* default.info */.ZP.info('姓名不能为空'); - return _context2.abrupt("return"); + message/* default.info */.ZP.info('请先上传照片!'); + return _context.abrupt("return"); case 4: - if (!(userlist && !userlist.email)) { - _context2.next = 8; - break; - } - if (email) { - _context2.next = 8; - break; - } - message/* default.info */.ZP.info('邮箱不能为空'); - return _context2.abrupt("return"); - case 8: - if (!(userlist && !userlist.phone)) { - _context2.next = 12; - break; - } - if (phone) { - _context2.next = 12; - break; - } - message/* default.info */.ZP.info('手机号码不能为空'); - return _context2.abrupt("return"); - case 12: - if (className) { - _context2.next = 15; - break; - } - message/* default.info */.ZP.info('请选择你的年级'); - return _context2.abrupt("return"); - case 15: - _context2.next = 17; + _context.next = 6; return dispatch({ - type: 'competitions/Reward', + type: 'account/applyRealNameAuth', payload: { - competition_module_setting_id: id, - className: className, + id: ((_account$basicInfo = account.basicInfo) === null || _account$basicInfo === void 0 ? void 0 : _account$basicInfo.id) || ((_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login), name: name, - mail: email, - phone: phone + gender: gender, + id_number: id_number, + show_realname: showRealName, + attachment_ids: [fileId] } }); - case 17: - result = _context2.sent; - if (result && result.status === 0) { - SetIsshow(false); - getlistdatas(); - message/* default.info */.ZP.info('HCIA认证考试代金劵将由Educoder平台统一发放,请及时关注邮箱或站内短信查收'); + case 6: + res = _context.sent; + handleClose(); + if (res) { + message/* default.info */.ZP.info("申请已提交,请等待审核!"); + dispatch({ + type: 'account/getBasicInfo', + payload: { + login: (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.login + } + }); } - case 19: + case 9: case "end": - return _context2.stop(); + return _context.stop(); } - }, _callee2); + }, _callee); })); - return _submitreceive.apply(this, arguments); - } - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(es_modal/* default */.Z, { - open: isshow, - title: '完善信息', - onCancel: function onCancel() { - return SetIsshow(false); - }, - onOk: function onOk() { - submitreceive(); - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["\u60A8\u7684\u59D3\u540D\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - className: userlist && userlist.real_name ? '' : Detailmodules.bkfff, - style: { - width: '300px', - marginLeft: '14px', - background: userlist && userlist.phone ? '' : '#ffffff!important' + return function handleFinish(_x) { + return _ref2.apply(this, arguments); + }; + }(); + var handleClose = function handleClose() { + dispatch({ + type: 'account/setActionTabs', + payload: {} + }); + }; + var uploadProps = { + data: { + type: "real_name" + }, + multiple: true, + showUploadList: false, + action: "".concat(env/* default.API_SERVER */.Z.API_SERVER, "/api/attachments.json"), + className: componentmodules.uploader, + onChange: handleUploadChange, + beforeUpload: function beforeUpload(file) { + var isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/jpg' || file.type === 'image/bmp'; + if (!isJpgOrPng) { + message/* default.info */.ZP.info('请上传正确文件格式'); + } + return isJpgOrPng; + } + }; + return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { + centered: true, + keyboard: false, + closable: false, + destroyOnClose: true, + open: account.actionTabs.key === 'Account-RealNameAuth', + title: "\u4FEE\u6539\u5B9E\u540D\u4FE1\u606F", + width: "600px", + footer: null, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, { + spinning: !!isLoading, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { + className: componentmodules.formWrap, + form: form, + layout: "horizontal", + onValuesChange: handleValuesChange, + onFinish: handleFinish, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u59D3\u540D", + name: "name", + labelCol: { + span: 3 }, - value: userlist && userlist.real_name || name, - disabled: userlist && userlist.real_name || false, - onChange: function onChange(e) { - return SetName(e.target.value); - } - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - marginTop: '1em' - }, - children: ["\u60A8\u7684\u90AE\u7BB1\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - className: userlist && userlist.email ? '' : "bkfff", - style: { - width: '300px', - marginLeft: '14px', - background: userlist && userlist.phone ? '' : '#ffffff!important' + wrapperCol: { + span: 12 }, - value: userlist && userlist.email || email, - disabled: userlist && userlist.email || false, - onChange: function onChange(e) { - return SetEmail(e.target.value); - } - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - marginTop: '1em' - }, - children: ["\u60A8\u7684\u624B\u673A\u53F7\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - style: { - width: '300px' + rules: [{ + required: true, + message: "\u8BF7\u8F93\u5165\u771F\u5B9E\u59D3\u540D\uFF0C\u6700\u5927\u9650\u5236".concat(MAX_NAME_LENGTH, "\u4E2A\u5B57\u7B26") + }, { + validator: util/* handleValidatorName */.HJ + }], + extra: /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: showRealName ? '(显示:平台将显示您的真实姓名)' : '(隐藏:平台将显示你的昵称)' + }), + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + disabled: !showRealName, + placeholder: "\u8BF7\u8F93\u5165\u771F\u5B9E\u59D3\u540D\uFF0C\u6700\u5927\u9650\u5236".concat(MAX_NAME_LENGTH, "\u4E2A\u5B57\u7B26"), + maxLength: MAX_NAME_LENGTH, + addonAfter: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont ".concat(showRealName ? 'icon-xianshi' : 'icon-yincang', " font18 ").concat(componentmodules.color0152d9), + onClick: handleSetShowRealName + }) + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u6027\u522B\uFF1A", + name: "gender", + labelCol: { + span: 3 }, - className: userlist && userlist.phone ? '' : "bkfff", - value: userlist && userlist.phone || phone, - disabled: userlist && userlist.phone || false, - onChange: function onChange(e) { - return SetPhone(e.target.value); - } - })] - }), "\u60A8\u7684\u5E74\u7EA7\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { - style: { - width: '300px', - marginTop: '1em', - marginLeft: '14px' - }, - onChange: function onChange(e) { - SetClassname(e); - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u5927\u4E00", - children: "\u5927\u4E00" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u5927\u4E8C", - children: "\u5927\u4E8C" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u5927\u4E09", - children: "\u5927\u4E09" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u5927\u56DB", - children: "\u5927\u56DB" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u5927\u4E94", - children: "\u5927\u4E94" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u7855\u4E00", - children: "\u7855\u4E00" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u7855\u4E8C", - children: "\u7855\u4E8C" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u7855\u4E09", - children: "\u7855\u4E09" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u535A\u4E00", - children: "\u535A\u4E00" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u535A\u4E8C", - children: "\u535A\u4E8C" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u535A\u4E09", - children: "\u535A\u4E09" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u535A\u56DB", - children: "\u535A\u56DB" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { - value: "\u535A\u4E94", - children: "\u535A\u4E94" - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - marginTop: '1em' - }, - children: "\u63D0\u9192\uFF1A\u5982\u65E0\u534E\u4E3A\u4E91\u8D26\u53F7\uFF0C\u8BF7\u5C3D\u5FEB\u6CE8\u518C\u534E\u4E3A\u4E91\uFF01" - })] - }), rewarddata && rewarddata.length > 3 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - position: 'relative', - marginBottom: '10px', - marginTop: '10px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: Detailmodules.spanprev, - onClick: function onClick() { - Carousels.current.prev(); - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(LeftOutlined/* default */.Z, { - style: { - color: '#fff', - fontSize: '20px', - marginLeft: "15px" - } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(carousel/* default */.Z, { - ref: Carousels, - className: Detailmodules.divwidth, - slidesToShow: 3, - slidesToScroll: 1, - children: rewarddata && rewarddata.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - textAlign: 'center', - position: 'relative' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/".concat(item.image_url) - }), item.user_received === false || item.click_event === "Link" ? /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.receiveclick, - onClick: function onClick() { - return receive(item); - }, - children: "\u70B9\u51FB\u9886\u53D6" - }) : /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.receivealready, - children: "\u5DF2\u7ECF\u9886\u53D6" + wrapperCol: { + span: 12 + }, + rules: [{ + required: true, + message: '请选择性别' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, { + value: 0, + children: "\u7537" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, { + value: 1, + children: "\u5973" })] - }); - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: Detailmodules.spannext, - onClick: function onClick() { - Carousels.current.next(); - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(RightOutlined/* default */.Z, { - style: { - color: '#fff', - fontSize: '20px', - marginLeft: "5px" - } - }) - })] - }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: Detailmodules.divwidth, - style: { - justifyContent: 'space-around', - marginBottom: '10px', - marginTop: '10px' - }, - children: rewarddata && rewarddata.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - textAlign: 'center', - position: 'relative' + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u8BC1\u4EF6\u53F7\uFF1A", + labelCol: { + span: 3 }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/".concat(item.image_url) - }), item.user_received === false || item.click_event === "Link" ? /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.receiveclick, - onClick: function onClick() { - return receive(item); - }, - children: "\u70B9\u51FB\u9886\u53D6" - }) : /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.receivealready, - children: "\u5DF2\u7ECF\u9886\u53D6" - })] - }); - }) - })] - }); -} -/* harmony default export */ var Competitionbonus = (Bonus); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/SeeItem.tsx - - - - - - - - - - - - - - - - - - - - - - - -//代金劵 - - - -var SeeItem = function SeeItem(_ref, ref) { - var StaffDetail = _ref.StaffDetail, - HeaderDetail = _ref.HeaderDetail, - ItemData = _ref.ItemData, - setIssee = _ref.setIssee, - ModelType = _ref.ModelType, - dispatch = _ref.dispatch, - userinfo = _ref.userinfo, - Editable = _ref.Editable; - var _useState = (0,react.useState)(false), - _useState2 = slicedToArray_default()(_useState, 2), - visible = _useState2[0], - setVisible = _useState2[1]; - var _useState3 = (0,react.useState)([]), - _useState4 = slicedToArray_default()(_useState3, 2), - fileList = _useState4[0], - setFileList = _useState4[1]; - var _useState5 = (0,react.useState)(''), - _useState6 = slicedToArray_default()(_useState5, 2), - fileId = _useState6[0], - setFileId = _useState6[1]; - var _useState7 = (0,react.useState)(''), - _useState8 = slicedToArray_default()(_useState7, 2), - text = _useState8[0], - setText = _useState8[1]; - // const [disabled, setDisable] = useState(false) - var _useState9 = (0,react.useState)(false), - _useState10 = slicedToArray_default()(_useState9, 2), - loading = _useState10[0], - setLoading = _useState10[1]; - var _useParams = (0,_umi_production_exports.useParams)(), - identifier = _useParams.identifier; - var enrolled = (0,react.useRef)(null); - var dom = (0,react.useRef)(null); - enrolled.current = StaffDetail === null || StaffDetail === void 0 ? void 0 : StaffDetail.enrolled; - (0,react.useEffect)(function () { - var _dom$current; - (_dom$current = dom.current) === null || _dom$current === void 0 ? void 0 : _dom$current.addEventListener("click", modal); - return function () { - var _dom$current2; - (_dom$current2 = dom.current) === null || _dom$current2 === void 0 ? void 0 : _dom$current2.removeEventListener("click", modal); - }; - }, []); - - // useEffect(() => { - // if (visible || fileList.length) { - // setDisable(true) - // } - // }, [visible]) - - var modal = function modal(e) { - var _e$target; - // 检查事件源e.targe是否为Li - if ((e === null || e === void 0 ? void 0 : (_e$target = e.target) === null || _e$target === void 0 ? void 0 : _e$target.id) === 'modal-upload') { - if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch)) { - return; - } - if (!enrolled.current) { - es_modal/* default.info */.Z.info({ - title: '提示', - centered: true, - okText: '我知道了', - content: '请先报名,再提交作品' - }); - return; - } - setVisible(true); - } + name: "idNumber", + rules: [{ + required: true, + message: '请输入证件号' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + placeholder: "\u8BF7\u8F93\u5165\u8BC1\u4EF6\u53F7" + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u8EAB\u4EFD\u8BC1\u4E0A\u4F20", + labelCol: { + span: 3 + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: componentmodules.flexRow, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: "".concat(componentmodules.flexColumn, " ").concat(componentmodules.example), + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: componentmodules.exampleImg, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: auth + }) + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + className: "tc", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "\u793A\u4F8B\u56FE\u7247" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: "".concat(componentmodules.colorOrange, " font12"), + children: "\uFF08png/jpg/bmp\u683C\u5F0F\uFF0C\u4E0D\u8D85\u8FC72MB\uFF09" + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: componentmodules.flexColumn, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Dragger, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { + accept: ".png,.jpg,.bmp,.jpeg", + children: image ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: image, + className: componentmodules.uploadImg + }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: componentmodules.imageTip, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-cuban2shangchuanyunduan ".concat(componentmodules.uploadTipIcon) + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: componentmodules.uploadTip, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("a", { + className: componentmodules.color05101a, + children: "\u70B9\u51FB\u6216\u62D6\u62FD\u4E0A\u4F20\u56FE\u7247" + }) + })] + }) + })), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "tc", + children: /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: componentmodules.viewLargerImg, + children: "\u67E5\u770B\u5927\u56FE" + }) + })] + })] + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: componentmodules.footerWrap, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + className: "mr5", + size: "large", + onClick: handleClose, + children: "\u53D6\u6D88" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + size: "large", + type: "primary", + htmlType: "submit", + loading: loading['account/applyRealNameAuth'], + children: "\u4FDD\u5B58" + })] + }) + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: componentmodules.note, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "\u8BA4\u8BC1\u987B\u77E5\uFF1A" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "1.\u4F60\u9700\u8981\u51C6\u5907\u6709\u6548\u7684\u8EAB\u4EFD\u8BC1\u6B63\u9762\uFF08\u4EBA\u50CF\u9762\uFF09\u7684\u8BC1\u4EF6\u7167\u7167\u7247\uFF0C\u8BF7\u786E\u4FDD\u8BC1\u4EF6\u7167\u7247\u6E05\u6670\u53EF\u89C1\uFF0C\u4E25\u7981PS\uFF1B" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "2.\u6211\u4EEC\u5C06\u5728\u4F60\u63D0\u4EA4\u8BA4\u8BC1\u4FE1\u606F\u540E\u768424\u5C0F\u65F6\uFF08\u4E0D\u5305\u542B\u8282\u5047\u65E5\uFF09\u5185\u5B8C\u6210\u5BA1\u6838\uFF0C\u5BA1\u6838\u7ED3\u679C\u5C06\u4F1A\u4EE5\u7CFB\u7EDF\u6D88\u606F\u7684\u5F62\u5F0F\u53D1\u9001\u7ED9\u4F60\uFF1B" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "3.\u5B9E\u540D\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u65E0\u6CD5\u5220\u9664\uFF0C\u8BF7\u8C28\u614E\u586B\u5199\uFF1B" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "4.\u5B9E\u540D\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u7CFB\u7EDF\u5C06\u81EA\u52A8\u53D1\u653E500\u4E2A\u91D1\u5E01\u4F5C\u4E3A\u5956\u52B1\uFF1B" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "5.\u6211\u4EEC\u4F1A\u786E\u4FDD\u4F60\u6240\u63D0\u4F9B\u7684\u4FE1\u606F\u5747\u5904\u4E8E\u4E25\u683C\u7684\u4FDD\u5BC6\u72B6\u6001\uFF0C\u4E0D\u4F1A\u6CC4\u9732\uFF1B" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "6.\u5982\u5B58\u5728\u6076\u610F\u4E71\u586B\u5199\u59D3\u540D\uFF0C\u8BC1\u4EF6\u53F7\uFF0C\u53CA\u4E0A\u4F20\u4E0E\u5B9E\u540D\u8BA4\u8BC1\u8BC1\u4EF6\u65E0\u5173\u56FE\u7247\u8005\uFF0C\u4E00\u7ECF\u53D1\u73B0\u5C06\u51BB\u7ED3EduCoder\u8D26\u53F7\u3002" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "7.\u63D0\u4EA4\u5B9E\u540D\u8BA4\u8BC1\u540E\u7CFB\u7EDF\u4F1A\u81EA\u52A8\u5C06\u72B6\u6001\u6539\u4E3A\u5DF2\u8BA4\u8BC1\uFF0C\u4F60\u5C06\u53EF\u4EE5\u4F53\u9A8C\u5E73\u53F0\u9700\u8981\u5B9E\u540D\u8BA4\u8BC1\u7684\u529F\u80FD\uFF1B\u5982\u679C\u5728\u8BA4\u8BC1\u540E\u7684\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u672A\u901A\u8FC7\u5BA1\u6838\uFF0C\u4F60\u5C06\u4E0D\u80FD\u7EE7\u7EED\u4F53\u9A8C\u9700\u8981\u8BA4\u8BC1\u7684\u529F\u80FD\u3002" + })] + })] + }) + }) + }); +}; +/* harmony default export */ var component_RealNameAuthModal = ((0,_umi_production_exports.connect)(function (_ref4) { + var user = _ref4.user, + account = _ref4.account, + loading = _ref4.loading, + globalSetting = _ref4.globalSetting; + return { + user: user, + account: account, + globalSetting: globalSetting, + loading: loading.effects }; - (0,react.useEffect)(function () { - if (HeaderDetail !== null && HeaderDetail !== void 0 && HeaderDetail.upload_file) { - var _HeaderDetail$upload_, _HeaderDetail$upload_2, _HeaderDetail$upload_3; - setFileList([{ - name: HeaderDetail === null || HeaderDetail === void 0 ? void 0 : (_HeaderDetail$upload_ = HeaderDetail.upload_file) === null || _HeaderDetail$upload_ === void 0 ? void 0 : _HeaderDetail$upload_.title, - status: 'done', - uid: '123456789' - }]); - setText(HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.upload_file_url); - setFileId(HeaderDetail === null || HeaderDetail === void 0 ? void 0 : (_HeaderDetail$upload_2 = HeaderDetail.upload_file) === null || _HeaderDetail$upload_2 === void 0 ? void 0 : (_HeaderDetail$upload_3 = _HeaderDetail$upload_2.url) === null || _HeaderDetail$upload_3 === void 0 ? void 0 : _HeaderDetail$upload_3.split('/')[3]); - } - }, [HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.upload_file]); - var uploadProps = { - name: 'file', - multiple: false, - withCredentials: true, - // accept: ".doc, .docx, .pdf", - // action: '/api/attachments.json', - action: env/* default.API_SERVER */.Z.API_SERVER + '/api/attachments.json', - showUploadList: { - showRemoveIcon: false - }, - fileList: fileList, - onChange: function onChange(info) { - var status = info.file.status; - var newFileList = [objectSpread2_default()({}, info.file)]; - setFileList(newFileList); - if (info.file.status === 'uploading') { - setLoading(true); - } - if (status === 'done') { - var _newFileList$, _newFileList$$respons; - setFileId((_newFileList$ = newFileList[0]) === null || _newFileList$ === void 0 ? void 0 : (_newFileList$$respons = _newFileList$.response) === null || _newFileList$$respons === void 0 ? void 0 : _newFileList$$respons.id); - setLoading(false); - // setDisable(false) - } +})(RealNameAuthModal)); +// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/style/index.js + 1 modules +var auto_complete_style = __webpack_require__(19070); +// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/index.js +var auto_complete = __webpack_require__(49288); +// EXTERNAL MODULE: ./node_modules/antd/es/select/style/index.js + 1 modules +var select_style = __webpack_require__(95985); +// EXTERNAL MODULE: ./node_modules/antd/es/select/index.js +var es_select = __webpack_require__(34041); +// EXTERNAL MODULE: ./src/assets/images/account/job.png +var job = __webpack_require__(51941); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplyDepartmentModal/index.less?modules +// extracted by mini-css-extract-plugin +/* harmony default export */ var AppplyDepartmentModalmodules = ({"flexRow":"flexRow___LQKDI","flexColumn":"flexColumn___NLClE","formWrap":"formWrap___mGWio","example":"example___gPghw","footerWrap":"footerWrap___qcHQ4"}); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplyDepartmentModal/index.tsx - if (status === 'error') { - setFileList([]); - setLoading(false); - } - }, - beforeUpload: function beforeUpload(file) { - var isLt10M = file.size / 1024 / 1024 < 1000; - if (!isLt10M) { - message/* default.info */.ZP.info("文件大小必须小于1000MB"); - return Promise.reject(); - } - // if (!/\.(doc|docx|pdf|DOC|DOCX|PDF)$/.test(file.name)) { - // message.warn('只能上传Word或PDF文件') - // return Promise.reject(); - // } - return Promise.resolve(); - } - }; - var handleVisible = function handleVisible() { - setVisible(true); - }; - (0,react.useImperativeHandle)(ref, function () { - return { - handleVisible: handleVisible - }; - }); - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - ref: dom, - children: [ModelType === "reward" ? /*#__PURE__*/(0,jsx_runtime.jsx)(Competitionbonus, { - userlist: userinfo, - dispatch: dispatch, - rewarddata: ItemData.reward_setting, - is_signed: ItemData.is_signed - }) : null, /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - textAlign: 'right' - }, - children: ((userinfo === null || userinfo === void 0 ? void 0 : userinfo.admin) || (userinfo === null || userinfo === void 0 ? void 0 : userinfo.business) || Editable) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - onClick: function onClick() { - return setIssee(false); - }, - children: "\u7F16\u8F91" - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { - value: ItemData.md_content - }), ItemData && ItemData.attachments && ItemData.attachments.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("a", { - href: (env/* default */.Z === null || env/* default */.Z === void 0 ? void 0 : env/* default.API_SERVER */.Z.API_SERVER) + item.url, - target: "_self", - download: item.title, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { - style: { - color: '#29BD8B' - }, - className: "font-14 color-green iconfont icon-fujian mr8" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#000000' - }, - children: item.title - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#000000', - marginLeft: '10px' - }, - children: item.filesize - })] - }) - }); - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_modal/* default */.Z, { - centered: true, - title: "\u4E0A\u4F20\u4F5C\u54C1", - open: visible, - okText: "\u63D0\u4EA4\u4F5C\u54C1", - cancelText: "\u53D6\u6D88", - confirmLoading: loading, - onCancel: function onCancel() { - return setVisible(false); - }, - onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { - var res; - return regeneratorRuntime_default()().wrap(function _callee$(_context) { - while (1) switch (_context.prev = _context.next) { - case 0: - if (!(!fileId && !text)) { - _context.next = 3; - break; - } - setVisible(false); - return _context.abrupt("return"); - case 3: - // if (disabled) { - // setVisible(false) - // return; - // } - setLoading(true); - _context.next = 6; - return (0,utils_fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/upload_file.json"), { - method: 'post', - body: { - attachment_id: fileId, - upload_file_url: text - } - }); - case 6: - res = _context.sent; - if (res.status === 0) { - setVisible(false); - setLoading(false); - } - case 8: - case "end": - return _context.stop(); - } - }, _callee); - })), - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { - align: "middle", - className: "mb20", - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u4F5C\u54C1\u94FE\u63A5\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - style: { - width: 416 - }, - value: text, - onChange: function onChange(e) { - var _e$target2; - return setText((_e$target2 = e.target) === null || _e$target2 === void 0 ? void 0 : _e$target2.value); - } - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { - align: "top", - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - lineHeight: '28px' - }, - children: "\u4F5C\u54C1\u6587\u4EF6\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(upload/* default */.Z, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - type: "primary", - className: "mb10", - children: "\u4E0A\u4F20\u4F5C\u54C1" - }) - }))] - })] - }) - })] - }); -}; -/* harmony default export */ var Detail_SeeItem = (/*#__PURE__*/(0,react.forwardRef)(SeeItem)); -// EXTERNAL MODULE: ./src/components/markdown-editor/index.tsx + 10 modules -var markdown_editor = __webpack_require__(55373); -// EXTERNAL MODULE: ./src/service/competitions.ts -var competitions = __webpack_require__(80185); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Update.tsx @@ -4113,426 +3910,353 @@ var competitions = __webpack_require__(80185); +var AppplyDepartmentModal_excluded = ["account", "globalSetting", "loading", "dispatch", "schoolName", "departmentName", "visible", "onClose", "onSuccess"]; -function Update_SeeItem(_ref) { - var ItemData = _ref.ItemData, - setIssee = _ref.setIssee, - MenuItem = _ref.MenuItem, +var TextArea = input/* default.TextArea */.Z.TextArea; +var AppplyDepartmentModal = function AppplyDepartmentModal(_ref) { + var account = _ref.account, + globalSetting = _ref.globalSetting, + loading = _ref.loading, dispatch = _ref.dispatch, - identifier = _ref.identifier, - ModelType = _ref.ModelType, - userinfo = _ref.userinfo, - getrightdatas = _ref.getrightdatas; - var _useState = (0,react.useState)([]), - _useState2 = slicedToArray_default()(_useState, 2), - defaultFileList = _useState2[0], - setDefaultFileList = _useState2[1]; - var _useState3 = (0,react.useState)(ItemData.md_content), - _useState4 = slicedToArray_default()(_useState3, 2), - defaultcontent = _useState4[0], - setDefaultcontent = _useState4[1]; + schoolName = _ref.schoolName, + departmentName = _ref.departmentName, + visible = _ref.visible, + _ref$onClose = _ref.onClose, + onClose = _ref$onClose === void 0 ? function () {} : _ref$onClose, + _ref$onSuccess = _ref.onSuccess, + onSuccess = _ref$onSuccess === void 0 ? function () {} : _ref$onSuccess, + props = objectWithoutProperties_default()(_ref, AppplyDepartmentModal_excluded); + var _Form$useForm = es_form/* default.useForm */.Z.useForm(), + _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), + form = _Form$useForm2[0]; + var schoolId = (0,react.useRef)(); (0,react.useEffect)(function () { - var _ItemData$attachments; - var data = []; - ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$attachments = ItemData.attachments) === null || _ItemData$attachments === void 0 ? void 0 : _ItemData$attachments.map(function (item) { - var tt = { - uid: item.id, - name: item.title, - response: { - id: item.id - } - }; - data.push(tt); - }); - setDefaultFileList(data); - }, [ItemData === null || ItemData === void 0 ? void 0 : ItemData.attachments]); - function getdata() { - var _ItemData$attachments2; - var data = []; - ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$attachments2 = ItemData.attachments) === null || _ItemData$attachments2 === void 0 ? void 0 : _ItemData$attachments2.map(function (item) { - var tt = { - uid: item === null || item === void 0 ? void 0 : item.id, - name: item.title, - response: { - id: item.id - } - }; - data.push(tt); + schoolId.current = props.schoolId; + }, [props.schoolId]); + (0,react.useEffect)(function () { + form.setFieldsValue({ + department: departmentName }); - return data; - } - var uploadProps = { - name: 'file', - multiple: true, - withCredentials: true, - action: env/* default.API_SERVER */.Z.API_SERVER + '/api/attachments.json', - defaultFileList: getdata(), - onRemove: function onRemove(e) { - (0,competitions/* deletAttachments */.y8)({ - id: e.uid - }); - }, - onChange: function onChange(info) { - var status = info.file.status; - if (status !== 'uploading') {} - if (status === 'removed') { - setDefaultFileList(info.fileList); - } - if (status === 'done') { - setDefaultFileList(info.fileList); - message/* default.success */.ZP.success("".concat(info.file.name, " \u6587\u4EF6\u4E0A\u4F20\u6210\u529F")); - } else if (status === 'error') { - message/* default.error */.ZP.error("".concat(info.file.name, " \u6587\u4EF6\u4E0A\u4F20\u5931\u8D25")); - } - }, - beforeUpload: function beforeUpload(file) { - var isLt150M = file.size / 1024 / 1024 < 150; - if (!isLt150M) { - message/* default.info */.ZP.info("文件大小必须小于150MB"); - } - return isLt150M; - } - }; - console.log(uploadProps); - - //修改内容回调接口 - function updateItem() { - return _updateItem.apply(this, arguments); - } //获取对应文件列表 - function _updateItem() { - _updateItem = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { - var data; + }, [departmentName]); + var handleFinish = /*#__PURE__*/function () { + var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) { + var _ref3, department, remarks, res; return regeneratorRuntime_default()().wrap(function _callee$(_context) { while (1) switch (_context.prev = _context.next) { case 0: - _context.next = 2; + _ref3 = values || {}, department = _ref3.department, remarks = _ref3.remarks; + _context.next = 3; return dispatch({ - type: 'competitions/updateMdContent', + type: 'account/appplyDepartment', payload: { - attachment_ids: getitemid(defaultFileList), - competition_module_id: ItemData.id, - md_content_id: ItemData.md_id, - content: defaultcontent, - identifier: identifier + school_id: schoolId.current, + name: department, + remarks: remarks } }); - case 2: - data = _context.sent; - if (data) { - message/* default.info */.ZP.info('提交成功'); - setIssee(true); - //刷新 - getrightdatas(MenuItem); + case 3: + res = _context.sent; + onClose(); + if (res) { + message/* default.success */.ZP.success("新增院系/部门成功!"); + onSuccess(department); } - case 4: + case 6: case "end": return _context.stop(); } }, _callee); })); - return _updateItem.apply(this, arguments); - } - function getitemid(itemlist) { - var data = []; - itemlist && itemlist.map(function (item) { - data.push(item.response.id); - }); - return data; - } - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [ModelType === "reward" ? /*#__PURE__*/(0,jsx_runtime.jsx)(Competitionbonus, { - userlist: userinfo, - dispatch: dispatch, - rewarddata: ItemData.reward_setting, - is_signed: ItemData.is_signed - }) : null, /*#__PURE__*/(0,jsx_runtime.jsx)(markdown_editor/* default */.Z, { - defaultValue: defaultcontent, - onChange: function onChange(e) { - return setDefaultcontent(e); - } - }), /*#__PURE__*/(0,jsx_runtime.jsxs)(upload/* default */.Z, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - className: "uploadBtn", - children: "\u4E0A\u4F20\u9644\u4EF6" - }), "(\u5355\u4E2A\u6587\u4EF6150M\u4EE5\u5185)"] - })), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - marginTop: '10px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - style: { - width: '90px' - }, - type: "primary", - onClick: function onClick() { - return updateItem(); - }, - children: "\u63D0\u4EA4" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - style: { - marginLeft: '30px', - width: '90px' - }, - onClick: function onClick() { - return setIssee(true); - }, - children: "\u53D6\u6D88" + return function handleFinish(_x) { + return _ref2.apply(this, arguments); + }; + }(); + return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { + centered: true, + keyboard: false, + closable: false, + destroyOnClose: true, + open: visible, + title: "\u7533\u8BF7\u6DFB\u52A0\u5B50\u5355\u4F4D\u540D\u79F0", + width: "600px", + footer: null, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { + className: AppplyDepartmentModalmodules.formWrap, + form: form, + labelCol: { + span: 4 + }, + wrapperCol: { + span: 20 + }, + onFinish: handleFinish, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u5355\u4F4D\u540D\u79F0\uFF1A", + children: schoolName + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u90E8\u95E8\u540D\u79F0\uFF1A", + name: "department", + rules: [{ + required: true, + message: '请输入部门或者学院名称' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + placeholder: "\u8BF7\u8F93\u5165\u90E8\u95E8\u6216\u8005\u5B66\u9662\u540D\u79F0" + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u8BF4\u660E\uFF1A", + name: "remarks", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(TextArea, { + placeholder: "\u518D\u6B21\u8BF4\u660E\u7279\u522B\u60C5\u51B5\uFF08\u9009\u586B\uFF09" + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: AppplyDepartmentModalmodules.footerWrap, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + className: "mr5", + size: "large", + onClick: function onClick() { + onClose(); + }, + children: "\u53D6\u6D88" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + size: "large", + type: "primary", + htmlType: "submit", + loading: loading['account/appplyDepartment'], + children: "\u4FDD\u5B58" + })] + }) })] - })] + }) }); -} -/* harmony default export */ var Update = (Update_SeeItem); -// EXTERNAL MODULE: ./node_modules/antd/es/table/style/index.js + 1 modules -var table_style = __webpack_require__(71854); -// EXTERNAL MODULE: ./node_modules/antd/es/table/index.js + 58 modules -var table = __webpack_require__(67250); -// EXTERNAL MODULE: ./node_modules/antd/es/tabs/style/index.js + 1 modules -var tabs_style = __webpack_require__(99558); -// EXTERNAL MODULE: ./node_modules/antd/es/tabs/index.js + 22 modules -var tabs = __webpack_require__(3381); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/RankingNuLL.tsx -//排行榜没有数据 +}; +/* harmony default export */ var components_AppplyDepartmentModal = ((0,_umi_production_exports.connect)(function (_ref4) { + var account = _ref4.account, + loading = _ref4.loading, + globalSetting = _ref4.globalSetting; + return { + account: account, + globalSetting: globalSetting, + loading: loading.effects + }; +})(AppplyDepartmentModal)); +// EXTERNAL MODULE: ./node_modules/antd/es/cascader/style/index.js + 1 modules +var cascader_style = __webpack_require__(95847); +// EXTERNAL MODULE: ./node_modules/antd/es/cascader/index.js + 17 modules +var cascader = __webpack_require__(45239); +// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js +var CheckCircleFilled = __webpack_require__(50675); +// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js +var CloseCircleFilled = __webpack_require__(38900); +// EXTERNAL MODULE: ./src/utils/cityData.ts +var cityData = __webpack_require__(12325); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplySchoolModal/index.less?modules +// extracted by mini-css-extract-plugin +/* harmony default export */ var AppplySchoolModalmodules = ({"flexRow":"flexRow___jGYtM","flexColumn":"flexColumn___NPMB3","formWrap":"formWrap___vwH9N","example":"example____BmJC","footerWrap":"footerWrap___lp1L0"}); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplySchoolModal/index.tsx -function RankNull() { - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '24px', - color: '#05101a' - }, - children: "\u603B\u6392\u884C" - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - textAlign: 'center' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/competitions/trophy.png" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "\u8981\u6293\u4F4F\u4E00\u5207\u673A\u4F1A\uFF0C\u5411\u6240\u6709\u4EBA\u8BC1\u660E\u81EA\u5DF1\uFF0C\u8BC1\u660E\u4F60\u80FD\u591F\u8FCE\u63A5\u8363\u8000" - })] - })] - }); -} -/* harmony default export */ var RankingNuLL = (RankNull); -// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules -var tooltip_style = __webpack_require__(38390); -// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules -var tooltip = __webpack_require__(84908); -// EXTERNAL MODULE: ./node_modules/antd/es/col/style/index.js -var col_style = __webpack_require__(89032); -// EXTERNAL MODULE: ./node_modules/antd/es/col/index.js -var col = __webpack_require__(15746); -// EXTERNAL MODULE: ./node_modules/antd/es/card/style/index.js + 1 modules -var card_style = __webpack_require__(78548); -// EXTERNAL MODULE: ./node_modules/antd/es/card/index.js + 3 modules -var card = __webpack_require__(59652); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/RankingItem.tsx -//1 2 3 排名数据样式 -function RankingItem(_ref) { - var oneItem = _ref.oneItem, - towItem = _ref.towItem, - threeItem = _ref.threeItem; - return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - textAlign: "center" - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { - gutter: 16, - style: { - justifyContent: 'center' +var AppplySchoolModal_excluded = ["account", "globalSetting", "loading", "dispatch", "schoolName", "visible", "onClose", "onSuccess"]; + + + + + + + +var filter = function filter(inputValue, path) { + return path.some(function (option) { + return option.label.toLowerCase().indexOf(inputValue.toLowerCase()) > -1; + }); +}; +var AppplySchoolModal_TextArea = input/* default.TextArea */.Z.TextArea; +var AppplySchoolModal = function AppplySchoolModal(_ref) { + var account = _ref.account, + globalSetting = _ref.globalSetting, + loading = _ref.loading, + dispatch = _ref.dispatch, + schoolName = _ref.schoolName, + visible = _ref.visible, + _ref$onClose = _ref.onClose, + onClose = _ref$onClose === void 0 ? function () {} : _ref$onClose, + _ref$onSuccess = _ref.onSuccess, + onSuccess = _ref$onSuccess === void 0 ? function () {} : _ref$onSuccess, + props = objectWithoutProperties_default()(_ref, AppplySchoolModal_excluded); + var _Form$useForm = es_form/* default.useForm */.Z.useForm(), + _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), + form = _Form$useForm2[0]; + (0,react.useEffect)(function () { + form.setFieldsValue({ + name: schoolName + }); + }, [schoolName]); + var handleFinish = /*#__PURE__*/function () { + var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) { + var _ref3, name, _ref3$city, city, address, remarks, res; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + _ref3 = values || {}, name = _ref3.name, _ref3$city = _ref3.city, city = _ref3$city === void 0 ? [] : _ref3$city, address = _ref3.address, remarks = _ref3.remarks; + _context.next = 3; + return dispatch({ + type: 'account/appplySchool', + payload: { + name: name, + province: city[0], + city: city[1], + address: address, + remarks: remarks + } + }); + case 3: + res = _context.sent; + onClose(); + if (res) { + message/* default.success */.ZP.success("新增学校/单位成功!"); + onSuccess(name); + } + case 6: + case "end": + return _context.stop(); + } + }, _callee); + })); + return function handleFinish(_x) { + return _ref2.apply(this, arguments); + }; + }(); + return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { + centered: true, + keyboard: false, + closable: false, + destroyOnClose: true, + open: visible, + title: "\u7533\u8BF7\u6DFB\u52A0\u5355\u4F4D\u540D\u79F0", + width: "600px", + footer: null, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { + className: AppplySchoolModalmodules.formWrap, + form: form, + labelCol: { + span: 4 }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - span: 6, - style: { - marginTop: '30px', - marginRight: '20px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(card/* default */.Z, { - title: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.towtop, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - style: { - marginTop: '20px' - }, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/huangguan-two.png" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - marginTop: '10px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { - to: "/users/".concat(towItem === null || towItem === void 0 ? void 0 : towItem.user_login, "/classrooms"), - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - className: Detailmodules.imgradius, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(towItem === null || towItem === void 0 ? void 0 : towItem.user_image) - }), (towItem === null || towItem === void 0 ? void 0 : towItem.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.prize, - children: towItem === null || towItem === void 0 ? void 0 : towItem.competition_prize - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - color: '#05101a', - fontSize: '16px', - marginTop: '10px' - }, - children: towItem === null || towItem === void 0 ? void 0 : towItem.record_user_name - })] - }) - })] - }), - className: Detailmodules.towdiv, - bordered: false, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '14px' - }, - children: towItem === null || towItem === void 0 ? void 0 : towItem.school_name - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '18px' - }, - children: towItem === null || towItem === void 0 ? void 0 : towItem.spend_time - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - fontSize: '26px', - color: '#a55b29' - }, - children: [parseFloat(towItem === null || towItem === void 0 ? void 0 : towItem.extra_score) + parseFloat(towItem === null || towItem === void 0 ? void 0 : towItem.score), "\u5206"] - })] + wrapperCol: { + span: 20 + }, + onFinish: handleFinish, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u5355\u4F4D\u5168\u79F0\uFF1A", + name: "name", + rules: [{ + required: true, + message: '请输入学校或工作单位' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + placeholder: "\u5B66\u6821\u6216\u5DE5\u4F5C\u5355\u4F4D" }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - span: 6, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(card/* default */.Z, { - title: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.onetop, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: "".concat(AppplySchoolModalmodules.flexRow, " ").concat(AppplySchoolModalmodules.example), + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { + children: "\u793A\u4F8B\uFF1A" + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: AppplySchoolModalmodules.flexColumn, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(CheckCircleFilled/* default */.Z, { style: { - marginTop: '20px' - }, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/huangguan.png" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + color: "rgb(82, 196, 26)" + } + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "font14 ml5", + children: "\u6B63\u786E\u793A\u4F8B\uFF1A\u6570\u636E\u7ED3\u6784" + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(CloseCircleFilled/* default */.Z, { style: { - marginTop: '10px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { - to: "/users/".concat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.user_login, "/classrooms"), - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - className: Detailmodules.imgradius, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.user_image) - }), (oneItem === null || oneItem === void 0 ? void 0 : oneItem.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.prize, - children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.competition_prize - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - color: '#05101a', - fontSize: '16px', - marginTop: '10px' - }, - children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.record_user_name - })] - }) + color: "red" + } + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "font14 ml5", + children: "\u9519\u8BEF\u793A\u4F8B\uFF1A\u6570\u636E\u7ED3\u67842019\u6625" })] - }), - className: Detailmodules.onediv, - bordered: false, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '14px' - }, - children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.school_name - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '18px' - }, - children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.spend_time - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - fontSize: '26px', - color: '#a55b29' - }, - children: [parseFloat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.extra_score) + parseFloat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.score), "\u5206"] })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u5730\u533A\uFF1A", + name: "city", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(cascader/* default */.Z, { + allowClear: true, + size: "large", + options: cityData/* CityData */.P, + placeholder: "\u8BF7\u9009\u62E9\u6240\u5728\u5730", + showSearch: { + matchInputWidth: true, + filter: filter + } }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - span: 6, - style: { - marginTop: '40px', - marginLeft: '20px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(card/* default */.Z, { - title: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.threetop, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - style: { - marginTop: '20px' - }, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/huangguan-three.png" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - marginTop: '10px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { - to: "/users/".concat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.user_login, "/classrooms"), - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - className: Detailmodules.imgradius, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.user_image) - }), (threeItem === null || threeItem === void 0 ? void 0 : threeItem.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.prize, - children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.competition_prize - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - color: '#05101a', - fontSize: '16px', - marginTop: '10px' - }, - children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.record_user_name - })] - }) - })] - }), - className: Detailmodules.threediv, - bordered: false, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '14px' - }, - children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.school_name - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '18px' - }, - children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.spend_time - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - fontSize: '26px', - color: '#a55b29' + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u8BE6\u7EC6\u5730\u5740\uFF1A", + name: "address", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + placeholder: "\u8BF7\u586B\u5199\u5B8C\u6574\u7684\u5730\u5740\u4FE1\u606F" + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u8BF4\u660E\uFF1A", + name: "remarks", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(AppplySchoolModal_TextArea, { + placeholder: "\u518D\u6B21\u8BF4\u660E\u7279\u522B\u60C5\u51B5\uFF08\u9009\u586B\uFF09" + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: AppplySchoolModalmodules.footerWrap, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + className: "mr5", + size: "large", + onClick: function onClick() { + onClose(); }, - children: [parseFloat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.extra_score) + parseFloat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.score), "\u5206"] + children: "\u53D6\u6D88" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + size: "large", + type: "primary", + htmlType: "submit", + loading: loading['account/appplySchool'], + children: "\u4FDD\u5B58" })] }) })] }) }); -} -/* harmony default export */ var Detail_RankingItem = (RankingItem); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/RankingList.tsx +}; +/* harmony default export */ var components_AppplySchoolModal = ((0,_umi_production_exports.connect)(function (_ref4) { + var account = _ref4.account, + loading = _ref4.loading, + globalSetting = _ref4.globalSetting; + return { + account: account, + globalSetting: globalSetting, + loading: loading.effects + }; +})(AppplySchoolModal)); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/ProfessionalAuthModal.tsx @@ -4542,159 +4266,6 @@ function RankingItem(_ref) { -function RanKingList(_ref) { - var _ItemData$user_ranks, _ItemData$user_ranks2, _ItemData$user_ranks3, _ItemData$user_ranks4, _ItemData$user_ranks5, _ItemData$user_ranks6, _ItemData$user_ranks7, _ItemData$user_ranks8, _ItemData$user_ranks9, _ItemData$user_ranks10, _ItemData$user_ranks11, _ItemData$user_ranks12, _ItemData$user_ranks13, _ItemData$user_ranks14, _ItemData$user_ranks15, _ItemData$user_ranks16, _ItemData$user_ranks17, _ItemData$user_ranks18, _ItemData$user_ranks19, _ItemData$user_ranks20, _ItemData$user_ranks21, _ItemData$user_ranks22, _ItemData$user_ranks23, _ItemData$user_ranks24, _ItemData$user_ranks25, _ItemData$user_ranks26, _ItemData$user_ranks27, _ItemData$user_ranks28, _ItemData$user_ranks29, _ItemData$teams; - var ItemData = _ref.ItemData; - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - fontSize: '24px', - color: '#05101a' - }, - children: "\u603B\u6392\u884C" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_RankingItem, { - oneItem: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams[0], - towItem: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams[1], - threeItem: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams[2] - }), (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks = ItemData.user_ranks) === null || _ItemData$user_ranks === void 0 ? void 0 : _ItemData$user_ranks.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.myTeam, - children: [(ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks2 = ItemData.user_ranks) === null || _ItemData$user_ranks2 === void 0 ? void 0 : (_ItemData$user_ranks3 = _ItemData$user_ranks2[0]) === null || _ItemData$user_ranks3 === void 0 ? void 0 : _ItemData$user_ranks3.success) === false ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - marginRight: '70px', - padding: '10px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - marginBottom: '0px' - }, - children: [" \u662F\u5426\u664B\u7EA7\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - "color": (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks4 = ItemData.user_ranks) === null || _ItemData$user_ranks4 === void 0 ? void 0 : (_ItemData$user_ranks5 = _ItemData$user_ranks4[0]) === null || _ItemData$user_ranks5 === void 0 ? void 0 : _ItemData$user_ranks5.success) === false ? 'red' : 'green' - }, - children: (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks6 = ItemData.user_ranks) === null || _ItemData$user_ranks6 === void 0 ? void 0 : (_ItemData$user_ranks7 = _ItemData$user_ranks6[0]) === null || _ItemData$user_ranks7 === void 0 ? void 0 : _ItemData$user_ranks7.success) === false ? '否' : ItemData !== null && ItemData !== void 0 && (_ItemData$user_ranks8 = ItemData.user_ranks) !== null && _ItemData$user_ranks8 !== void 0 && (_ItemData$user_ranks9 = _ItemData$user_ranks8[0]) !== null && _ItemData$user_ranks9 !== void 0 && _ItemData$user_ranks9.success ? '是' : '' - })] - }), (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks10 = ItemData.user_ranks) === null || _ItemData$user_ranks10 === void 0 ? void 0 : (_ItemData$user_ranks11 = _ItemData$user_ranks10[0]) === null || _ItemData$user_ranks11 === void 0 ? void 0 : _ItemData$user_ranks11.awards) && /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - marginBottom: '0px' - }, - children: [" \u662F\u5426\u83B7\u5956\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks12 = ItemData.user_ranks) === null || _ItemData$user_ranks12 === void 0 ? void 0 : (_ItemData$user_ranks13 = _ItemData$user_ranks12[0]) === null || _ItemData$user_ranks13 === void 0 ? void 0 : _ItemData$user_ranks13.awards) === 'percent_20' ? '二等奖' : (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks14 = ItemData.user_ranks) === null || _ItemData$user_ranks14 === void 0 ? void 0 : (_ItemData$user_ranks15 = _ItemData$user_ranks14[0]) === null || _ItemData$user_ranks15 === void 0 ? void 0 : _ItemData$user_ranks15.awards) === 'percent_30' ? '三等奖' : '没有获得奖项' - })] - })] - }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - marginRight: '70px' - }, - children: ["\u6211\u7684\u6392\u540D\uFF1A", ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks16 = ItemData.user_ranks) === null || _ItemData$user_ranks16 === void 0 ? void 0 : (_ItemData$user_ranks17 = _ItemData$user_ranks16[0]) === null || _ItemData$user_ranks17 === void 0 ? void 0 : _ItemData$user_ranks17.rank] - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u6218\u961F\u540D", - children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks18 = ItemData.user_ranks) === null || _ItemData$user_ranks18 === void 0 ? void 0 : (_ItemData$user_ranks19 = _ItemData$user_ranks18[0]) === null || _ItemData$user_ranks19 === void 0 ? void 0 : _ItemData$user_ranks19.team_name - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u65F6\u95F4", - children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks20 = ItemData.user_ranks) === null || _ItemData$user_ranks20 === void 0 ? void 0 : (_ItemData$user_ranks21 = _ItemData$user_ranks20[0]) === null || _ItemData$user_ranks21 === void 0 ? void 0 : _ItemData$user_ranks21.cost_time - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1, - textAlign: 'center' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u8D4B\u80FD\u8D5B\u52A0\u5206", - children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks22 = ItemData.user_ranks) === null || _ItemData$user_ranks22 === void 0 ? void 0 : (_ItemData$user_ranks23 = _ItemData$user_ranks22[0]) === null || _ItemData$user_ranks23 === void 0 ? void 0 : _ItemData$user_ranks23.extra_score - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u6BD4\u8D5B\u6210\u7EE9", - children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks24 = ItemData.user_ranks) === null || _ItemData$user_ranks24 === void 0 ? void 0 : (_ItemData$user_ranks25 = _ItemData$user_ranks24[0]) === null || _ItemData$user_ranks25 === void 0 ? void 0 : _ItemData$user_ranks25.score - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u603B\u5206", - children: parseFloat(ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks26 = ItemData.user_ranks) === null || _ItemData$user_ranks26 === void 0 ? void 0 : (_ItemData$user_ranks27 = _ItemData$user_ranks26[0]) === null || _ItemData$user_ranks27 === void 0 ? void 0 : _ItemData$user_ranks27.extra_score) + parseFloat(ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks28 = ItemData.user_ranks) === null || _ItemData$user_ranks28 === void 0 ? void 0 : (_ItemData$user_ranks29 = _ItemData$user_ranks28[0]) === null || _ItemData$user_ranks29 === void 0 ? void 0 : _ItemData$user_ranks29.score) || 0 - }) - })] - }), ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$teams = ItemData.teams) === null || _ItemData$teams === void 0 ? void 0 : _ItemData$teams.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.bottomItem, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#0152d9', - marginRight: '20px' - }, - children: index + 1 - }), /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { - to: "/users/".concat(item === null || item === void 0 ? void 0 : item.user_login, "/classrooms"), - style: { - marginRight: '80px', - position: 'relative' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - className: Detailmodules.imgradius, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(item === null || item === void 0 ? void 0 : item.user_image) - }), (item === null || item === void 0 ? void 0 : item.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: Detailmodules.spanrightradius, - children: item === null || item === void 0 ? void 0 : item.competition_prize - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u6218\u961F\u540D", - children: item === null || item === void 0 ? void 0 : item.team_name - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u5355\u4F4D/\u5B66\u6821\u540D", - children: item.school_name - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1, - textAlign: 'center' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u8D4B\u80FD\u8D5B\u52A0\u5206", - children: item.extra_score - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - flex: 1 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u6BD4\u8D5B\u6210\u7EE9", - children: item.score - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#0152d9' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { - title: "\u603B\u5206", - children: parseFloat(item.extra_score) + parseFloat(item.score) - }) - })] - }); - })] - }); -} -/* harmony default export */ var RankingList = (RanKingList); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Ranking.tsx @@ -4707,688 +4278,309 @@ function RanKingList(_ref) { -var TabPane = tabs/* default.TabPane */.Z.TabPane; +var ProfessionalAuthModal_excluded = ["user", "account", "globalSetting", "loading", "dispatch", "Scoid"]; -function Ranking(_ref) { - var _ChartRules$stages2, _ChartRules$stages3, _item$children, _item$children3, _ItemData$teams, _ItemData$teams2; - var ChartRules = _ref.ChartRules, - ItemData = _ref.ItemData, - getCharts = _ref.getCharts, - Selectkey = _ref.Selectkey, - getChartRules = _ref.getChartRules, - userinfo = _ref.userinfo, - Editable = _ref.Editable, - HeaderDetail = _ref.HeaderDetail; - var _useState = (0,react.useState)(false), + + + + + + +var Option = es_select/* default.Option */.Z.Option; +var ProfessionalAuthModal_Dragger = upload/* default.Dragger */.Z.Dragger; +var ProfessionalAuthModal = function ProfessionalAuthModal(_ref) { + var _globalSetting$settin, _schoolList$find3; + var user = _ref.user, + account = _ref.account, + globalSetting = _ref.globalSetting, + loading = _ref.loading, + dispatch = _ref.dispatch, + Scoid = _ref.Scoid, + props = objectWithoutProperties_default()(_ref, ProfessionalAuthModal_excluded); + var _Form$useForm = es_form/* default.useForm */.Z.useForm(), + _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), + form = _Form$useForm2[0]; + var _useState = (0,react.useState)({}), _useState2 = slicedToArray_default()(_useState, 2), - isUpdate = _useState2[0], - setIsupdate = _useState2[1]; - var _useState3 = (0,react.useState)(''), + formValue = _useState2[0], + setFormValue = _useState2[1]; + var _useState3 = (0,react.useState)([]), _useState4 = slicedToArray_default()(_useState3, 2), - defaultValue = _useState4[0], - setDefaultValue = _useState4[1]; - var _useState5 = (0,react.useState)(true), + schoolList = _useState4[0], + setSchoolList = _useState4[1]; + var _useState5 = (0,react.useState)([]), _useState6 = slicedToArray_default()(_useState5, 2), - ClickButton = _useState6[0], - setClickButton = _useState6[1]; - var _useState7 = (0,react.useState)(), + filterSchoolList = _useState6[0], + setFilterSchoolList = _useState6[1]; + var _useState7 = (0,react.useState)([]), _useState8 = slicedToArray_default()(_useState7, 2), - item = _useState8[0], - setItem = _useState8[1]; - var _useState9 = (0,react.useState)(), + departmentList = _useState8[0], + setDepartmentList = _useState8[1]; + var _useState9 = (0,react.useState)([]), _useState10 = slicedToArray_default()(_useState9, 2), - items = _useState10[0], - setItems = _useState10[1]; - var _useParams = (0,_umi_production_exports.useParams)(), - identifier = _useParams.identifier; + filterDepartmentList = _useState10[0], + setFilterDepartmentList = _useState10[1]; + var _useState11 = (0,react.useState)(), + _useState12 = slicedToArray_default()(_useState11, 2), + image = _useState12[0], + setImage = _useState12[1]; + var _useState13 = (0,react.useState)(), + _useState14 = slicedToArray_default()(_useState13, 2), + fileId = _useState14[0], + setFileId = _useState14[1]; + var _useState15 = (0,react.useState)(), + _useState16 = slicedToArray_default()(_useState15, 2), + isLoading = _useState16[0], + setIsLoading = _useState16[1]; + var _useState17 = (0,react.useState)(), + _useState18 = slicedToArray_default()(_useState17, 2), + visibleAppplySchool = _useState18[0], + setVisibleAppplySchool = _useState18[1]; + var _useState19 = (0,react.useState)(), + _useState20 = slicedToArray_default()(_useState19, 2), + visibleAppplyDepartment = _useState20[0], + setVisibleAppplyDepartment = _useState20[1]; + ; (0,react.useEffect)(function () { - //进入初始化状态为第一个 - if (ClickButton) { - var _ChartRules$stages; - var data = ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages = ChartRules.stages) === null || _ChartRules$stages === void 0 ? void 0 : _ChartRules$stages[0]; - setItem(data); - if (data !== null && data !== void 0 && data.id) { - var _ChartRules$rule_cont, _ChartRules$rule_cont2, _ChartRules$rule_cont3; - if ((HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'dog') { - getCharts(data === null || data === void 0 ? void 0 : data.id); - } - setDefaultValue(((_ChartRules$rule_cont = ChartRules.rule_contents) === null || _ChartRules$rule_cont === void 0 ? void 0 : (_ChartRules$rule_cont2 = _ChartRules$rule_cont.filter(function (item) { - return parseInt(item.competition_stage_id) === parseInt(data === null || data === void 0 ? void 0 : data.id); - })) === null || _ChartRules$rule_cont2 === void 0 ? void 0 : (_ChartRules$rule_cont3 = _ChartRules$rule_cont2[0]) === null || _ChartRules$rule_cont3 === void 0 ? void 0 : _ChartRules$rule_cont3['content']) || ''); - } else { - var _ChartRules$rule_cont4, _ChartRules$rule_cont5, _ChartRules$rule_cont6; - if ((HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'dog') {} - setDefaultValue(((_ChartRules$rule_cont4 = ChartRules.rule_contents) === null || _ChartRules$rule_cont4 === void 0 ? void 0 : (_ChartRules$rule_cont5 = _ChartRules$rule_cont4.filter(function (item) { - return parseInt(item.competition_stage_id) === 0; - })) === null || _ChartRules$rule_cont5 === void 0 ? void 0 : (_ChartRules$rule_cont6 = _ChartRules$rule_cont5[0]) === null || _ChartRules$rule_cont6 === void 0 ? void 0 : _ChartRules$rule_cont6['content']) || ''); - } - } - }, [ChartRules]); - function updateitem() { - return _updateitem.apply(this, arguments); - } - function _updateitem() { - _updateitem = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { - var id, _ChartRules$rule_cont10, _ChartRules$rule_cont11, _ChartRules$rule_cont12, res, _ChartRules$rule_cont13, _ChartRules$rule_cont14, _ChartRules$rule_cont15, _res; + getSchoolOption(); + }, []); + (0,react.useEffect)(function () { + asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { + var res; return regeneratorRuntime_default()().wrap(function _callee$(_context) { while (1) switch (_context.prev = _context.next) { case 0: - if (defaultValue) { - _context.next = 3; + if (Scoid) { + _context.next = 2; break; } - message/* default.info */.ZP.info('内容不能为空'); return _context.abrupt("return"); - case 3: - setClickButton(false); - id = item === null || item === void 0 ? void 0 : item.id; - if (!id) { - _context.next = 12; - break; - } - _context.next = 8; - return (0,utils_fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/update_md_content.json"), { - method: 'post', - body: { - competition_module_id: Selectkey, - content: defaultValue, - md_content_id: (_ChartRules$rule_cont10 = ChartRules.rule_contents) === null || _ChartRules$rule_cont10 === void 0 ? void 0 : (_ChartRules$rule_cont11 = _ChartRules$rule_cont10.filter(function (item) { - return parseInt(item.competition_stage_id) === parseInt(id); - })) === null || _ChartRules$rule_cont11 === void 0 ? void 0 : (_ChartRules$rule_cont12 = _ChartRules$rule_cont11[0]) === null || _ChartRules$rule_cont12 === void 0 ? void 0 : _ChartRules$rule_cont12['id'], - stage_id: item === null || item === void 0 ? void 0 : item.id - } - }); - case 8: + case 2: + _context.next = 4; + return getDepartmentOption(Scoid); + case 4: res = _context.sent; - if (res.status === 0) { - message/* default.info */.ZP.info('更新成功'); - setIsupdate(false); - getChartRules(); - } - _context.next = 16; - break; - case 12: - _context.next = 14; - return (0,utils_fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/update_md_content.json"), { - method: 'post', - body: { - competition_module_id: Selectkey, - content: defaultValue, - md_content_id: (_ChartRules$rule_cont13 = ChartRules.rule_contents) === null || _ChartRules$rule_cont13 === void 0 ? void 0 : (_ChartRules$rule_cont14 = _ChartRules$rule_cont13.filter(function (item) { - return parseInt(item.competition_stage_id) === 0; - })) === null || _ChartRules$rule_cont14 === void 0 ? void 0 : (_ChartRules$rule_cont15 = _ChartRules$rule_cont14[0]) === null || _ChartRules$rule_cont15 === void 0 ? void 0 : _ChartRules$rule_cont15['id'], - stage_id: item === null || item === void 0 ? void 0 : item.id - } - }); - case 14: - _res = _context.sent; - if (_res.status === 0) { - message/* default.info */.ZP.info('更新成功'); - setIsupdate(false); - getChartRules(); - } - case 16: + setDepartmentList(res === null || res === void 0 ? void 0 : res.departments); + case 6: case "end": return _context.stop(); } }, _callee); - })); - return _updateitem.apply(this, arguments); - } - var columns = [{ - title: '排名', - dataIndex: 'name', - align: 'center', - key: 'name', - render: function render(a, b, c) { - return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: c + 1 - }); - } - }, { - title: '头像', - dataIndex: 'user_image', - align: 'center', - key: 'user_image', - render: function render(text) { - return /*#__PURE__*/(0,jsx_runtime.jsx)("img", { - className: Detailmodules.imgradius, - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(text) - }); - } - }, { - title: '战队名称', - dataIndex: 'team_name', - key: 'team_name', - // width:120, - render: function render(text) { - return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - title: text, - children: text && (text === null || text === void 0 ? void 0 : text.length) >= 15 ? (text === null || text === void 0 ? void 0 : text.substr(0, 15)) + '...' : text || '--' - }); - } - // align:'center', - }, { - title: '单位', - dataIndex: 'school_name', - key: 'school_name', - align: 'center', - render: function render(a) { - return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: a || '--' - }); - } - }, { - title: (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' ? 'mAP指标' : (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'Jittor-3' ? '总分' : 'top1指标', - dataIndex: 'score', - key: 'score', - render: function render(text) { - return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: text || '--' - }); - } - }]; - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [(ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages2 = ChartRules.stages) === null || _ChartRules$stages2 === void 0 ? void 0 : _ChartRules$stages2.length) > 0 ? null : /*#__PURE__*/(0,jsx_runtime.jsx)(RankingNuLL, {}), (ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages3 = ChartRules.stages) === null || _ChartRules$stages3 === void 0 ? void 0 : _ChartRules$stages3.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tabs/* default */.Z, { - animated: true, - tabBarExtraContent: ((userinfo === null || userinfo === void 0 ? void 0 : userinfo.admin) || (userinfo === null || userinfo === void 0 ? void 0 : userinfo.business) || Editable) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - onClick: function onClick() { - setIsupdate(true); - }, - children: "\u7F16\u8F91" - }), - onChange: function onChange(e) { - var _ChartRules$stages4, _data$children, _ChartRules$rule_cont7, _ChartRules$rule_cont8, _ChartRules$rule_cont9; - setIsupdate(false); - var data = ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages4 = ChartRules.stages) === null || _ChartRules$stages4 === void 0 ? void 0 : _ChartRules$stages4.filter(function (item) { - return parseInt(e) === parseInt(item === null || item === void 0 ? void 0 : item.id); - })[0]; - setItem(data); - var datas = data === null || data === void 0 ? void 0 : (_data$children = data.children) === null || _data$children === void 0 ? void 0 : _data$children[0]; - setItems(datas); - setDefaultValue(((_ChartRules$rule_cont7 = ChartRules.rule_contents) === null || _ChartRules$rule_cont7 === void 0 ? void 0 : (_ChartRules$rule_cont8 = _ChartRules$rule_cont7.filter(function (item) { - return parseInt(item.competition_stage_id) === parseInt(data === null || data === void 0 ? void 0 : data.id); - })) === null || _ChartRules$rule_cont8 === void 0 ? void 0 : (_ChartRules$rule_cont9 = _ChartRules$rule_cont8[0]) === null || _ChartRules$rule_cont9 === void 0 ? void 0 : _ChartRules$rule_cont9['content']) || ''); - getCharts((datas === null || datas === void 0 ? void 0 : datas.id) || e); - }, - children: ChartRules && ChartRules.stages.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(TabPane, { - tab: item.name, - children: isUpdate === false && ChartRules && ChartRules.rule_contents.map(function (items, keys) { - if (item.id === items.competition_stage_id) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { - value: items.content === undefined || items.content === null ? "" : items.content - }, keys); - } else if (item.id === null && items.competition_stage_id === 0) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { - value: items.content === undefined || items.content === null ? "" : items.content - }, keys); - } - }) - }, item.id === null ? 0 : item.id); - }) - }), (item === null || item === void 0 ? void 0 : (_item$children = item.children) === null || _item$children === void 0 ? void 0 : _item$children.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tabs/* default */.Z, { - activeKey: (items === null || items === void 0 ? void 0 : items.id) + '', - onChange: function onChange(e) { - var _item$children2; - var data = item === null || item === void 0 ? void 0 : (_item$children2 = item.children) === null || _item$children2 === void 0 ? void 0 : _item$children2.filter(function (item) { - return parseInt(e) === parseInt(item === null || item === void 0 ? void 0 : item.id); - })[0]; - setItems(data); - getCharts(e); - - //获取参数 - }, - children: item === null || item === void 0 ? void 0 : (_item$children3 = item.children) === null || _item$children3 === void 0 ? void 0 : _item$children3.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(TabPane, { - tab: item.name - }, item.id === null ? 0 : item.id); - }) - }), isUpdate && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(markdown_editor/* default */.Z, { - defaultValue: defaultValue, - onChange: function onChange(e) { - setDefaultValue(e); - } - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - marginTop: '10px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - style: { - width: '90px' - }, - type: "primary", - onClick: function onClick() { - return updateitem(); - }, - children: "\u63D0\u4EA4" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - style: { - marginLeft: '30px', - width: '90px' - }, - onClick: function onClick() { - return setIsupdate(false); - }, - children: "\u53D6\u6D88" - })] - })] - }), (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$teams = ItemData.teams) === null || _ItemData$teams === void 0 ? void 0 : _ItemData$teams.length) > 0 && ((HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'dog' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'Jittor-3') ? /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, { - dataSource: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams, - columns: columns, - pagination: false - }) : (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$teams2 = ItemData.teams) === null || _ItemData$teams2 === void 0 ? void 0 : _ItemData$teams2.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(RankingList, { - ItemData: ItemData - })] - }); -} -/* harmony default export */ var Detail_Ranking = (Ranking); -// EXTERNAL MODULE: ./node_modules/antd/es/divider/style/index.js + 1 modules -var divider_style = __webpack_require__(98541); -// EXTERNAL MODULE: ./node_modules/antd/es/divider/index.js -var divider = __webpack_require__(27049); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Downloadpdf.tsx - - - - - - - - - - - -//下载页 - - - - - - - -function downpdf(_ref) { - var _Prize$personal_certi, _Prize$personal_certi2, _Prize$team_certifica, _Prize$team_certifica2, _Prize$teams, _Prize$teams$, _Prize$teams$2; - var Prize = _ref.Prize; - var params = (0,_umi_production_exports.useParams)(); - var _useState = (0,react.useState)([{ - type: 1, - name: "团体奖证书" - }, { - type: 2, - name: "个人奖证书" - }, { - type: 3, - name: "优秀指导教师证书" - }]), - _useState2 = slicedToArray_default()(_useState, 2), - certData = _useState2[0], - setCertData = _useState2[1]; - var handleClick = /*#__PURE__*/function () { - var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(item) { + }))(); + }, [Scoid]); + var getSchoolOption = /*#__PURE__*/function () { + var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { var res; - return regeneratorRuntime_default()().wrap(function _callee$(_context) { - while (1) switch (_context.prev = _context.next) { + return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { + while (1) switch (_context2.prev = _context2.next) { case 0: - _context.next = 2; - return (0,competitions/* getCertificateInfo */.Ju)({ - type: item.type, - id: params.identifier + _context2.next = 2; + return dispatch({ + type: 'account/getSchoolOption' }); case 2: - res = _context.sent; - if ((res === null || res === void 0 ? void 0 : res.status) === 0) location.href = "/competitions/exports?id=".concat(params.identifier, "&type=").concat(item.type); + res = _context2.sent; + setSchoolList(res === null || res === void 0 ? void 0 : res.schools); case 4: case "end": - return _context.stop(); + return _context2.stop(); } - }, _callee); + }, _callee2); })); - return function handleClick(_x) { - return _ref2.apply(this, arguments); + return function getSchoolOption() { + return _ref3.apply(this, arguments); }; }(); - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: Detailmodules.downloadpdf, - children: "\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u7684\u4E2A\u4EBA\u4FE1\u606F\u7ECF\u5BA1\u6279\u540E\uFF0C\u5C06\u63D0\u4F9B\u4E2A\u4EBA\u83B7\u5956\u8BC1\u4E66\u4E0B\u8F7D\uFF1B\u56E2\u961F\u961F\u5458\u4FE1\u606F\u5168\u90E8\u5BA1\u6279\u540E\uFF0C\u5C06\u63D0\u4F9B\u56E2\u961F\u83B7\u5956\u8BC1\u4E66\u4E0B\u8F7D\u3002" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - style: { - marginTop: '30px', - fontSize: '16px', - color: '#000' - }, - children: "\u8BC1\u4E66\u60C5\u51B5" - }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$personal_certi = Prize.personal_certifications) === null || _Prize$personal_certi === void 0 ? void 0 : _Prize$personal_certi.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u4E2A\u4EBA\u8BC1\u4E66\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/pdfs.png" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("a", { - style: { - marginLeft: '5px' - }, - href: env/* default.API_SERVER */.Z.API_SERVER + "".concat(Prize === null || Prize === void 0 ? void 0 : (_Prize$personal_certi2 = Prize.personal_certifications[0]) === null || _Prize$personal_certi2 === void 0 ? void 0 : _Prize$personal_certi2.url), - children: "\u7ACB\u5373\u4E0B\u8F7D" - })] - }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u4E2A\u4EBA\u8BC1\u4E66\uFF1A" - }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#000' - }, - children: "\u6682\u672A\u751F\u6210" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - marginLeft: '20px' - }, - children: "\u539F\u56E0\uFF1A" - }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#000' - }, - children: "\u7EC4\u59D4\u4F1A\u672A\u5B8C\u6210\u8BC1\u4E66\u5BA1\u6279\uFF0C\u8BF7\u7A0D\u540E" - })] - }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$team_certifica = Prize.team_certifications) === null || _Prize$team_certifica === void 0 ? void 0 : _Prize$team_certifica.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u56E2\u961F\u8BC1\u4E66\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/pdfs.png" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("a", { - style: { - marginLeft: '5px' - }, - href: env/* default.API_SERVER */.Z.API_SERVER + "".concat(Prize === null || Prize === void 0 ? void 0 : (_Prize$team_certifica2 = Prize.team_certifications[0]) === null || _Prize$team_certifica2 === void 0 ? void 0 : _Prize$team_certifica2.url), - children: "\u7ACB\u5373\u4E0B\u8F7D" - })] - }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u56E2\u961F\u8BC1\u4E66\uFF1A" - }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#000' - }, - children: "\u6682\u672A\u751F\u6210" - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(divider/* default */.Z, {}), (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams = Prize.teams) === null || _Prize$teams === void 0 ? void 0 : _Prize$teams.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [(Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$ = Prize.teams[0]) === null || _Prize$teams$ === void 0 ? void 0 : _Prize$teams$.name), "\u6218\u961F\u4FE1\u606F\u586B\u62A5\u6982\u51B5"] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - display: 'flex', - height: '50px', - background: '#f5f5f5', - alignItems: 'center', - justifyContent: 'space-around' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '5%' - }, - children: "\u89D2\u8272" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '5%' - }, - children: "\u59D3\u540D" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: "\u5B9E\u540D\u8BA4\u8BC1" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: "\u804C\u4E1A\u8BA4\u8BC1" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: "\u624B\u673A\u7ED1\u5B9A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: "\u90AE\u7BB1\u7ED1\u5B9A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '50%', - textAlign: 'center' - }, - children: "\u5F00\u6237\u884C\u53CA\u94F6\u884C\u5361\u53F7\u4FE1\u606F\uFF08\u961F\u957F\u586B\u5199\uFF09" - })] - }), (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$2 = Prize.teams[0]) === null || _Prize$teams$2 === void 0 ? void 0 : _Prize$teams$2.team_members.map(function (item, index) { - var _Prize$teams$3, _Prize$teams$3$bank_a, _Prize$teams$4, _Prize$teams$4$bank_a, _Prize$teams$5, _Prize$teams$5$bank_a; - return /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - className: Detailmodules.teamItem, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '5%' - }, - children: item === null || item === void 0 ? void 0 : item.role - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - title: (item === null || item === void 0 ? void 0 : item.name) || '', - className: "multi_ellipsis1", - style: { - width: '5%' - }, - children: item === null || item === void 0 ? void 0 : item.name - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: (item === null || item === void 0 ? void 0 : item.real_name_auth) === "authed" ? '已认证' : (item === null || item === void 0 ? void 0 : item.real_name_auth) === "authing" ? '待审核' : '未认证' - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: (item === null || item === void 0 ? void 0 : item.professional_auth) === "authed" ? '已认证' : (item === null || item === void 0 ? void 0 : item.professional_auth) === "authing" ? '待审核' : '未认证' - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: item !== null && item !== void 0 && item.phone_binded ? '已绑定' : '未绑定' - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '10%' - }, - children: item !== null && item !== void 0 && item.email_binded ? '已绑定' : '未绑定' - }), (item === null || item === void 0 ? void 0 : item.role) === '队长' ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - width: '50%', - textAlign: 'center' - }, - children: [(Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$3 = Prize.teams[0]) === null || _Prize$teams$3 === void 0 ? void 0 : (_Prize$teams$3$bank_a = _Prize$teams$3.bank_account) === null || _Prize$teams$3$bank_a === void 0 ? void 0 : _Prize$teams$3$bank_a.bank), (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$4 = Prize.teams[0]) === null || _Prize$teams$4 === void 0 ? void 0 : (_Prize$teams$4$bank_a = _Prize$teams$4.bank_account) === null || _Prize$teams$4$bank_a === void 0 ? void 0 : _Prize$teams$4$bank_a.second_bank), (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$5 = Prize.teams[0]) === null || _Prize$teams$5 === void 0 ? void 0 : (_Prize$teams$5$bank_a = _Prize$teams$5.bank_account) === null || _Prize$teams$5$bank_a === void 0 ? void 0 : _Prize$teams$5$bank_a.card_no)] - }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '50%' - } - })] - }); - }))] - }) : null, /*#__PURE__*/(0,jsx_runtime.jsx)(row/* default */.Z, { - gutter: [20, 20], - children: certData.map(function (item, key) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - type: "primary", - onClick: function onClick() { - return handleClick(item); - }, - children: item.name - }) - }, key); - }) - })] - }); -} -/* harmony default export */ var Downloadpdf = (downpdf); -// EXTERNAL MODULE: ./node_modules/antd/es/radio/style/index.js + 1 modules -var radio_style = __webpack_require__(83822); -// EXTERNAL MODULE: ./node_modules/antd/es/radio/index.js + 4 modules -var es_radio = __webpack_require__(29924); -// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules -var form_style = __webpack_require__(75627); -// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules -var es_form = __webpack_require__(51018); -// EXTERNAL MODULE: ./src/utils/util.tsx -var util = __webpack_require__(29427); -// EXTERNAL MODULE: ./src/assets/images/account/auth.png -var auth = __webpack_require__(98814); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/index.less?modules -// extracted by mini-css-extract-plugin -/* harmony default export */ var componentmodules = ({"modal":"modal___A9Ovz","colorBlue":"colorBlue___XSmR5","formWrap":"formWrap___wRvaA","flexRow":"flexRow___C40dc","flexColumn":"flexColumn___LkZfj","example":"example___bz7Hw","exampleImg":"exampleImg___gNkC_","colorOrange":"colorOrange___Ka6zf","uploader":"uploader___plQRr","uploadImg":"uploadImg___cjOpL","imageTip":"imageTip___p1_lZ","uploadTipIcon":"uploadTipIcon___SpsS2","uploadTip":"uploadTip___e9JlL","color05101a":"color05101a___CDEUv","viewLargerImg":"viewLargerImg___IclRX","footerWrap":"footerWrap___beWC6","note":"note___CXi9y","schoolHintWrap":"schoolHintWrap___Ma6ly","colorCDCDCD":"colorCDCDCD___D0UWo","color0152d9":"color0152d9___hF3Bb"}); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/RealNameAuthModal.tsx - - - - - - - - - - - - - - - - - - - - - -var _excluded = ["user", "account", "globalSetting", "loading", "dispatch"]; - - - - - - - - -var RealNameAuthModal_Dragger = upload/* default.Dragger */.Z.Dragger; -var MAX_NAME_LENGTH = 10; -var RealNameAuthModal = function RealNameAuthModal(_ref) { - var user = _ref.user, - account = _ref.account, - globalSetting = _ref.globalSetting, - loading = _ref.loading, - dispatch = _ref.dispatch, - props = objectWithoutProperties_default()(_ref, _excluded); - var _Form$useForm = es_form/* default.useForm */.Z.useForm(), - _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), - form = _Form$useForm2[0]; - var _useState = (0,react.useState)({}), - _useState2 = slicedToArray_default()(_useState, 2), - formValue = _useState2[0], - setFormValue = _useState2[1]; - var _useState3 = (0,react.useState)(true), - _useState4 = slicedToArray_default()(_useState3, 2), - showRealName = _useState4[0], - setShowRealName = _useState4[1]; - var _useState5 = (0,react.useState)(), - _useState6 = slicedToArray_default()(_useState5, 2), - realName = _useState6[0], - setRealName = _useState6[1]; - var _useState7 = (0,react.useState)(), - _useState8 = slicedToArray_default()(_useState7, 2), - image = _useState8[0], - setImage = _useState8[1]; - var _useState9 = (0,react.useState)(), - _useState10 = slicedToArray_default()(_useState9, 2), - fileId = _useState10[0], - setFileId = _useState10[1]; - var _useState11 = (0,react.useState)(), - _useState12 = slicedToArray_default()(_useState11, 2), - isLoading = _useState12[0], - setIsLoading = _useState12[1]; + var getDepartmentOption = function getDepartmentOption(schoolId) { + return dispatch({ + type: 'account/getDepartmentOption', + payload: { + id: schoolId + } + }); + }; (0,react.useEffect)(function () { if (!account.basicInfo) { return; } var basicInfo = account.basicInfo; var formData = { - name: basicInfo.show_realname ? basicInfo.name : (0,util/* getHiddenName */.YA)(basicInfo.name), - gender: basicInfo.gender + identity: basicInfo.identity, + school: basicInfo.school_name, + department: basicInfo.department_name, + studentNo: basicInfo.student_id, + jobTitle: basicInfo.identity == "teacher" ? basicInfo.technical_title : "教授", + manager: basicInfo.identity == "professional" ? basicInfo.technical_title : "企业管理者" }; - setRealName(basicInfo.name); - setShowRealName(basicInfo.show_realname); form.setFieldsValue(formData); setFormValue(formData); }, [account.basicInfo]); - var handleUploadChange = function handleUploadChange(info) { - if (info.file.status === 'uploading') { - setIsLoading(true); + var handleApplySchool = function handleApplySchool() { + setVisibleAppplySchool(true); + }; + var handleApplyDepartment = function handleApplyDepartment() { + if (!schoolList.find(function (item) { + return item.name === formValue.school; + })) { + message/* default.info */.ZP.info('请先选择正确的单位或者学校!'); return; } - if (info.file.status === 'done') { - var _info$file$response; - console.log(info.file, info.file.response); - setFileId((_info$file$response = info.file.response) === null || _info$file$response === void 0 ? void 0 : _info$file$response.id); - (0,util/* getBase64 */.y3)(info.file.originFileObj, function (base64Img) { - setImage(base64Img); - setIsLoading(false); - }); - } + setVisibleAppplyDepartment(true); }; var handleValuesChange = function handleValuesChange(changedValues) { setFormValue(objectSpread2_default()({}, form.getFieldsValue())); - if ('name' in changedValues) { - setRealName(changedValues.name); + if ('school' in changedValues) { + setFilterSchoolList(schoolList.filter(function (item) { + return item.name.includes(changedValues.school); + })); + var findSchoolId = (schoolList.find(function (item) { + return item.name === changedValues.school; + }) || {}).id; + if (findSchoolId) { + handleSetDepartment(changedValues.school); + } else { + form.setFieldsValue({ + department: '' + }); + setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), { + school: changedValues.school, + department: '' + })); + } } }; - var handleSetShowRealName = function handleSetShowRealName() { - var nextRealNameStatus = !showRealName; - setShowRealName(nextRealNameStatus); - var nextName = nextRealNameStatus ? realName : (0,util/* getHiddenName */.YA)(realName); - form.setFieldsValue({ - name: nextName - }); + var handleSetDepartment = /*#__PURE__*/function () { + var _ref4 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3(school, departmentName) { + var _schoolList$find, _res$departments, _res$departments$; + var findSchoolId, res, name; + return regeneratorRuntime_default()().wrap(function _callee3$(_context3) { + while (1) switch (_context3.prev = _context3.next) { + case 0: + findSchoolId = (_schoolList$find = schoolList.find(function (item) { + return item.name === school; + })) === null || _schoolList$find === void 0 ? void 0 : _schoolList$find.id; + _context3.next = 3; + return getDepartmentOption(findSchoolId); + case 3: + _context3.t0 = _context3.sent; + if (_context3.t0) { + _context3.next = 6; + break; + } + _context3.t0 = {}; + case 6: + res = _context3.t0; + setDepartmentList(res === null || res === void 0 ? void 0 : res.departments); + name = departmentName || (res === null || res === void 0 ? void 0 : (_res$departments = res.departments) === null || _res$departments === void 0 ? void 0 : (_res$departments$ = _res$departments[0]) === null || _res$departments$ === void 0 ? void 0 : _res$departments$.name); + form.setFieldsValue({ + department: name + }); + setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), { + school: school, + department: name + })); + case 11: + case "end": + return _context3.stop(); + } + }, _callee3); + })); + return function handleSetDepartment(_x, _x2) { + return _ref4.apply(this, arguments); + }; + }(); + var handleSchoolSuccess = /*#__PURE__*/function () { + var _ref5 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4(schoolName) { + return regeneratorRuntime_default()().wrap(function _callee4$(_context4) { + while (1) switch (_context4.prev = _context4.next) { + case 0: + _context4.next = 2; + return getSchoolOption(); + case 2: + form.setFieldsValue({ + school: schoolName, + department: '' + }); + setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), { + school: schoolName, + department: '' + })); + case 4: + case "end": + return _context4.stop(); + } + }, _callee4); + })); + return function handleSchoolSuccess(_x3) { + return _ref5.apply(this, arguments); + }; + }(); + var handleUploadChange = function handleUploadChange(info) { + if (info.file.status === 'uploading') { + setIsLoading(true); + return; + } + if (info.file.status === 'done') { + var _info$file$response; + console.log(info.file, info.file.response); + setFileId((_info$file$response = info.file.response) === null || _info$file$response === void 0 ? void 0 : _info$file$response.id); + (0,util/* getBase64 */.y3)(info.file.originFileObj, function (base64Img) { + setImage(base64Img); + setIsLoading(false); + }); + } }; var handleFinish = /*#__PURE__*/function () { - var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) { - var _account$basicInfo, _user$userInfo; - var _ref3, name, gender, id_number, res, _user$userInfo2; - return regeneratorRuntime_default()().wrap(function _callee$(_context) { - while (1) switch (_context.prev = _context.next) { + var _ref6 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5(values) { + var _schoolList$find2, _departmentList$find, _account$basicInfo, _user$userInfo; + var _ref7, school, department, identity, studentNo, jobTitle, manager, school_id, department_id, extra, res, _user$userInfo2; + return regeneratorRuntime_default()().wrap(function _callee5$(_context5) { + while (1) switch (_context5.prev = _context5.next) { case 0: - _ref3 = values || {}, name = _ref3.name, gender = _ref3.gender, id_number = _ref3.idNumber; + _ref7 = values || {}, school = _ref7.school, department = _ref7.department, identity = _ref7.identity, studentNo = _ref7.studentNo, jobTitle = _ref7.jobTitle, manager = _ref7.manager; if (image) { - _context.next = 4; + _context5.next = 4; break; } message/* default.info */.ZP.info('请先上传照片!'); - return _context.abrupt("return"); + return _context5.abrupt("return"); case 4: - _context.next = 6; + school_id = (_schoolList$find2 = schoolList.find(function (item) { + return item.name === school; + })) === null || _schoolList$find2 === void 0 ? void 0 : _schoolList$find2.id; + department_id = (_departmentList$find = departmentList.find(function (item) { + return item.name === department; + })) === null || _departmentList$find === void 0 ? void 0 : _departmentList$find.id; + if (identity === 'student') { + extra = studentNo; + } else if (identity === 'teacher') { + extra = jobTitle; + } else { + extra = manager; + } + _context5.next = 9; return dispatch({ - type: 'account/applyRealNameAuth', + type: 'account/applyProfessionalAuth', payload: { id: ((_account$basicInfo = account.basicInfo) === null || _account$basicInfo === void 0 ? void 0 : _account$basicInfo.id) || ((_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login), - name: name, - gender: gender, - id_number: id_number, - show_realname: showRealName, + school_id: school_id, + department_id: department_id, + identity: identity, + extra: extra, attachment_ids: [fileId] } }); - case 6: - res = _context.sent; + case 9: + res = _context5.sent; handleClose(); if (res) { message/* default.info */.ZP.info("申请已提交,请等待审核!"); @@ -5399,14 +4591,14 @@ var RealNameAuthModal = function RealNameAuthModal(_ref) { } }); } - case 9: + case 12: case "end": - return _context.stop(); + return _context5.stop(); } - }, _callee); + }, _callee5); })); - return function handleFinish(_x) { - return _ref2.apply(this, arguments); + return function handleFinish(_x4) { + return _ref6.apply(this, arguments); }; }(); var handleClose = function handleClose() { @@ -5417,7 +4609,7 @@ var RealNameAuthModal = function RealNameAuthModal(_ref) { }; var uploadProps = { data: { - type: "real_name" + type: "professional" }, multiple: true, showUploadList: false, @@ -5432,111 +4624,202 @@ var RealNameAuthModal = function RealNameAuthModal(_ref) { return isJpgOrPng; } }; - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_modal/* default */.Z, { + return /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, { centered: true, keyboard: false, closable: false, destroyOnClose: true, - open: account.actionTabs.key === 'Account-RealNameAuth', - title: "\u4FEE\u6539\u5B9E\u540D\u4FE1\u606F", - width: "600px", + className: componentmodules.modal, + open: account.actionTabs.key === 'Account-ProfessionalAuth', + title: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + style: { + padding: "25px" + }, + align: "middle", + justify: "space-between", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + children: "\u804C\u4E1A\u8BA4\u8BC1" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-guanbi11", + style: { + color: "#979797", + cursor: "pointer" + }, + onClick: handleClose + }) + })] + }), + width: "660px", footer: null, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, { spinning: !!isLoading, children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { className: componentmodules.formWrap, form: form, - layout: "horizontal", + colon: false, onValuesChange: handleValuesChange, onFinish: handleFinish, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u59D3\u540D", - name: "name", - labelCol: { - span: 3 - }, - wrapperCol: { - span: 12 - }, - rules: [{ - required: true, - message: "\u8BF7\u8F93\u5165\u771F\u5B9E\u59D3\u540D\uFF0C\u6700\u5927\u9650\u5236".concat(MAX_NAME_LENGTH, "\u4E2A\u5B57\u7B26") - }, { - validator: util/* handleValidatorName */.HJ - }], - extra: /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: showRealName ? '(显示:平台将显示您的真实姓名)' : '(隐藏:平台将显示你的昵称)' - }), - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - disabled: !showRealName, - placeholder: "\u8BF7\u8F93\u5165\u771F\u5B9E\u59D3\u540D\uFF0C\u6700\u5927\u9650\u5236".concat(MAX_NAME_LENGTH, "\u4E2A\u5B57\u7B26"), - maxLength: MAX_NAME_LENGTH, - addonAfter: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont ".concat(showRealName ? 'icon-xianshi' : 'icon-yincang', " font18 ").concat(componentmodules.color0152d9), - onClick: handleSetShowRealName + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + gutter: [10, 0], + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + flex: '300px', + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u804C\u4E1A", + name: "identity", + rules: [{ + required: true, + message: '请先选择职业' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "teacher", + children: "\u6559\u5E08" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "student", + children: "\u5B66\u751F" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "professional", + children: "\u4E13\u4E1A\u4EBA\u58EB" + })] + }) }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u6027\u522B\uFF1A", - name: "gender", - labelCol: { - span: 3 - }, - wrapperCol: { - span: 12 - }, - rules: [{ - required: true, - message: '请选择性别' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, { - value: 0, - children: "\u7537" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, { - value: 1, - children: "\u5973" - })] - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u8BC1\u4EF6\u53F7\uFF1A", - labelCol: { - span: 3 - }, - name: "idNumber", - rules: [{ - required: true, - message: '请输入证件号' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - placeholder: "\u8BF7\u8F93\u5165\u8BC1\u4EF6\u53F7" - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u8EAB\u4EFD\u8BC1\u4E0A\u4F20", - labelCol: { - span: 3 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: componentmodules.flexRow, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: "".concat(componentmodules.flexColumn, " ").concat(componentmodules.example), - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: componentmodules.exampleImg, - children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: auth - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - className: "tc", - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "\u793A\u4F8B\u56FE\u7247" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: "".concat(componentmodules.colorOrange, " font12"), - children: "\uFF08png/jpg/bmp\u683C\u5F0F\uFF0C\u4E0D\u8D85\u8FC72MB\uFF09" + }), formValue.identity === 'student' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + flex: '200px', + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + initialValue: formValue.studentNo, + name: "studentNo", + rules: [{ + required: true, + message: '请先输入学号' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + type: "text", + placeholder: "\u8BF7\u8F93\u5165\u5B66\u53F7" + }) + }) + }), formValue.identity === 'teacher' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + flex: '200px', + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + initialValue: formValue.jobTitle, + name: "jobTitle", + rules: [{ + required: true, + message: '请先选择职称' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u6559\u6388", + children: "\u6559\u6388" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u526F\u6559\u6388", + children: "\u526F\u6559\u6388" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u8BB2\u5E08", + children: "\u8BB2\u5E08" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u52A9\u6559", + children: "\u52A9\u6559" })] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + }) + }) + }), formValue.identity === 'professional' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + flex: '200px', + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + initialValue: formValue.manager, + name: "manager", + rules: [{ + required: true, + message: '请先选择职称' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u4F01\u4E1A\u7BA1\u7406\u8005", + children: "\u4F01\u4E1A\u7BA1\u7406\u8005" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u90E8\u95E8\u7BA1\u7406\u8005", + children: "\u90E8\u95E8\u7BA1\u7406\u8005" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u9AD8\u7EA7\u5DE5\u7A0B\u5E08", + children: "\u9AD8\u7EA7\u5DE5\u7A0B\u5E08" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u5DE5\u7A0B\u5E08", + children: "\u5DE5\u7A0B\u5E08" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u52A9\u7406\u5DE5\u7A0B\u5E08", + children: "\u52A9\u7406\u5DE5\u7A0B\u5E08" + })] + }) + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u5B66\u6821/\u5355\u4F4D", + name: "school", + extra: formValue.school && !(schoolList !== null && schoolList !== void 0 && schoolList.find(function (item) { + return item.name === formValue.school; + })) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: componentmodules.schoolHintWrap, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + className: componentmodules.colorCDCDCD, + children: ["\u672A\u627E\u5230\u5305\u542B\u201C", formValue.school, "\u201D\u7684\u9AD8\u6821\uFF0C"] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "".concat(componentmodules.color0152d9, " current"), + onClick: handleApplySchool, + children: "\u7533\u8BF7\u65B0\u589E" + })] + }), + rules: [{ + required: true, + message: '请先选择学校/单位' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(auto_complete/* default */.Z, { + showSearch: true, + options: filterSchoolList === null || filterSchoolList === void 0 ? void 0 : filterSchoolList.map(function (item) { + return { + value: item.name + }; + }) + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u9662\u7CFB/\u90E8\u95E8", + name: "department", + extra: formValue.department && !(departmentList !== null && departmentList !== void 0 && departmentList.find(function (item) { + return item.name === formValue.department; + })) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: componentmodules.schoolHintWrap, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: componentmodules.colorCDCDCD, + children: formValue.department ? "\u672A\u627E\u5230\u5305\u542B\u201C".concat(formValue.department, "\u201D\u7684\u9AD8\u6821\uFF0C") : '未找到院系,' + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "".concat(componentmodules.color0152d9, " current"), + onClick: handleApplyDepartment, + children: "\u7533\u8BF7\u65B0\u589E" + })] + }), + rules: [{ + required: true, + message: '请先选择院系/部门' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(auto_complete/* default */.Z, { + showSearch: true, + onChange: function onChange(value) { + return setFilterDepartmentList(departmentList.filter(function (item) { + return item.name.includes(value); + })); + }, + options: filterDepartmentList === null || filterDepartmentList === void 0 ? void 0 : filterDepartmentList.map(function (item) { + return { + value: item.name + }; + }) + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u804C\u4E1A\u8BC1\u4E0A\u4F20", + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: componentmodules.flexRow, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { className: componentmodules.flexColumn, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(RealNameAuthModal_Dragger, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Dragger, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { accept: ".png,.jpg,.bmp,.jpeg", children: image ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", { src: image, @@ -5562,6 +4845,22 @@ var RealNameAuthModal = function RealNameAuthModal(_ref) { children: "\u67E5\u770B\u5927\u56FE" }) })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: "".concat(componentmodules.flexColumn, " ").concat(componentmodules.example), + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: componentmodules.exampleImg, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: job + }) + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + className: "tc", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "\u793A\u4F8B\u56FE\u7247" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: "".concat(componentmodules.colorOrange, " font12"), + children: "\uFF08png/jpg/bmp\u683C\u5F0F\uFF0C\u4E0D\u8D85\u8FC72MB\uFF09" + })] + })] })] }) }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { @@ -5576,7 +4875,7 @@ var RealNameAuthModal = function RealNameAuthModal(_ref) { size: "large", type: "primary", htmlType: "submit", - loading: loading['account/applyRealNameAuth'], + loading: loading['account/applyProfessionalAuth'], children: "\u4FDD\u5B58" })] }) @@ -5585,53 +4884,61 @@ var RealNameAuthModal = function RealNameAuthModal(_ref) { children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { children: "\u8BA4\u8BC1\u987B\u77E5\uFF1A" }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "1.\u4F60\u9700\u8981\u51C6\u5907\u6709\u6548\u7684\u8EAB\u4EFD\u8BC1\u6B63\u9762\uFF08\u4EBA\u50CF\u9762\uFF09\u7684\u8BC1\u4EF6\u7167\u7167\u7247\uFF0C\u8BF7\u786E\u4FDD\u8BC1\u4EF6\u7167\u7247\u6E05\u6670\u53EF\u89C1\uFF0C\u4E25\u7981PS\uFF1B" + children: "1.\u6839\u636E\u804C\u4E1A\u4E0A\u4F20\u76F8\u5E94\u7684\u8BC1\u4EF6\u7167\uFF1A\u6559\u5E08\uFF08\u6559\u5E08\u8BC1\uFF09\uFF0C\u4E13\u4E1A\u4EBA\u58EB\uFF08\u5458\u5DE5\u8BC1\uFF09\u3001\u5B66\u751F\uFF08\u5B66\u751F\u8BC1\uFF09\uFF0C\u8BF7\u786E\u4FDD\u8BC1\u4EF6\u7167\u5185\u5BB9\u5B8C\u6574\u5E76\u4E14\u6E05\u6670\u53EF\u89C1\uFF0C\u4E25\u7981PS\uFF1B" }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "2.\u6211\u4EEC\u5C06\u5728\u4F60\u63D0\u4EA4\u8BA4\u8BC1\u4FE1\u606F\u540E\u768424\u5C0F\u65F6\uFF08\u4E0D\u5305\u542B\u8282\u5047\u65E5\uFF09\u5185\u5B8C\u6210\u5BA1\u6838\uFF0C\u5BA1\u6838\u7ED3\u679C\u5C06\u4F1A\u4EE5\u7CFB\u7EDF\u6D88\u606F\u7684\u5F62\u5F0F\u53D1\u9001\u7ED9\u4F60\uFF1B" + children: "2.\u6211\u4EEC\u5C06\u5728\u4F60\u63D0\u4EA4\u804C\u4E1A\u8BC1\u4FE1\u606F\u540E\u768424\u5C0F\u65F6\uFF08\u4E0D\u5305\u542B\u8282\u5047\u65E5\uFF09\u5185\u5B8C\u6210\u5BA1\u6838\uFF0C\u5BA1\u6838\u7ED3\u679C\u5C06\u4F1A\u4EE5\u7CFB\u7EDF\u6D88\u606F\u7684\u5F62\u5F0F\u53D1\u9001\u7ED9\u4F60\uFF1B" }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "3.\u5B9E\u540D\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u65E0\u6CD5\u5220\u9664\uFF0C\u8BF7\u8C28\u614E\u586B\u5199\uFF1B" + children: "3.\u804C\u4E1A\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u65E0\u6CD5\u5220\u9664\uFF0C\u8BF7\u8C28\u614E\u586B\u5199\uFF1B\u804C\u4E1A\u53D8\u66F4\u8BF7\u9009\u62E9\u91CD\u65B0\u8BA4\u8BC1\uFF1B" }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "4.\u5B9E\u540D\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u7CFB\u7EDF\u5C06\u81EA\u52A8\u53D1\u653E500\u4E2A\u91D1\u5E01\u4F5C\u4E3A\u5956\u52B1\uFF1B" + children: "4.\u804C\u4E1A\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u7CFB\u7EDF\u5C06\u81EA\u52A8\u53D1\u653E500\u4E2A\u91D1\u5E01\u4F5C\u4E3A\u5956\u52B1\uFF1B" }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { children: "5.\u6211\u4EEC\u4F1A\u786E\u4FDD\u4F60\u6240\u63D0\u4F9B\u7684\u4FE1\u606F\u5747\u5904\u4E8E\u4E25\u683C\u7684\u4FDD\u5BC6\u72B6\u6001\uFF0C\u4E0D\u4F1A\u6CC4\u9732\uFF1B" + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + children: ["6.\u5982\u5B58\u5728\u6076\u610F\u4E71\u586B\u5199\u59D3\u540D\uFF0C\u5B66\u53F7\uFF0C\u53CA\u4E0A\u4F20\u4E0E\u804C\u4E1A\u8BC1\u4EF6\u65E0\u5173\u56FE\u7247\u8005\uFF0C\u4E00\u7ECF\u53D1\u73B0\u5C06\u51BB\u7ED3", !(globalSetting !== null && globalSetting !== void 0 && (_globalSetting$settin = globalSetting.setting) !== null && _globalSetting$settin !== void 0 && _globalSetting$settin.is_local) && 'EduCoder', "\u8D26\u53F7\u3002"] }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "6.\u5982\u5B58\u5728\u6076\u610F\u4E71\u586B\u5199\u59D3\u540D\uFF0C\u8BC1\u4EF6\u53F7\uFF0C\u53CA\u4E0A\u4F20\u4E0E\u5B9E\u540D\u8BA4\u8BC1\u8BC1\u4EF6\u65E0\u5173\u56FE\u7247\u8005\uFF0C\u4E00\u7ECF\u53D1\u73B0\u5C06\u51BB\u7ED3EduCoder\u8D26\u53F7\u3002" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "7.\u63D0\u4EA4\u5B9E\u540D\u8BA4\u8BC1\u540E\u7CFB\u7EDF\u4F1A\u81EA\u52A8\u5C06\u72B6\u6001\u6539\u4E3A\u5DF2\u8BA4\u8BC1\uFF0C\u4F60\u5C06\u53EF\u4EE5\u4F53\u9A8C\u5E73\u53F0\u9700\u8981\u5B9E\u540D\u8BA4\u8BC1\u7684\u529F\u80FD\uFF1B\u5982\u679C\u5728\u8BA4\u8BC1\u540E\u7684\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u672A\u901A\u8FC7\u5BA1\u6838\uFF0C\u4F60\u5C06\u4E0D\u80FD\u7EE7\u7EED\u4F53\u9A8C\u9700\u8981\u8BA4\u8BC1\u7684\u529F\u80FD\u3002" + children: "7.\u975E\u8001\u5E08\u8EAB\u4EFD\u63D0\u4EA4\u804C\u4E1A\u8BA4\u8BC1\u540E\u7CFB\u7EDF\u4F1A\u81EA\u52A8\u5C06\u72B6\u6001\u6539\u4E3A\u5DF2\u8BA4\u8BC1\uFF0C\u4F60\u5C06\u53EF\u4EE5\u4F53\u9A8C\u5E73\u53F0\u9700\u8981\u804C\u4E1A\u8BA4\u8BC1\u7684\u529F\u80FD\uFF1B\u5982\u679C\u5728\u8BA4\u8BC1\u540E\u7684\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u672A\u901A\u8FC7\u5BA1\u6838\uFF0C\u4F60\u5C06\u4E0D\u80FD\u7EE7\u7EED\u4F53\u9A8C\u9700\u8981\u8BA4\u8BC1\u7684\u529F\u80FD\u3002" })] })] }) - }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(components_AppplySchoolModal, { + visible: visibleAppplySchool, + onClose: function onClose() { + return setVisibleAppplySchool(false); + }, + schoolName: formValue.school, + onSuccess: handleSchoolSuccess + }), /*#__PURE__*/(0,jsx_runtime.jsx)(components_AppplyDepartmentModal, { + visible: visibleAppplyDepartment, + onClose: function onClose() { + return setVisibleAppplyDepartment(false); + }, + schoolId: (_schoolList$find3 = schoolList.find(function (item) { + return item.name === formValue.school; + })) === null || _schoolList$find3 === void 0 ? void 0 : _schoolList$find3.id, + schoolName: formValue.school, + departmentName: formValue.department, + onSuccess: function onSuccess(departmentName) { + return handleSetDepartment(formValue.school, departmentName); + } + })] }); }; -/* harmony default export */ var component_RealNameAuthModal = ((0,_umi_production_exports.connect)(function (_ref4) { - var user = _ref4.user, - account = _ref4.account, - loading = _ref4.loading, - globalSetting = _ref4.globalSetting; +/* harmony default export */ var component_ProfessionalAuthModal = ((0,_umi_production_exports.connect)(function (_ref8) { + var user = _ref8.user, + account = _ref8.account, + loading = _ref8.loading, + globalSetting = _ref8.globalSetting; return { user: user, account: account, globalSetting: globalSetting, loading: loading.effects }; -})(RealNameAuthModal)); -// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/style/index.js + 1 modules -var auto_complete_style = __webpack_require__(19070); -// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/index.js -var auto_complete = __webpack_require__(49288); -// EXTERNAL MODULE: ./src/assets/images/account/job.png -var job = __webpack_require__(51941); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplyDepartmentModal/index.less?modules -// extracted by mini-css-extract-plugin -/* harmony default export */ var AppplyDepartmentModalmodules = ({"flexRow":"flexRow___LQKDI","flexColumn":"flexColumn___NLClE","formWrap":"formWrap___mGWio","example":"example___gPghw","footerWrap":"footerWrap___qcHQ4"}); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplyDepartmentModal/index.tsx - - - - - - +})(ProfessionalAuthModal)); +// EXTERNAL MODULE: ./node_modules/md5/md5.js +var md5 = __webpack_require__(2568); +var md5_default = /*#__PURE__*/__webpack_require__.n(md5); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/UpdataPhone.tsx @@ -5640,1021 +4947,2286 @@ var job = __webpack_require__(51941); -var AppplyDepartmentModal_excluded = ["account", "globalSetting", "loading", "dispatch", "schoolName", "departmentName", "visible", "onClose", "onSuccess"]; +//修改手机号or邮箱地址 -var TextArea = input/* default.TextArea */.Z.TextArea; -var AppplyDepartmentModal = function AppplyDepartmentModal(_ref) { - var account = _ref.account, - globalSetting = _ref.globalSetting, - loading = _ref.loading, +//type 3 手机 4邮箱 +function UpdataPhone(_ref) { + var type = _ref.type, dispatch = _ref.dispatch, - schoolName = _ref.schoolName, - departmentName = _ref.departmentName, - visible = _ref.visible, - _ref$onClose = _ref.onClose, - onClose = _ref$onClose === void 0 ? function () {} : _ref$onClose, - _ref$onSuccess = _ref.onSuccess, - onSuccess = _ref$onSuccess === void 0 ? function () {} : _ref$onSuccess, - props = objectWithoutProperties_default()(_ref, AppplyDepartmentModal_excluded); - var _Form$useForm = es_form/* default.useForm */.Z.useForm(), - _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), - form = _Form$useForm2[0]; - var schoolId = (0,react.useRef)(); - (0,react.useEffect)(function () { - schoolId.current = props.schoolId; - }, [props.schoolId]); - (0,react.useEffect)(function () { - form.setFieldsValue({ - department: departmentName - }); - }, [departmentName]); - var handleFinish = /*#__PURE__*/function () { - var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) { - var _ref3, department, remarks, res; + userid = _ref.userid, + isshow = _ref.isshow, + setPhoneshow = _ref.setPhoneshow, + setEmailshow = _ref.setEmailshow; + var opens = "79e33abd4b6588941ab7622aed1e67e8"; + var _useState = (0,react.useState)(''), + _useState2 = slicedToArray_default()(_useState, 2), + login = _useState2[0], + setLogin = _useState2[1]; + var _useState3 = (0,react.useState)('获取验证码'), + _useState4 = slicedToArray_default()(_useState3, 2), + yzm = _useState4[0], + setYzm = _useState4[1]; + var _useState5 = (0,react.useState)(60), + _useState6 = slicedToArray_default()(_useState5, 2), + seconds = _useState6[0], + setseconds = _useState6[1]; + var _useState7 = (0,react.useState)(false), + _useState8 = slicedToArray_default()(_useState7, 2), + secondsFlag = _useState8[0], + setsecondsFlag = _useState8[1]; + var _useState9 = (0,react.useState)(''), + _useState10 = slicedToArray_default()(_useState9, 2), + code = _useState10[0], + setCode = _useState10[1]; + //获取验证码 + function getversion() { + return _getversion.apply(this, arguments); + } // 获取验证码倒计时 + function _getversion() { + _getversion = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { + var data; return regeneratorRuntime_default()().wrap(function _callee$(_context) { while (1) switch (_context.prev = _context.next) { case 0: - _ref3 = values || {}, department = _ref3.department, remarks = _ref3.remarks; - _context.next = 3; + if (login) { + _context.next = 3; + break; + } + if (type === 3) { + message/* default.info */.ZP.info('手机号不能为空'); + } else { + message/* default.info */.ZP.info('邮箱地址不能为空'); + } + return _context.abrupt("return"); + case 3: + _context.next = 5; return dispatch({ - type: 'account/appplyDepartment', + type: 'competitions/getVerification', payload: { - school_id: schoolId.current, - name: department, - remarks: remarks + type: type, + login: login, + smscode: md5_default()(opens + login) + //user_id:39416 } }); - case 3: - res = _context.sent; - onClose(); - if (res) { - message/* default.success */.ZP.success("新增院系/部门成功!"); - onSuccess(department); + case 5: + data = _context.sent; + if (data.status === 1) { + message/* default.info */.ZP.info('获取验证码成功'); + remainTime(); + setsecondsFlag(true); } - case 6: + case 7: case "end": return _context.stop(); } }, _callee); })); - return function handleFinish(_x) { - return _ref2.apply(this, arguments); - }; - }(); - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_modal/* default */.Z, { - centered: true, - keyboard: false, - closable: false, - destroyOnClose: true, - open: visible, - title: "\u7533\u8BF7\u6DFB\u52A0\u5B50\u5355\u4F4D\u540D\u79F0", - width: "600px", - footer: null, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { - className: AppplyDepartmentModalmodules.formWrap, - form: form, - labelCol: { - span: 4 - }, - wrapperCol: { - span: 20 - }, - onFinish: handleFinish, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u5355\u4F4D\u540D\u79F0\uFF1A", - children: schoolName - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u90E8\u95E8\u540D\u79F0\uFF1A", - name: "department", - rules: [{ - required: true, - message: '请输入部门或者学院名称' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - placeholder: "\u8BF7\u8F93\u5165\u90E8\u95E8\u6216\u8005\u5B66\u9662\u540D\u79F0" - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u8BF4\u660E\uFF1A", - name: "remarks", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(TextArea, { - placeholder: "\u518D\u6B21\u8BF4\u660E\u7279\u522B\u60C5\u51B5\uFF08\u9009\u586B\uFF09" - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: AppplyDepartmentModalmodules.footerWrap, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - className: "mr5", - size: "large", - onClick: function onClick() { - onClose(); - }, - children: "\u53D6\u6D88" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - size: "large", - type: "primary", - htmlType: "submit", - loading: loading['account/appplyDepartment'], - children: "\u4FDD\u5B58" - })] - }) - })] - }) - }); -}; -/* harmony default export */ var components_AppplyDepartmentModal = ((0,_umi_production_exports.connect)(function (_ref4) { - var account = _ref4.account, - loading = _ref4.loading, - globalSetting = _ref4.globalSetting; - return { - account: account, - globalSetting: globalSetting, - loading: loading.effects - }; -})(AppplyDepartmentModal)); -// EXTERNAL MODULE: ./node_modules/antd/es/cascader/style/index.js + 1 modules -var cascader_style = __webpack_require__(95847); -// EXTERNAL MODULE: ./node_modules/antd/es/cascader/index.js + 17 modules -var cascader = __webpack_require__(45239); -// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js -var CheckCircleFilled = __webpack_require__(50675); -// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js -var CloseCircleFilled = __webpack_require__(38900); -// EXTERNAL MODULE: ./src/utils/cityData.ts -var cityData = __webpack_require__(12325); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplySchoolModal/index.less?modules -// extracted by mini-css-extract-plugin -/* harmony default export */ var AppplySchoolModalmodules = ({"flexRow":"flexRow___jGYtM","flexColumn":"flexColumn___NPMB3","formWrap":"formWrap___vwH9N","example":"example____BmJC","footerWrap":"footerWrap___lp1L0"}); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplySchoolModal/index.tsx - - - - - - - - - - - - - - - - -var AppplySchoolModal_excluded = ["account", "globalSetting", "loading", "dispatch", "schoolName", "visible", "onClose", "onSuccess"]; - - - - - - - -var filter = function filter(inputValue, path) { - return path.some(function (option) { - return option.label.toLowerCase().indexOf(inputValue.toLowerCase()) > -1; - }); -}; -var AppplySchoolModal_TextArea = input/* default.TextArea */.Z.TextArea; -var AppplySchoolModal = function AppplySchoolModal(_ref) { - var account = _ref.account, - globalSetting = _ref.globalSetting, - loading = _ref.loading, - dispatch = _ref.dispatch, - schoolName = _ref.schoolName, - visible = _ref.visible, - _ref$onClose = _ref.onClose, - onClose = _ref$onClose === void 0 ? function () {} : _ref$onClose, - _ref$onSuccess = _ref.onSuccess, - onSuccess = _ref$onSuccess === void 0 ? function () {} : _ref$onSuccess, - props = objectWithoutProperties_default()(_ref, AppplySchoolModal_excluded); - var _Form$useForm = es_form/* default.useForm */.Z.useForm(), - _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), - form = _Form$useForm2[0]; - (0,react.useEffect)(function () { - form.setFieldsValue({ - name: schoolName - }); - }, [schoolName]); - var handleFinish = /*#__PURE__*/function () { - var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) { - var _ref3, name, _ref3$city, city, address, remarks, res; - return regeneratorRuntime_default()().wrap(function _callee$(_context) { - while (1) switch (_context.prev = _context.next) { + return _getversion.apply(this, arguments); + } + function remainTime() { + setseconds(60); + var aa = setInterval(function () { + --seconds; + if (seconds > -1) { + setseconds(seconds); + } else { + clearInterval(aa); + setsecondsFlag(false); + } + }, 1000); + } + //绑定手机号 + function PhoneBind() { + return _PhoneBind.apply(this, arguments); + } //绑定邮箱 + function _PhoneBind() { + _PhoneBind = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { + var data; + return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { + while (1) switch (_context2.prev = _context2.next) { case 0: - _ref3 = values || {}, name = _ref3.name, _ref3$city = _ref3.city, city = _ref3$city === void 0 ? [] : _ref3$city, address = _ref3.address, remarks = _ref3.remarks; - _context.next = 3; + _context2.next = 2; return dispatch({ - type: 'account/appplySchool', + type: 'competitions/PhoneBind', payload: { - name: name, - province: city[0], - city: city[1], - address: address, - remarks: remarks + userid: userid, + code: code, + phone: login } }); - case 3: - res = _context.sent; - onClose(); - if (res) { - message/* default.success */.ZP.success("新增学校/单位成功!"); - onSuccess(name); - } - case 6: + case 2: + data = _context2.sent; + if (data.status === 0) { + message/* default.info */.ZP.info('绑定成功'); + setPhoneshow("none"); + } + case 4: case "end": - return _context.stop(); + return _context2.stop(); } - }, _callee); + }, _callee2); })); - return function handleFinish(_x) { - return _ref2.apply(this, arguments); - }; - }(); - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_modal/* default */.Z, { - centered: true, - keyboard: false, - closable: false, - destroyOnClose: true, - open: visible, - title: "\u7533\u8BF7\u6DFB\u52A0\u5355\u4F4D\u540D\u79F0", - width: "600px", - footer: null, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { - className: AppplySchoolModalmodules.formWrap, - form: form, - labelCol: { - span: 4 + return _PhoneBind.apply(this, arguments); + } + function EmailBind() { + return _EmailBind.apply(this, arguments); + } + function _EmailBind() { + _EmailBind = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() { + var data; + return regeneratorRuntime_default()().wrap(function _callee3$(_context3) { + while (1) switch (_context3.prev = _context3.next) { + case 0: + _context3.next = 2; + return dispatch({ + type: 'competitions/EmailBind', + payload: { + userid: userid, + code: code, + email: login + } + }); + case 2: + data = _context3.sent; + if (data.status === 0) { + message/* default.info */.ZP.info('绑定成功'); + setEmailshow('none'); + } + case 4: + case "end": + return _context3.stop(); + } + }, _callee3); + })); + return _EmailBind.apply(this, arguments); + } + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + display: isshow + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + value: login, + onChange: function onChange(e) { + return setLogin(e.target.value); + }, + placeholder: type === 3 ? '请输入手机号' : '请输入邮箱地址', + style: { + width: '370px' + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + value: code, + onChange: function onChange(e) { + return setCode(e.target.value); + }, + placeholder: type === 3 ? '请输入手机获取的验证码' : '请输入邮箱获取的验证码', + style: { + width: '250px' + } + }) + }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + disabled: secondsFlag, + onClick: function onClick() { + return getversion(); }, - wrapperCol: { - span: 20 + type: "primary", + style: { + marginLeft: '20px', + width: '100px' }, - onFinish: handleFinish, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u5355\u4F4D\u5168\u79F0\uFF1A", - name: "name", - rules: [{ - required: true, - message: '请输入学校或工作单位' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - placeholder: "\u5B66\u6821\u6216\u5DE5\u4F5C\u5355\u4F4D" - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: "".concat(AppplySchoolModalmodules.flexRow, " ").concat(AppplySchoolModalmodules.example), - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { - children: "\u793A\u4F8B\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: AppplySchoolModalmodules.flexColumn, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(CheckCircleFilled/* default */.Z, { - style: { - color: "rgb(82, 196, 26)" - } - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "font14 ml5", - children: "\u6B63\u786E\u793A\u4F8B\uFF1A\u6570\u636E\u7ED3\u6784" - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(CloseCircleFilled/* default */.Z, { - style: { - color: "red" - } - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "font14 ml5", - children: "\u9519\u8BEF\u793A\u4F8B\uFF1A\u6570\u636E\u7ED3\u67842019\u6625" - })] - })] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u5730\u533A\uFF1A", - name: "city", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(cascader/* default */.Z, { - allowClear: true, - size: "large", - options: cityData/* CityData */.P, - placeholder: "\u8BF7\u9009\u62E9\u6240\u5728\u5730", - showSearch: { - matchInputWidth: true, - filter: filter + children: secondsFlag ? "\u91CD\u65B0\u53D1\u9001".concat(seconds, "s") : yzm + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + style: { + marginTop: '30px', + width: '370px', + textAlign: 'center' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + type: "primary", + style: { + marginRight: '15px' + }, + onClick: function onClick() { + if (!code) { + message/* default.info */.ZP.info('验证码不能为空'); + return; } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u8BE6\u7EC6\u5730\u5740\uFF1A", - name: "address", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - placeholder: "\u8BF7\u586B\u5199\u5B8C\u6574\u7684\u5730\u5740\u4FE1\u606F" - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u8BF4\u660E\uFF1A", - name: "remarks", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(AppplySchoolModal_TextArea, { - placeholder: "\u518D\u6B21\u8BF4\u660E\u7279\u522B\u60C5\u51B5\uFF08\u9009\u586B\uFF09" - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: AppplySchoolModalmodules.footerWrap, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - className: "mr5", - size: "large", - onClick: function onClick() { - onClose(); - }, - children: "\u53D6\u6D88" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - size: "large", - type: "primary", - htmlType: "submit", - loading: loading['account/appplySchool'], - children: "\u4FDD\u5B58" - })] - }) + if (type === 3) { + PhoneBind(); + } else { + EmailBind(); + } + }, + children: "\u786E\u8BA4" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + style: { + marginLeft: '20px' + }, + onClick: function onClick() { + if (type === 3) { + setPhoneshow("none"); + } else { + setEmailshow('none'); + } + }, + children: "\u53D6\u6D88" })] - }) + })] }); -}; -/* harmony default export */ var components_AppplySchoolModal = ((0,_umi_production_exports.connect)(function (_ref4) { - var account = _ref4.account, - loading = _ref4.loading, - globalSetting = _ref4.globalSetting; - return { - account: account, - globalSetting: globalSetting, - loading: loading.effects - }; -})(AppplySchoolModal)); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/ProfessionalAuthModal.tsx - - - - - - - - - - - - - - - - - - - - - +} +/* harmony default export */ var Detail_UpdataPhone = (UpdataPhone); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Addleader.tsx -var ProfessionalAuthModal_excluded = ["user", "account", "globalSetting", "loading", "dispatch", "Scoid"]; +//填写银行卡号等信息 -var ProfessionalAuthModal_Option = es_select/* default.Option */.Z.Option; -var ProfessionalAuthModal_Dragger = upload/* default.Dragger */.Z.Dragger; -var ProfessionalAuthModal = function ProfessionalAuthModal(_ref) { - var _globalSetting$settin, _schoolList$find3; - var user = _ref.user, - account = _ref.account, - globalSetting = _ref.globalSetting, - loading = _ref.loading, - dispatch = _ref.dispatch, - Scoid = _ref.Scoid, - props = objectWithoutProperties_default()(_ref, ProfessionalAuthModal_excluded); +function Addleader(_ref) { + var dispatch = _ref.dispatch, + userid = _ref.userid; + var tailLayout = { + wrapperCol: { + offset: 3, + span: 21 + } + }; var _Form$useForm = es_form/* default.useForm */.Z.useForm(), _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), form = _Form$useForm2[0]; - var _useState = (0,react.useState)({}), + var _useParams = (0,_umi_production_exports.useParams)(), + identifier = _useParams.identifier; + return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + style: { + width: '500px' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { + form: form, + name: "basic", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, { + label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + style: { + width: "30px" + }, + children: "\u5F00\u6237\u884C" + }), + name: "bank", + rules: [{ + required: true, + message: '请输入开户行' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {}) + })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, { + label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + style: { + width: "30px" + }, + children: "\u652F\u884C" + }), + name: "second_bank", + rules: [{ + required: true, + message: '请输入支行' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {}) + })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, { + label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + style: { + width: "30px" + }, + children: "\u8D26\u53F7" + }), + name: "card_no", + rules: [{ + required: true, + message: '请输入账号' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {}) + })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + type: "primary", + htmlType: "submit", + onClick: /*#__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: + form.validateFields().then( /*#__PURE__*/function () { + var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(vaule) { + var data; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + _context.next = 2; + return dispatch({ + type: 'competitions/setleader', + payload: objectSpread2_default()({ + identifier: identifier, + user_id: userid + }, vaule) + }); + case 2: + data = _context.sent; + if (data.status === 0) { + message/* default.info */.ZP.info('提交成功'); + } + case 4: + case "end": + return _context.stop(); + } + }, _callee); + })); + return function (_x) { + return _ref3.apply(this, arguments); + }; + }()); + case 1: + case "end": + return _context2.stop(); + } + }, _callee2); + })), + children: "\u63D0\u4EA4" + }) + })] + }) + }); +} +/* harmony default export */ var Detail_Addleader = (Addleader); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/PerfectuserInfon.tsx + + + + + + + + + + + +//完善个人信息 + + + + + + + + +var identityMap = { + "teacher": "教师", + "student": "学生", + "professional": "专业人士" +}; +function PerfectUser(_ref) { + var _Prize$teams$, _Prize$teams$$bank_ac, _Prize$teams$2, _Prize$teams$2$bank_a, _Prize$teams$3, _Prize$teams$3$bank_a, _Prize$teams$4, _Prize$teams$4$bank_a; + var Prize = _ref.Prize, + Accounts = _ref.Accounts, + dispatch = _ref.dispatch, + userid = _ref.userid; + var _useState = (0,react.useState)('none'), _useState2 = slicedToArray_default()(_useState, 2), - formValue = _useState2[0], - setFormValue = _useState2[1]; - var _useState3 = (0,react.useState)([]), + phoneshow = _useState2[0], + setPhoneshow = _useState2[1]; + var _useState3 = (0,react.useState)('none'), _useState4 = slicedToArray_default()(_useState3, 2), - schoolList = _useState4[0], - setSchoolList = _useState4[1]; - var _useState5 = (0,react.useState)([]), - _useState6 = slicedToArray_default()(_useState5, 2), - filterSchoolList = _useState6[0], - setFilterSchoolList = _useState6[1]; - var _useState7 = (0,react.useState)([]), - _useState8 = slicedToArray_default()(_useState7, 2), - departmentList = _useState8[0], - setDepartmentList = _useState8[1]; - var _useState9 = (0,react.useState)([]), - _useState10 = slicedToArray_default()(_useState9, 2), - filterDepartmentList = _useState10[0], - setFilterDepartmentList = _useState10[1]; - var _useState11 = (0,react.useState)(), - _useState12 = slicedToArray_default()(_useState11, 2), - image = _useState12[0], - setImage = _useState12[1]; - var _useState13 = (0,react.useState)(), - _useState14 = slicedToArray_default()(_useState13, 2), - fileId = _useState14[0], - setFileId = _useState14[1]; - var _useState15 = (0,react.useState)(), - _useState16 = slicedToArray_default()(_useState15, 2), - isLoading = _useState16[0], - setIsLoading = _useState16[1]; - var _useState17 = (0,react.useState)(), - _useState18 = slicedToArray_default()(_useState17, 2), - visibleAppplySchool = _useState18[0], - setVisibleAppplySchool = _useState18[1]; - var _useState19 = (0,react.useState)(), - _useState20 = slicedToArray_default()(_useState19, 2), - visibleAppplyDepartment = _useState20[0], - setVisibleAppplyDepartment = _useState20[1]; - ; - (0,react.useEffect)(function () { - getSchoolOption(); - }, []); - (0,react.useEffect)(function () { - asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { - var res; + emailshow = _useState4[0], + setEmailshow = _useState4[1]; + function update(_x) { + return _update.apply(this, arguments); + } + function _update() { + _update = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(type) { + var data; return regeneratorRuntime_default()().wrap(function _callee$(_context) { while (1) switch (_context.prev = _context.next) { case 0: - if (Scoid) { - _context.next = 2; + if (!(type === "1")) { + _context.next = 6; break; } - return _context.abrupt("return"); - case 2: - _context.next = 4; - return getDepartmentOption(Scoid); - case 4: - res = _context.sent; - setDepartmentList(res === null || res === void 0 ? void 0 : res.departments); + _context.next = 3; + return dispatch({ + type: 'competitions/Authentication' + }); + case 3: + data = _context.sent; + _context.next = 9; + break; case 6: - case "end": - return _context.stop(); - } - }, _callee); - }))(); - }, [Scoid]); - var getSchoolOption = /*#__PURE__*/function () { - var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { - var res; - return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { - while (1) switch (_context2.prev = _context2.next) { - case 0: - _context2.next = 2; + _context.next = 8; return dispatch({ - type: 'account/getSchoolOption' + type: 'competitions/Professional' }); - case 2: - res = _context2.sent; - setSchoolList(res === null || res === void 0 ? void 0 : res.schools); - case 4: + case 8: + data = _context.sent; + case 9: + if (data.status === 0) { + message/* default.info */.ZP.info('撤销成功'); + } + case 10: case "end": - return _context2.stop(); + return _context.stop(); } - }, _callee2); + }, _callee); })); - return function getSchoolOption() { - return _ref3.apply(this, arguments); - }; - }(); - var getDepartmentOption = function getDepartmentOption(schoolId) { - return dispatch({ - type: 'account/getDepartmentOption', - payload: { - id: schoolId - } - }); - }; - (0,react.useEffect)(function () { - if (!account.basicInfo) { - return; - } - var basicInfo = account.basicInfo; - var formData = { - identity: basicInfo.identity, - school: basicInfo.school_name, - department: basicInfo.department_name, - studentNo: basicInfo.student_id, - jobTitle: basicInfo.identity == "teacher" ? basicInfo.technical_title : "教授", - manager: basicInfo.identity == "professional" ? basicInfo.technical_title : "企业管理者" - }; - form.setFieldsValue(formData); - setFormValue(formData); - }, [account.basicInfo]); - var handleApplySchool = function handleApplySchool() { - setVisibleAppplySchool(true); - }; - var handleApplyDepartment = function handleApplyDepartment() { - if (!schoolList.find(function (item) { - return item.name === formValue.school; - })) { - message/* default.info */.ZP.info('请先选择正确的单位或者学校!'); - return; - } - setVisibleAppplyDepartment(true); - }; - var handleValuesChange = function handleValuesChange(changedValues) { - setFormValue(objectSpread2_default()({}, form.getFieldsValue())); - if ('school' in changedValues) { - setFilterSchoolList(schoolList.filter(function (item) { - return item.name.includes(changedValues.school); - })); - var findSchoolId = (schoolList.find(function (item) { - return item.name === changedValues.school; - }) || {}).id; - if (findSchoolId) { - handleSetDepartment(changedValues.school); - } else { - form.setFieldsValue({ - department: '' - }); - setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), { - school: changedValues.school, - department: '' - })); - } - } - }; - var handleSetDepartment = /*#__PURE__*/function () { - var _ref4 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3(school, departmentName) { - var _schoolList$find, _res$departments, _res$departments$; - var findSchoolId, res, name; - return regeneratorRuntime_default()().wrap(function _callee3$(_context3) { - while (1) switch (_context3.prev = _context3.next) { - case 0: - findSchoolId = (_schoolList$find = schoolList.find(function (item) { - return item.name === school; - })) === null || _schoolList$find === void 0 ? void 0 : _schoolList$find.id; - _context3.next = 3; - return getDepartmentOption(findSchoolId); - case 3: - _context3.t0 = _context3.sent; - if (_context3.t0) { - _context3.next = 6; - break; - } - _context3.t0 = {}; - case 6: - res = _context3.t0; - setDepartmentList(res === null || res === void 0 ? void 0 : res.departments); - name = departmentName || (res === null || res === void 0 ? void 0 : (_res$departments = res.departments) === null || _res$departments === void 0 ? void 0 : (_res$departments$ = _res$departments[0]) === null || _res$departments$ === void 0 ? void 0 : _res$departments$.name); - form.setFieldsValue({ - department: name - }); - setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), { - school: school, - department: name - })); - case 11: - case "end": - return _context3.stop(); - } - }, _callee3); - })); - return function handleSetDepartment(_x, _x2) { - return _ref4.apply(this, arguments); - }; - }(); - var handleSchoolSuccess = /*#__PURE__*/function () { - var _ref5 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4(schoolName) { - return regeneratorRuntime_default()().wrap(function _callee4$(_context4) { - while (1) switch (_context4.prev = _context4.next) { - case 0: - _context4.next = 2; - return getSchoolOption(); - case 2: - form.setFieldsValue({ - school: schoolName, - department: '' - }); - setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), { - school: schoolName, - department: '' - })); - case 4: - case "end": - return _context4.stop(); - } - }, _callee4); - })); - return function handleSchoolSuccess(_x3) { - return _ref5.apply(this, arguments); - }; - }(); - var handleUploadChange = function handleUploadChange(info) { - if (info.file.status === 'uploading') { - setIsLoading(true); - return; - } - if (info.file.status === 'done') { - var _info$file$response; - console.log(info.file, info.file.response); - setFileId((_info$file$response = info.file.response) === null || _info$file$response === void 0 ? void 0 : _info$file$response.id); - (0,util/* getBase64 */.y3)(info.file.originFileObj, function (base64Img) { - setImage(base64Img); - setIsLoading(false); - }); - } - }; - var handleFinish = /*#__PURE__*/function () { - var _ref6 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5(values) { - var _schoolList$find2, _departmentList$find, _account$basicInfo, _user$userInfo; - var _ref7, school, department, identity, studentNo, jobTitle, manager, school_id, department_id, extra, res, _user$userInfo2; - return regeneratorRuntime_default()().wrap(function _callee5$(_context5) { - while (1) switch (_context5.prev = _context5.next) { - case 0: - _ref7 = values || {}, school = _ref7.school, department = _ref7.department, identity = _ref7.identity, studentNo = _ref7.studentNo, jobTitle = _ref7.jobTitle, manager = _ref7.manager; - if (image) { - _context5.next = 4; - break; - } - message/* default.info */.ZP.info('请先上传照片!'); - return _context5.abrupt("return"); - case 4: - school_id = (_schoolList$find2 = schoolList.find(function (item) { - return item.name === school; - })) === null || _schoolList$find2 === void 0 ? void 0 : _schoolList$find2.id; - department_id = (_departmentList$find = departmentList.find(function (item) { - return item.name === department; - })) === null || _departmentList$find === void 0 ? void 0 : _departmentList$find.id; - if (identity === 'student') { - extra = studentNo; - } else if (identity === 'teacher') { - extra = jobTitle; - } else { - extra = manager; - } - _context5.next = 9; - return dispatch({ - type: 'account/applyProfessionalAuth', - payload: { - id: ((_account$basicInfo = account.basicInfo) === null || _account$basicInfo === void 0 ? void 0 : _account$basicInfo.id) || ((_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login), - school_id: school_id, - department_id: department_id, - identity: identity, - extra: extra, - attachment_ids: [fileId] - } - }); - case 9: - res = _context5.sent; - handleClose(); - if (res) { - message/* default.info */.ZP.info("申请已提交,请等待审核!"); + return _update.apply(this, arguments); + } + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "middle", + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "c-red", + children: "*" + }), "\u5B9E\u540D\u4FE1\u606F"] + }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + flex: 1, + className: "ml20", + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "middle", + justify: "space-between", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + style: { + marginLeft: '20px' + }, + children: "\u901A\u8FC7\u5B9E\u540D\u8BA4\u8BC1\u540E\u624D\u80FD\u83B7\u5F97\u8BC1\u4E66" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + className: Detailmodules/* default.PerfectBut */.Z.PerfectBut, + onClick: function onClick() { dispatch({ - type: 'account/getBasicInfo', + type: 'account/setActionTabs', payload: { - login: (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.login + key: 'Account-RealNameAuth' } }); - } - case 12: - case "end": - return _context5.stop(); - } - }, _callee5); - })); - return function handleFinish(_x4) { - return _ref6.apply(this, arguments); + }, + children: "\u7ACB\u5373\u8BA4\u8BC1" + })] + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.PerfectCent */.Z.PerfectCent, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u59D3\u540D" + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, { + className: "ml20", + children: [Accounts === null || Accounts === void 0 ? void 0 : Accounts.name, (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? null : (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "applying" ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: "\u5F85\u5BA1\u6838" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + type: "primary", + onClick: function onClick() { + return update("1"); + }, + ghost: true, + style: { + marginLeft: '20px' + }, + children: "\u64A4\u9500\u8BA4\u8BC1" + })] + }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#6ec76e' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-wancheng font-14" + }), " \u5DF2\u8BA4\u8BC1"] + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + className: "mt20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u6027\u522B" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.gender) === 0 ? '男' : '女' + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "middle", + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "c-red", + children: "*" + }), "\u804C\u4E1A\u4FE1\u606F"] + }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + flex: 1, + className: "ml20", + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "middle", + justify: "space-between", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + style: { + marginLeft: '20px' + }, + children: "\u901A\u8FC7\u5B9E\u540D\u8BA4\u8BC1\u540E\u624D\u80FD\u83B7\u5F97\u8BC1\u4E66" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + className: Detailmodules/* default.PerfectBut */.Z.PerfectBut, + onClick: function onClick() { + dispatch({ + type: 'account/setActionTabs', + payload: { + key: 'Account-ProfessionalAuth' + } + }); + }, + children: "\u7ACB\u5373\u8BA4\u8BC1" + })] + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.PerfectCent */.Z.PerfectCent, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u804C\u4E1A" + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, { + className: "ml20", + children: [Accounts && Accounts.identity && identityMap[Accounts.identity], (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? null : (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "applying" ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: "\u5F85\u5BA1\u6838" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + type: "primary", + onClick: function onClick() { + return update("2"); + }, + ghost: true, + style: { + marginLeft: '20px' + }, + children: "\u64A4\u9500\u8BA4\u8BC1" + })] + }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#6ec76e' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-wancheng font-14" + }), " \u5DF2\u8BA4\u8BC1", /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + type: "primary", + onClick: function onClick() { + dispatch({ + type: 'account/setActionTabs', + payload: { + key: 'Account-ProfessionalAuth' + } + }); + }, + ghost: true, + style: { + marginLeft: '20px' + }, + children: "\u91CD\u65B0\u8BA4\u8BC1" + })] + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + className: "mt20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u5B66\u53F7" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.student_id) || '--' + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + className: "mt20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u5B66\u6821" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.school_name) || '--' + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + className: "mt20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u9662\u7CFB" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.department_name) || '--' + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "c-red", + children: "*" + }), "\u8054\u7CFB\u65B9\u5F0F"] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.PerfectCent */.Z.PerfectCent, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u624B\u673A\u53F7" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + style: { + width: '150px' + }, + children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.phone) || '--' + }), phoneshow === 'none' && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + type: "link", + className: "ml20", + style: { + color: '#165DFF' + }, + onClick: function onClick() { + setPhoneshow('block'); + }, + children: "\u66F4\u6362" + })] + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: "mt10", + style: { + marginLeft: "74px" + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_UpdataPhone, { + type: 3, + dispatch: dispatch, + userid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.id, + isshow: phoneshow, + setPhoneshow: setPhoneshow, + setEmailshow: setEmailshow + }) + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + className: "mt20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "Email" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + style: { + width: '150px' + }, + children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.mail) || '--' + }), emailshow === 'none' && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + type: "link", + className: "ml20", + style: { + color: '#165DFF' + }, + onClick: function onClick() { + setEmailshow('block'); + }, + children: "\u66F4\u6362" + })] + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: "mt10", + style: { + marginLeft: "74px" + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_UpdataPhone, { + type: 4, + dispatch: dispatch, + userid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.id, + isshow: emailshow, + setEmailshow: setEmailshow, + setPhoneshow: setPhoneshow + }) + })] + }), Prize !== null && Prize !== void 0 && Prize.leader && Prize !== null && Prize !== void 0 && Prize.teams && Prize !== null && Prize !== void 0 && (_Prize$teams$ = Prize.teams[0]) !== null && _Prize$teams$ !== void 0 && (_Prize$teams$$bank_ac = _Prize$teams$.bank_account) !== null && _Prize$teams$$bank_ac !== void 0 && _Prize$teams$$bank_ac.bank ? /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "middle", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + children: "\u7B7E/\u9886/\u5F00\u6237\u884C\u53CA\u94F6\u884C\u5361\u53F7" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + style: { + fontSize: '12px' + }, + children: "\u4E3A\u4FDD\u969C\u5956\u91D1\u7684\u53CA\u65F6\u53D1\u653E\uFF0C\u8BF7\u961F\u957F\u5982\u5B9E\u586B\u5199\u4F60\u540D\u4E0B\u7684\u94F6\u884C\u5361\u4FE1\u606F" + })] + }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "middle", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + children: "\u7B7E/\u9886/\u5F00\u6237\u884C\u53CA\u94F6\u884C\u5361\u53F7" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + style: { + fontSize: '12px' + }, + children: "\u4E3A\u4FDD\u969C\u5956\u91D1\u7684\u53CA\u65F6\u53D1\u653E\uFF0C\u8BF7\u961F\u957F\u5982\u5B9E\u586B\u5199\u4F60\u540D\u4E0B\u7684\u94F6\u884C\u5361\u4FE1\u606F" + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_Addleader, { + dispatch: dispatch, + userid: userid + })] + }), (Prize === null || Prize === void 0 ? void 0 : Prize.leader) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.PerfectCent */.Z.PerfectCent, + style: { + border: 0 + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u5F00\u6237\u884C" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$2 = Prize.teams[0]) === null || _Prize$teams$2 === void 0 ? void 0 : (_Prize$teams$2$bank_a = _Prize$teams$2.bank_account) === null || _Prize$teams$2$bank_a === void 0 ? void 0 : _Prize$teams$2$bank_a.bank) || '--' + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + className: "mt20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u652F\u884C" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$3 = Prize.teams[0]) === null || _Prize$teams$3 === void 0 ? void 0 : (_Prize$teams$3$bank_a = _Prize$teams$3.bank_account) === null || _Prize$teams$3$bank_a === void 0 ? void 0 : _Prize$teams$3$bank_a.second_bank) || '--' + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + className: "mt20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName, + children: "\u8D26\u53F7" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + className: "ml20", + children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$4 = Prize.teams[0]) === null || _Prize$teams$4 === void 0 ? void 0 : (_Prize$teams$4$bank_a = _Prize$teams$4.bank_account) === null || _Prize$teams$4$bank_a === void 0 ? void 0 : _Prize$teams$4$bank_a.card_no) || '--' + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(component_ProfessionalAuthModal, { + Scoid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.school_id + }), /*#__PURE__*/(0,jsx_runtime.jsx)(component_RealNameAuthModal, {})] + }); +} +/* harmony default export */ var PerfectuserInfon = (PerfectUser); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/AwardPdf.less?modules +// extracted by mini-css-extract-plugin +/* harmony default export */ var AwardPdfmodules = ({"scoreByBlankRadio":"scoreByBlankRadio____FOPE"}); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/AwardPdf.tsx + + + + +//获奖证书 + + + + + + + +var Awardpdf = function Awardpdf(_ref) { + var Prize = _ref.Prize, + Accounts = _ref.Accounts, + getAccounts = _ref.getAccounts, + dispatch = _ref.dispatch, + userid = _ref.userid; + var _useState = (0,react.useState)("DownPdf"), + _useState2 = slicedToArray_default()(_useState, 2), + meuType = _useState2[0], + setMeutype = _useState2[1]; + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + margin: "15px 0" + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default.Group */.ZP.Group, { + optionType: "button", + className: AwardPdfmodules.scoreByBlankRadio, + options: [{ + label: '获奖证书下载', + value: 'DownPdf' + }, { + label: '完善个人信息', + value: 'Perfect' + }], + value: meuType, + onChange: function onChange(e) { + setMeutype(e.target.value); + } + }), meuType == "DownPdf" && /*#__PURE__*/(0,jsx_runtime.jsx)(Downloadpdf, { + Prize: Prize + }), meuType == "Perfect" && /*#__PURE__*/(0,jsx_runtime.jsx)(PerfectuserInfon, { + userid: userid, + dispatch: dispatch, + Prize: Prize, + Accounts: Accounts + })] + }); +}; +/* harmony default export */ var AwardPdf = ((0,_umi_production_exports.connect)(function (_ref2) { + objectDestructuringEmpty_default()(_ref2); + return {}; +})(Awardpdf)); + +/***/ }), + +/***/ 75725: +/*!******************************************************************!*\ + !*** ./src/pages/Competitions/Detail/Challitems.tsx + 1 modules ***! + \******************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ Challitems; } +}); + +// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules +var style = __webpack_require__(29913); +// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js +var es_button = __webpack_require__(71577); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules +var tooltip_style = __webpack_require__(38390); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules +var tooltip = __webpack_require__(84908); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js +var regeneratorRuntime = __webpack_require__(17061); +var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime); +// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules +var message_style = __webpack_require__(14934); +// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules +var message = __webpack_require__(12461); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js +var asyncToGenerator = __webpack_require__(17156); +var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator); +// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules +var modal_style = __webpack_require__(35611); +// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules +var modal = __webpack_require__(85402); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js +var slicedToArray = __webpack_require__(27424); +var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./src/pages/Competitions/Detail/index.less?modules +var Detailmodules = __webpack_require__(16455); +// EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules +var _umi_production_exports = __webpack_require__(89214); +// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules +var env = __webpack_require__(59758); +// EXTERNAL MODULE: ./src/components/RenderHtml/index.tsx + 1 modules +var RenderHtml = __webpack_require__(12768); +// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules +var verifyLogin = __webpack_require__(7303); +// EXTERNAL MODULE: ./src/service/shixuns.ts +var shixuns = __webpack_require__(56088); +// EXTERNAL MODULE: ./src/utils/fetch.ts +var fetch = __webpack_require__(84519); +;// CONCATENATED MODULE: ./src/assets/images/jieduanguanka.svg +function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } +var __defProp = Object.defineProperty; +var __getOwnPropSymbols = Object.getOwnPropertySymbols; +var __hasOwnProp = Object.prototype.hasOwnProperty; +var __propIsEnum = Object.prototype.propertyIsEnumerable; +var __defNormalProp = function __defNormalProp(obj, key, value) { + return key in obj ? __defProp(obj, key, { + enumerable: true, + configurable: true, + writable: true, + value: value + }) : obj[key] = value; +}; +var __spreadValues = function __spreadValues(a, b) { + for (var prop in b || (b = {})) if (__hasOwnProp.call(b, prop)) __defNormalProp(a, prop, b[prop]); + if (__getOwnPropSymbols) { + var _iterator = _createForOfIteratorHelper(__getOwnPropSymbols(b)), + _step; + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var prop = _step.value; + if (__propIsEnum.call(b, prop)) __defNormalProp(a, prop, b[prop]); + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + } + return a; +}; + +var SvgJieduanguanka = function SvgJieduanguanka(props) { + return /* @__PURE__ */React.createElement("svg", __spreadValues({ + className: "jieduanguanka_svg__icon", + viewBox: "0 0 1024 1024", + xmlns: "http://www.w3.org/2000/svg", + width: 20, + height: 20 + }, props), /* @__PURE__ */React.createElement("path", { + d: "M128 0h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128H128A128.358 128.358 0 0 1 0 896V128C0 57.6 57.6 0 128 0z", + fill: "#165DFF", + fillOpacity: 0.14 + }), /* @__PURE__ */React.createElement("path", { + d: "M294.4 377.6 160 480c-6.4 6.4-12.8 12.8-12.8 25.6v57.6c0 12.8 6.4 19.2 19.2 32l134.4 96c12.8 12.8 38.4 12.8 51.2 0l6.4-6.4c6.4-6.4 12.8-19.2 6.4-32s-6.4-25.6-19.2-32l-115.2-83.2 121.6-96c6.4-6.4 12.8-19.2 12.8-25.6 0-12.8 0-19.2-6.4-32-19.2-19.2-44.8-25.6-64-6.4zm275.2-12.8c-12.8 6.4-19.2 12.8-25.6 19.2L409.6 633.6a40.806 40.806 0 0 0 0 38.4c6.4 12.8 19.2 19.2 38.4 19.2 12.8 0 25.6-6.4 32-19.2l134.4-249.6c6.4-6.4 6.4-19.2 6.4-32s-12.8-19.2-19.2-25.6h-32zm128 0c-12.8 0-19.2 6.4-25.6 12.8-12.8 19.2-12.8 44.8 6.4 57.6l121.6 96-121.6 89.6c-19.2 12.8-19.2 38.4-12.8 51.2l6.4 6.4c12.8 19.2 38.4 19.2 57.6 6.4l134.4-96c6.4-6.4 12.8-19.2 19.2-25.6v-57.6c0-12.8-6.4-19.2-12.8-25.6L736 377.6c-19.2-12.8-32-12.8-38.4-12.8z", + fill: "#165DFF" + })); +}; + +/* harmony default export */ var jieduanguanka = ("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiPjxwYXRoIGQ9Ik0xMjggMGg3NjhjNzAuNCAwIDEyOCA1Ny42IDEyOCAxMjh2NzY4YzAgNzAuNC01Ny42IDEyOC0xMjggMTI4SDEyOEExMjguMzU4IDEyOC4zNTggMCAwIDEgMCA4OTZWMTI4QzAgNTcuNiA1Ny42IDAgMTI4IDB6IiBmaWxsPSIjMTY1REZGIiBmaWxsLW9wYWNpdHk9Ii4xNCIvPjxwYXRoIGQ9Ik0yOTQuNCAzNzcuNiAxNjAgNDgwYy02LjQgNi40LTEyLjggMTIuOC0xMi44IDI1LjZ2NTcuNmMwIDEyLjggNi40IDE5LjIgMTkuMiAzMmwxMzQuNCA5NmMxMi44IDEyLjggMzguNCAxMi44IDUxLjIgMGw2LjQtNi40YzYuNC02LjQgMTIuOC0xOS4yIDYuNC0zMnMtNi40LTI1LjYtMTkuMi0zMmwtMTE1LjItODMuMiAxMjEuNi05NmM2LjQtNi40IDEyLjgtMTkuMiAxMi44LTI1LjYgMC0xMi44IDAtMTkuMi02LjQtMzItMTkuMi0xOS4yLTQ0LjgtMjUuNi02NC02LjR6bTI3NS4yLTEyLjhjLTEyLjggNi40LTE5LjIgMTIuOC0yNS42IDE5LjJMNDA5LjYgNjMzLjZhNDAuODA2IDQwLjgwNiAwIDAgMCAwIDM4LjRjNi40IDEyLjggMTkuMiAxOS4yIDM4LjQgMTkuMiAxMi44IDAgMjUuNi02LjQgMzItMTkuMmwxMzQuNC0yNDkuNmM2LjQtNi40IDYuNC0xOS4yIDYuNC0zMnMtMTIuOC0xOS4yLTE5LjItMjUuNmgtMzJ6bTEyOCAwYy0xMi44IDAtMTkuMiA2LjQtMjUuNiAxMi44LTEyLjggMTkuMi0xMi44IDQ0LjggNi40IDU3LjZsMTIxLjYgOTYtMTIxLjYgODkuNmMtMTkuMiAxMi44LTE5LjIgMzguNC0xMi44IDUxLjJsNi40IDYuNGMxMi44IDE5LjIgMzguNCAxOS4yIDU3LjYgNi40bDEzNC40LTk2YzYuNC02LjQgMTIuOC0xOS4yIDE5LjItMjUuNnYtNTcuNmMwLTEyLjgtNi40LTE5LjItMTIuOC0yNS42TDczNiAzNzcuNmMtMTkuMi0xMi44LTMyLTEyLjgtMzguNC0xMi44eiIgZmlsbD0iIzE2NURGRiIvPjwvc3ZnPg=="); +// EXTERNAL MODULE: ./src/utils/authority.ts +var authority = __webpack_require__(7); +// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js +var jsx_runtime = __webpack_require__(85893); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Challitems.tsx + + + + + + + + + + + +//1 2 3 排名数据样式 + + + + + + + + + + + + +var toChinesNum = function toChinesNum(num) { + var changeNum = ['零', '一', '二', '三', '四', '五', '六', '七', '八', '九']; //changeNum[0] = "零" + var unit = ["", "十", "百", "千", "万"]; + num = parseInt(num); + var getWan = function getWan(temp) { + var strArr = temp.toString().split("").reverse(); + var newNum = ""; + for (var i = 0; i < strArr.length; i++) { + newNum = (i == 0 && strArr[i] == 0 ? "" : i > 0 && strArr[i] == 0 && strArr[i - 1] == 0 ? "" : changeNum[strArr[i]] + (strArr[i] == 0 ? unit[0] : unit[i])) + newNum; + } + return newNum; + }; + var overWan = Math.floor(num / 10000); + var noWan = num % 10000; + if (noWan.toString().length < 4) noWan = "0" + noWan; + return overWan ? getWan(overWan) + "万" + getWan(noWan) : getWan(num); +}; +function RankingItem(_ref) { + var _item$shixun3, _item$shixun4, _item$shixun5, _item$challenges, _item$challenge_setti, _item$shixun6, _Header$permission; + var item = _ref.item, + Header = _ref.Header, + index = _ref.index, + StaffDetail = _ref.StaffDetail, + dispatch = _ref.dispatch; + var _useState = (0,react.useState)(true), + _useState2 = slicedToArray_default()(_useState, 2), + content = _useState2[0], + setcontent = _useState2[1]; + var _useState3 = (0,react.useState)(true), + _useState4 = slicedToArray_default()(_useState3, 2), + isopen = _useState4[0], + setisonen = _useState4[1]; + var _useState5 = (0,react.useState)(false), + _useState6 = slicedToArray_default()(_useState5, 2), + showMore = _useState6[0], + setShowMore = _useState6[1]; + var divcontent = (0,react.useRef)(); + var _useState7 = (0,react.useState)(false), + _useState8 = slicedToArray_default()(_useState7, 2), + showStatrButton = _useState8[0], + setShowStatrButton = _useState8[1]; + var _useParams = (0,_umi_production_exports.useParams)(), + identifier = _useParams.identifier; + (0,react.useEffect)(function () { + setTimeout(function () { + if (divcontent.current.children[0].clientHeight > 88) setShowMore(true); + }, 10); + }, []); + var handleStartGame = function handleStartGame(item) { + var _item$shixun2; + if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch, true)) { + return; + } + if ((item === null || item === void 0 ? void 0 : item.shixun_status) > 1) { + setShowStatrButton(true); + } + if (item !== null && item !== void 0 && item.is_jupyter || item !== null && item !== void 0 && item.is_jupyter_lab) { + var _item$shixun; + dispatch({ + type: 'shixunsDetail/execJupyter', + payload: { + id: item === null || item === void 0 ? void 0 : (_item$shixun = item.shixun) === null || _item$shixun === void 0 ? void 0 : _item$shixun.identifier + } + }).then(function (response) { + setShowStatrButton(false); + if (response !== null && response !== void 0 && response.identifier) { + window.open("/tasks/".concat(response.identifier, "/jupyter?competition_entry_id=").concat(item === null || item === void 0 ? void 0 : item.id, "&type=competitions")); + // window.location.href = `/tasks/${response.identifier}/jupyter?competition_entry_id=${item?.id}&type=competitions`; + } + }); + + return; + } + dispatch({ + type: 'shixunsDetail/execShixun', + payload: { + id: item === null || item === void 0 ? void 0 : (_item$shixun2 = item.shixun) === null || _item$shixun2 === void 0 ? void 0 : _item$shixun2.identifier + } + }).then(function (execRes) { + setShowStatrButton(false); + if (execRes !== null && execRes !== void 0 && execRes.game_identifier) { + window.open("/tasks/".concat(execRes.game_identifier, "?competition_entry_id=").concat(item === null || item === void 0 ? void 0 : item.id, "&type=competitions")); + return; + } + if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 2) { + handleResetGame(execRes === null || execRes === void 0 ? void 0 : execRes.message); + } else if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 3) { + handleInBeta(execRes === null || execRes === void 0 ? void 0 : execRes.message); + } + }); + }; + var handleResetGame = function handleResetGame(url) { + var _url; + url = (_url = url) !== null && _url !== void 0 && _url.includes('.json') ? url : "".concat(url, ".json"); + modal/* default.confirm */.Z.confirm({ + centered: true, + title: '提示', + okText: '确定', + cancelText: '取消', + content: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: "tc font16", + children: "\u5B9E\u8BAD\u5DF2\u7ECF\u66F4\u65B0\u4E86\uFF0C\u6B63\u5728\u4E3A\u60A8\u91CD\u7F6E!" + }), + onOk: function () { + var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { + var res, execRes; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + _context.next = 2; + return (0,shixuns/* resetMyGame */.$Q)({ + url: url + }); + case 2: + res = _context.sent; + if (res) { + _context.next = 5; + break; + } + return _context.abrupt("return"); + case 5: + message/* default.success */.ZP.success('重置成功,正在进入实训!'); + _context.next = 8; + return (0,shixuns/* execShixun */.Ir)({ + id: res.shixun_identifier + }); + case 8: + execRes = _context.sent; + if (!(execRes !== null && execRes !== void 0 && execRes.game_identifier)) { + _context.next = 12; + break; + } + window.open("/tasks/".concat(execRes.game_identifier)); + // history?.push(`/tasks/${execRes.game_identifier}`); + return _context.abrupt("return"); + case 12: + if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 2) { + handleResetGame(execRes === null || execRes === void 0 ? void 0 : execRes.message); + } else if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 3) { + handleInBeta(execRes === null || execRes === void 0 ? void 0 : execRes.message); + } + case 13: + case "end": + return _context.stop(); + } + }, _callee); + })); + function onOk() { + return _onOk.apply(this, arguments); + } + return onOk; + }() + }); + }; + var handleInBeta = function handleInBeta(message) { + modal/* default.confirm */.Z.confirm({ + centered: true, + title: '提示', + okText: '确定', + cancelText: '取消', + content: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: "tc font16", + children: ["\u76EE\u524D\u8BE5\u5B9E\u8DF5\u9879\u76EE\u5C1A\u5728\u5185\u6D4B\u4E2D\uFF0C\u5C06\u4E8E", message, "\u4E4B\u540E\u5F00\u653E\uFF0C\u8C22\u8C22\uFF01"] + }) + }); + }; + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.box */.Z.box, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + justifyContent: 'space-between', + display: 'flex', + padding: '0 10px' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + className: Detailmodules/* default.title_style */.Z.title_style, + style: { + color: '#333333', + fontWeight: 500, + fontSize: '14px' + }, + children: [Header !== null && Header !== void 0 && Header.is_new ? '赛题' : '任务', index + 1] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#9096A3', + marginLeft: 'auto', + fontSize: '12px' + }, + children: ["\u4F5C\u54C1\u63D0\u4EA4\u65F6\u95F4", /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#232B40', + marginLeft: 5 + }, + children: [Header === null || Header === void 0 ? void 0 : Header.start_time, "~", Header === null || Header === void 0 ? void 0 : Header.end_time] + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + padding: 10, + display: 'flex', + position: 'relative' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + '/' + (item === null || item === void 0 ? void 0 : item.pic), + style: { + width: 220, + height: 130, + borderRadius: '4px' + } + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + marginLeft: 20, + width: '75%' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + justifyContent: 'space-between' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: (item === null || item === void 0 ? void 0 : item.name) || (item === null || item === void 0 ? void 0 : (_item$shixun3 = item.shixun) === null || _item$shixun3 === void 0 ? void 0 : _item$shixun3.name), + children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#333333', + fontWeight: '500', + fontSize: '14px' + }, + children: (item === null || item === void 0 ? void 0 : item.name) || (item === null || item === void 0 ? void 0 : (_item$shixun4 = item.shixun) === null || _item$shixun4 === void 0 ? void 0 : _item$shixun4.name) + }) + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#9096A3', + marginLeft: 40 + }, + children: ["\u5173\u5361", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#333333', + marginLeft: 5 + }, + children: (item === null || item === void 0 ? void 0 : item.challenges_count) || (item === null || item === void 0 ? void 0 : (_item$shixun5 = item.shixun) === null || _item$shixun5 === void 0 ? void 0 : _item$shixun5.challenges_count) + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + ref: divcontent, + style: { + maxHeight: content && 100, + position: "relative", + overflow: "hidden" + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { + style: { + fontSize: '14px', + color: '#9096A3', + marginTop: 20, + position: "relative" + }, + value: (item === null || item === void 0 ? void 0 : item.description) || '' + }), showMore && content && /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: Detailmodules/* default.maskText */.Z.maskText + })] + }), showMore && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + textAlign: 'center', + color: '#145DFF', + cursor: 'pointer' + }, + onClick: function onClick() { + setcontent(!content); + }, + children: [content ? '阅读全文 ' : '收起全文 ', /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont font14 ".concat(content ? 'icon-jiantou9' : 'icon-changyongtubiao-xianxingdaochu-zhuanqu-') + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + marginTop: 14, + maxHeight: isopen && 58, + overflow: 'hidden' + }, + children: [item === null || item === void 0 ? void 0 : (_item$challenges = item.challenges) === null || _item$challenges === void 0 ? void 0 : _item$challenges.map(function (items, j) { + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + marginTop: j === 0 ? 0 : 12 + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: jieduanguanka, + style: { + width: 20, + height: 20 + } + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + marginLeft: 10 + }, + children: ["\u7B2C", j + 1, "\u5173", items === null || items === void 0 ? void 0 : items.challenge_name] + })] + }); + }), item === null || item === void 0 ? void 0 : (_item$challenge_setti = item.challenge_settings) === null || _item$challenge_setti === void 0 ? void 0 : _item$challenge_setti.map(function (items, j) { + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + marginTop: j === 0 ? 0 : 12 + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: jieduanguanka, + style: { + width: 20, + height: 20 + } + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + marginLeft: 10 + }, + children: ["\u7B2C", j + 1, "\u5173", items === null || items === void 0 ? void 0 : items.challenge_name] + })] + }); + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + position: 'absolute', + bottom: 14, + right: 10, + color: '#145DFF', + cursor: 'pointer' + }, + children: [((item === null || item === void 0 ? void 0 : item.challenges_count) || (item === null || item === void 0 ? void 0 : (_item$shixun6 = item.shixun) === null || _item$shixun6 === void 0 ? void 0 : _item$shixun6.challenges_count)) > 2 && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + onClick: function onClick() { + setisonen(!isopen); + }, + children: [isopen ? '展开' : '收起', " ", /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont font14 ".concat(isopen ? 'icon-jiantou9' : 'icon-changyongtubiao-xianxingdaochu-zhuanqu-') + })] + }), ((StaffDetail === null || StaffDetail === void 0 ? void 0 : StaffDetail.enrolled) && (Header === null || Header === void 0 ? void 0 : Header.competition_status) !== 'ended' || (0,authority/* isAdmins */.eB)() || ((_Header$permission = Header.permission) === null || _Header$permission === void 0 ? void 0 : _Header$permission.editable)) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + loading: showStatrButton, + onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { + var res1, _item$shixun7, res, _item$shixun8; + return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { + while (1) switch (_context2.prev = _context2.next) { + case 0: + if (!(Header !== null && Header !== void 0 && Header.is_new)) { + _context2.next = 11; + break; + } + _context2.next = 3; + return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/check_team_member.json"), { + method: 'post' + }); + case 3: + res1 = _context2.sent; + if (!((res1 === null || res1 === void 0 ? void 0 : res1.status) === 0)) { + _context2.next = 9; + break; + } + handleStartGame(item); + _context2.next = 8; + return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/enter_competition_question.json"), { + method: 'post', + body: { + competition_stage_id: item === null || item === void 0 ? void 0 : item.competition_stage_id, + competition_stage_section_id: item === null || item === void 0 ? void 0 : item.competition_stage_section_id, + competition_entry_id: item === null || item === void 0 ? void 0 : item.id, + shixun_id: item === null || item === void 0 ? void 0 : (_item$shixun7 = item.shixun) === null || _item$shixun7 === void 0 ? void 0 : _item$shixun7.id + } + }); + case 8: + res = _context2.sent; + case 9: + _context2.next = 12; + break; + case 11: + window.open("/shixuns/".concat((item === null || item === void 0 ? void 0 : item.identifier) || (item === null || item === void 0 ? void 0 : (_item$shixun8 = item.shixun) === null || _item$shixun8 === void 0 ? void 0 : _item$shixun8.identifier), "/challenges")); + case 12: + case "end": + return _context2.stop(); + } + }, _callee2); + })), + style: { + marginLeft: 30, + borderRadius: 14, + fontSize: 12, + width: 88 + }, + type: "primary", + children: "\u5F00\u542F\u6311\u6218" + })] + })] + })] + })] + }); +} +/* harmony default export */ var Challitems = (RankingItem); + +/***/ }), + +/***/ 86434: +/*!**************************************************************!*\ + !*** ./src/pages/Competitions/Detail/index.tsx + 13 modules ***! + \**************************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +"use strict"; +// ESM COMPAT FLAG +__webpack_require__.r(__webpack_exports__); + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "default": function() { return /* binding */ Detail; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js +var objectSpread2 = __webpack_require__(42122); +var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js +var regeneratorRuntime = __webpack_require__(17061); +var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime); +// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules +var style = __webpack_require__(35611); +// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules +var es_modal = __webpack_require__(85402); +// EXTERNAL MODULE: ./node_modules/antd/es/menu/style/index.js + 1 modules +var menu_style = __webpack_require__(83736); +// EXTERNAL MODULE: ./node_modules/antd/es/menu/index.js + 5 modules +var menu = __webpack_require__(66516); +// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules +var button_style = __webpack_require__(29913); +// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js +var es_button = __webpack_require__(71577); +// EXTERNAL MODULE: ./node_modules/antd/es/spin/style/index.js + 1 modules +var spin_style = __webpack_require__(22536); +// EXTERNAL MODULE: ./node_modules/antd/es/spin/index.js +var spin = __webpack_require__(11382); +// EXTERNAL MODULE: ./node_modules/antd/es/breadcrumb/style/index.js + 1 modules +var breadcrumb_style = __webpack_require__(63102); +// EXTERNAL MODULE: ./node_modules/antd/es/breadcrumb/index.js + 3 modules +var breadcrumb = __webpack_require__(58492); +// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules +var message_style = __webpack_require__(14934); +// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules +var message = __webpack_require__(12461); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js +var asyncToGenerator = __webpack_require__(17156); +var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js +var slicedToArray = __webpack_require__(27424); +var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js +var objectWithoutProperties = __webpack_require__(70215); +var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules +var _umi_production_exports = __webpack_require__(89214); +// EXTERNAL MODULE: ./src/pages/Competitions/Detail/index.less?modules +var Detailmodules = __webpack_require__(16455); +// EXTERNAL MODULE: ./src/components/AuthenticationModel/index.tsx +var AuthenticationModel = __webpack_require__(8213); +// EXTERNAL MODULE: ./node_modules/antd/es/upload/style/index.js + 1 modules +var upload_style = __webpack_require__(13759); +// EXTERNAL MODULE: ./node_modules/antd/es/upload/index.js + 20 modules +var upload = __webpack_require__(7426); +// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/InboxOutlined.js + 1 modules +var InboxOutlined = __webpack_require__(64082); +// EXTERNAL MODULE: ./src/components/UploadFile/index.tsx +var UploadFile = __webpack_require__(82394); +// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js +var jsx_runtime = __webpack_require__(85893); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/AddSubmitModel.tsx + + + + + + + + + + + + + + + + +var Dragger = upload/* default.Dragger */.Z.Dragger; +var ShixunsListPage = function ShixunsListPage(_ref) { + var user = _ref.user, + dispatch = _ref.dispatch, + classroomList = _ref.classroomList, + shixunsDetail = _ref.shixunsDetail, + getResults = _ref.getResults; + var params = (0,_umi_production_exports.useParams)(); + var _useState = (0,react.useState)(), + _useState2 = slicedToArray_default()(_useState, 2), + time = _useState2[0], + setTime = _useState2[1]; + var _useState3 = (0,react.useState)([]), + _useState4 = slicedToArray_default()(_useState3, 2), + fileList = _useState4[0], + setFileList = _useState4[1]; + var _useState5 = (0,react.useState)(false), + _useState6 = slicedToArray_default()(_useState5, 2), + confirmLoading = _useState6[0], + setConfirmLoading = _useState6[1]; + var props = { + onRemove: function onRemove() { + setFileList([]); + }, + beforeUpload: function beforeUpload(file) { + console.log(file); + if ((file === null || file === void 0 ? void 0 : file.size) > 1024 * 1024 * 500) { + message/* default.info */.ZP.info('文件超过500M,不符合上传要求'); + return false; + } + var filelist = []; + filelist.push(file); + setFileList([].concat(filelist)); + return false; + }, + fileList: fileList + }; + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_modal/* default */.Z, { + title: "\u63D0\u4EA4\u6587\u4EF6", + open: shixunsDetail.actionTabs.key === 'md-tab', + confirmLoading: confirmLoading, + onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { + var _user$userInfo, _fileList$; + var resulr; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + if (!((fileList === null || fileList === void 0 ? void 0 : fileList.length) <= 0)) { + _context.next = 3; + break; + } + message/* default.info */.ZP.info('请先选择文件'); + return _context.abrupt("return"); + case 3: + setConfirmLoading(true); + _context.next = 6; + return (0,UploadFile/* uploadFile */.cT)(fileList[0], { + login: (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login, + container_type: "Competition", + container_id: shixunsDetail.actionTabs.params.id, + stage_type: shixunsDetail.actionTabs.params.value, + file_name: (_fileList$ = fileList[0]) === null || _fileList$ === void 0 ? void 0 : _fileList$.name + }); + case 6: + resulr = _context.sent; + if ((resulr === null || resulr === void 0 ? void 0 : resulr.status) === 0) { + message/* default.info */.ZP.info('提交成功'); + dispatch({ + type: 'shixunsDetail/setActionTabs', + payload: { + key: '' + } + }); + setConfirmLoading(false); + setFileList([]); + getResults(shixunsDetail.actionTabs.params.value); + } else { + setConfirmLoading(false); + message/* default.info */.ZP.info('提交失败'); + } + case 8: + case "end": + return _context.stop(); + } + }, _callee); + })), + onCancel: function onCancel() { + setFileList([]); + dispatch({ + type: 'shixunsDetail/setActionTabs', + payload: { + key: '' + } + }); + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(Dragger, objectSpread2_default()(objectSpread2_default()({}, props), {}, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: "ant-upload-drag-icon", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(InboxOutlined/* default */.Z, {}) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: "ant-upload-hint", + children: "\u62D6\u62FD\u6587\u4EF6\u6216\u8005\u70B9\u51FB\u4E0A\u4F20" + })] + })) + }); +}; +/* harmony default export */ var AddSubmitModel = ((0,_umi_production_exports.connect)(function (_ref3) { + var user = _ref3.user, + classroomList = _ref3.classroomList, + shixunsDetail = _ref3.shixunsDetail; + return { + user: user, + classroomList: classroomList, + shixunsDetail: shixunsDetail + }; +})(ShixunsListPage)); +// EXTERNAL MODULE: ./node_modules/antd/es/row/style/index.js +var row_style = __webpack_require__(13062); +// EXTERNAL MODULE: ./node_modules/antd/es/row/index.js +var row = __webpack_require__(71230); +// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules +var input_style = __webpack_require__(69463); +// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules +var input = __webpack_require__(75008); +// EXTERNAL MODULE: ./src/components/RenderHtml/index.tsx + 1 modules +var RenderHtml = __webpack_require__(12768); +// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules +var env = __webpack_require__(59758); +// EXTERNAL MODULE: ./src/utils/fetch.ts +var utils_fetch = __webpack_require__(84519); +// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules +var verifyLogin = __webpack_require__(7303); +// EXTERNAL MODULE: ./node_modules/antd/es/carousel/style/index.js + 1 modules +var carousel_style = __webpack_require__(36936); +// EXTERNAL MODULE: ./node_modules/antd/es/carousel/index.js + 9 modules +var carousel = __webpack_require__(61980); +// EXTERNAL MODULE: ./node_modules/antd/es/select/style/index.js + 1 modules +var select_style = __webpack_require__(95985); +// EXTERNAL MODULE: ./node_modules/antd/es/select/index.js +var es_select = __webpack_require__(34041); +// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/LeftOutlined.js +var LeftOutlined = __webpack_require__(37653); +// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/RightOutlined.js +var RightOutlined = __webpack_require__(43929); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Competitionbonus.tsx + + + + + + + + + + + + + +//代金劵 + + + +var Option = es_select/* default.Option */.Z.Option; + + + + +function Bonus(_ref) { + var rewarddata = _ref.rewarddata, + getlistdatas = _ref.getlistdatas, + is_signed = _ref.is_signed, + dispatch = _ref.dispatch, + userlist = _ref.userlist; + var Carousels = (0,react.useRef)(null); + var _useState = (0,react.useState)(false), + _useState2 = slicedToArray_default()(_useState, 2), + isshow = _useState2[0], + SetIsshow = _useState2[1]; + var _useState3 = (0,react.useState)(undefined), + _useState4 = slicedToArray_default()(_useState3, 2), + className = _useState4[0], + SetClassname = _useState4[1]; + var _useState5 = (0,react.useState)(''), + _useState6 = slicedToArray_default()(_useState5, 2), + id = _useState6[0], + SetId = _useState6[1]; + var _useState7 = (0,react.useState)(undefined), + _useState8 = slicedToArray_default()(_useState7, 2), + name = _useState8[0], + SetName = _useState8[1]; + var _useState9 = (0,react.useState)(undefined), + _useState10 = slicedToArray_default()(_useState9, 2), + email = _useState10[0], + SetEmail = _useState10[1]; + var _useState11 = (0,react.useState)(undefined), + _useState12 = slicedToArray_default()(_useState11, 2), + phone = _useState12[0], + SetPhone = _useState12[1]; + function receive(_x) { + return _receive.apply(this, arguments); + } + function _receive() { + _receive = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(item) { + var result; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + if (!item.user_received) { + _context.next = 3; + break; + } + window.open(item.click_info); + return _context.abrupt("return"); + case 3: + if ((0,verifyLogin/* handleVerifyLogin */.o1)(dispatch)) { + _context.next = 5; + break; + } + return _context.abrupt("return"); + case 5: + if (!(is_signed === false)) { + _context.next = 8; + break; + } + message/* default.info */.ZP.info('您尚未报名参赛,请报名参赛后领取'); + return _context.abrupt("return"); + case 8: + if (!(item.click_event === "Pop")) { + _context.next = 14; + break; + } + SetId(item.id); + SetIsshow(true); + return _context.abrupt("return"); + case 14: + SetClassname(undefined); + case 15: + _context.next = 17; + return dispatch({ + type: 'competitions/Reward', + payload: { + competition_module_setting_id: item.id + } + }); + case 17: + result = _context.sent; + if (result && result.status === 0) { + getlistdatas(); + if (item.click_event === "Link") { + message/* default.info */.ZP.info('领取成功'); + window.open(item.click_info); + } else { + message/* default.info */.ZP.info(item.click_info); + } + } + case 19: + case "end": + return _context.stop(); + } + }, _callee); + })); + return _receive.apply(this, arguments); + } + function submitreceive() { + return _submitreceive.apply(this, arguments); + } + function _submitreceive() { + _submitreceive = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { + var result; + return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { + while (1) switch (_context2.prev = _context2.next) { + case 0: + if (!(userlist && !userlist.real_name)) { + _context2.next = 4; + break; + } + if (name) { + _context2.next = 4; + break; + } + message/* default.info */.ZP.info('姓名不能为空'); + return _context2.abrupt("return"); + case 4: + if (!(userlist && !userlist.email)) { + _context2.next = 8; + break; + } + if (email) { + _context2.next = 8; + break; + } + message/* default.info */.ZP.info('邮箱不能为空'); + return _context2.abrupt("return"); + case 8: + if (!(userlist && !userlist.phone)) { + _context2.next = 12; + break; + } + if (phone) { + _context2.next = 12; + break; + } + message/* default.info */.ZP.info('手机号码不能为空'); + return _context2.abrupt("return"); + case 12: + if (className) { + _context2.next = 15; + break; + } + message/* default.info */.ZP.info('请选择你的年级'); + return _context2.abrupt("return"); + case 15: + _context2.next = 17; + return dispatch({ + type: 'competitions/Reward', + payload: { + competition_module_setting_id: id, + className: className, + name: name, + mail: email, + phone: phone + } + }); + case 17: + result = _context2.sent; + if (result && result.status === 0) { + SetIsshow(false); + getlistdatas(); + message/* default.info */.ZP.info('HCIA认证考试代金劵将由Educoder平台统一发放,请及时关注邮箱或站内短信查收'); + } + case 19: + case "end": + return _context2.stop(); + } + }, _callee2); + })); + return _submitreceive.apply(this, arguments); + } + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(es_modal/* default */.Z, { + open: isshow, + title: '完善信息', + onCancel: function onCancel() { + return SetIsshow(false); + }, + onOk: function onOk() { + submitreceive(); + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + children: ["\u60A8\u7684\u59D3\u540D\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + className: userlist && userlist.real_name ? '' : Detailmodules/* default.bkfff */.Z.bkfff, + style: { + width: '300px', + marginLeft: '14px', + background: userlist && userlist.phone ? '' : '#ffffff!important' + }, + value: userlist && userlist.real_name || name, + disabled: userlist && userlist.real_name || false, + onChange: function onChange(e) { + return SetName(e.target.value); + } + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + style: { + marginTop: '1em' + }, + children: ["\u60A8\u7684\u90AE\u7BB1\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + className: userlist && userlist.email ? '' : "bkfff", + style: { + width: '300px', + marginLeft: '14px', + background: userlist && userlist.phone ? '' : '#ffffff!important' + }, + value: userlist && userlist.email || email, + disabled: userlist && userlist.email || false, + onChange: function onChange(e) { + return SetEmail(e.target.value); + } + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + style: { + marginTop: '1em' + }, + children: ["\u60A8\u7684\u624B\u673A\u53F7\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + style: { + width: '300px' + }, + className: userlist && userlist.phone ? '' : "bkfff", + value: userlist && userlist.phone || phone, + disabled: userlist && userlist.phone || false, + onChange: function onChange(e) { + return SetPhone(e.target.value); + } + })] + }), "\u60A8\u7684\u5E74\u7EA7\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { + style: { + width: '300px', + marginTop: '1em', + marginLeft: '14px' + }, + onChange: function onChange(e) { + SetClassname(e); + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u5927\u4E00", + children: "\u5927\u4E00" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u5927\u4E8C", + children: "\u5927\u4E8C" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u5927\u4E09", + children: "\u5927\u4E09" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u5927\u56DB", + children: "\u5927\u56DB" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u5927\u4E94", + children: "\u5927\u4E94" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u7855\u4E00", + children: "\u7855\u4E00" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u7855\u4E8C", + children: "\u7855\u4E8C" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u7855\u4E09", + children: "\u7855\u4E09" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u535A\u4E00", + children: "\u535A\u4E00" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u535A\u4E8C", + children: "\u535A\u4E8C" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u535A\u4E09", + children: "\u535A\u4E09" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u535A\u56DB", + children: "\u535A\u56DB" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, { + value: "\u535A\u4E94", + children: "\u535A\u4E94" + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + marginTop: '1em' + }, + children: "\u63D0\u9192\uFF1A\u5982\u65E0\u534E\u4E3A\u4E91\u8D26\u53F7\uFF0C\u8BF7\u5C3D\u5FEB\u6CE8\u518C\u534E\u4E3A\u4E91\uFF01" + })] + }), rewarddata && rewarddata.length > 3 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + position: 'relative', + marginBottom: '10px', + marginTop: '10px' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: Detailmodules/* default.spanprev */.Z.spanprev, + onClick: function onClick() { + Carousels.current.prev(); + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(LeftOutlined/* default */.Z, { + style: { + color: '#fff', + fontSize: '20px', + marginLeft: "15px" + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(carousel/* default */.Z, { + ref: Carousels, + className: Detailmodules/* default.divwidth */.Z.divwidth, + slidesToShow: 3, + slidesToScroll: 1, + children: rewarddata && rewarddata.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + textAlign: 'center', + position: 'relative' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/".concat(item.image_url) + }), item.user_received === false || item.click_event === "Link" ? /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.receiveclick */.Z.receiveclick, + onClick: function onClick() { + return receive(item); + }, + children: "\u70B9\u51FB\u9886\u53D6" + }) : /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.receivealready */.Z.receivealready, + children: "\u5DF2\u7ECF\u9886\u53D6" + })] + }); + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: Detailmodules/* default.spannext */.Z.spannext, + onClick: function onClick() { + Carousels.current.next(); + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(RightOutlined/* default */.Z, { + style: { + color: '#fff', + fontSize: '20px', + marginLeft: "5px" + } + }) + })] + }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: Detailmodules/* default.divwidth */.Z.divwidth, + style: { + justifyContent: 'space-around', + marginBottom: '10px', + marginTop: '10px' + }, + children: rewarddata && rewarddata.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + textAlign: 'center', + position: 'relative' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/".concat(item.image_url) + }), item.user_received === false || item.click_event === "Link" ? /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.receiveclick */.Z.receiveclick, + onClick: function onClick() { + return receive(item); + }, + children: "\u70B9\u51FB\u9886\u53D6" + }) : /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.receivealready */.Z.receivealready, + children: "\u5DF2\u7ECF\u9886\u53D6" + })] + }); + }) + })] + }); +} +/* harmony default export */ var Competitionbonus = (Bonus); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/SeeItem.tsx + + + + + + + + + + + + + + + + + + + + + + + +//代金劵 + + + +var SeeItem = function SeeItem(_ref, ref) { + var StaffDetail = _ref.StaffDetail, + HeaderDetail = _ref.HeaderDetail, + ItemData = _ref.ItemData, + setIssee = _ref.setIssee, + ModelType = _ref.ModelType, + dispatch = _ref.dispatch, + userinfo = _ref.userinfo, + Editable = _ref.Editable; + var _useState = (0,react.useState)(false), + _useState2 = slicedToArray_default()(_useState, 2), + visible = _useState2[0], + setVisible = _useState2[1]; + var _useState3 = (0,react.useState)([]), + _useState4 = slicedToArray_default()(_useState3, 2), + fileList = _useState4[0], + setFileList = _useState4[1]; + var _useState5 = (0,react.useState)(''), + _useState6 = slicedToArray_default()(_useState5, 2), + fileId = _useState6[0], + setFileId = _useState6[1]; + var _useState7 = (0,react.useState)(''), + _useState8 = slicedToArray_default()(_useState7, 2), + text = _useState8[0], + setText = _useState8[1]; + // const [disabled, setDisable] = useState(false) + var _useState9 = (0,react.useState)(false), + _useState10 = slicedToArray_default()(_useState9, 2), + loading = _useState10[0], + setLoading = _useState10[1]; + var _useParams = (0,_umi_production_exports.useParams)(), + identifier = _useParams.identifier; + var enrolled = (0,react.useRef)(null); + var dom = (0,react.useRef)(null); + enrolled.current = StaffDetail === null || StaffDetail === void 0 ? void 0 : StaffDetail.enrolled; + (0,react.useEffect)(function () { + var _dom$current; + (_dom$current = dom.current) === null || _dom$current === void 0 ? void 0 : _dom$current.addEventListener("click", modal); + return function () { + var _dom$current2; + (_dom$current2 = dom.current) === null || _dom$current2 === void 0 ? void 0 : _dom$current2.removeEventListener("click", modal); }; - }(); - var handleClose = function handleClose() { - dispatch({ - type: 'account/setActionTabs', - payload: {} - }); + }, []); + + // useEffect(() => { + // if (visible || fileList.length) { + // setDisable(true) + // } + // }, [visible]) + + var modal = function modal(e) { + var _e$target; + // 检查事件源e.targe是否为Li + if ((e === null || e === void 0 ? void 0 : (_e$target = e.target) === null || _e$target === void 0 ? void 0 : _e$target.id) === 'modal-upload') { + if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch)) { + return; + } + if (!enrolled.current) { + es_modal/* default.info */.Z.info({ + title: '提示', + centered: true, + okText: '我知道了', + content: '请先报名,再提交作品' + }); + return; + } + setVisible(true); + } }; + (0,react.useEffect)(function () { + if (HeaderDetail !== null && HeaderDetail !== void 0 && HeaderDetail.upload_file) { + var _HeaderDetail$upload_, _HeaderDetail$upload_2, _HeaderDetail$upload_3; + setFileList([{ + name: HeaderDetail === null || HeaderDetail === void 0 ? void 0 : (_HeaderDetail$upload_ = HeaderDetail.upload_file) === null || _HeaderDetail$upload_ === void 0 ? void 0 : _HeaderDetail$upload_.title, + status: 'done', + uid: '123456789' + }]); + setText(HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.upload_file_url); + setFileId(HeaderDetail === null || HeaderDetail === void 0 ? void 0 : (_HeaderDetail$upload_2 = HeaderDetail.upload_file) === null || _HeaderDetail$upload_2 === void 0 ? void 0 : (_HeaderDetail$upload_3 = _HeaderDetail$upload_2.url) === null || _HeaderDetail$upload_3 === void 0 ? void 0 : _HeaderDetail$upload_3.split('/')[3]); + } + }, [HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.upload_file]); var uploadProps = { - data: { - type: "professional" + name: 'file', + multiple: false, + withCredentials: true, + // accept: ".doc, .docx, .pdf", + // action: '/api/attachments.json', + action: env/* default.API_SERVER */.Z.API_SERVER + '/api/attachments.json', + showUploadList: { + showRemoveIcon: false + }, + fileList: fileList, + onChange: function onChange(info) { + var status = info.file.status; + var newFileList = [objectSpread2_default()({}, info.file)]; + setFileList(newFileList); + if (info.file.status === 'uploading') { + setLoading(true); + } + if (status === 'done') { + var _newFileList$, _newFileList$$respons; + setFileId((_newFileList$ = newFileList[0]) === null || _newFileList$ === void 0 ? void 0 : (_newFileList$$respons = _newFileList$.response) === null || _newFileList$$respons === void 0 ? void 0 : _newFileList$$respons.id); + setLoading(false); + // setDisable(false) + } + + if (status === 'error') { + setFileList([]); + setLoading(false); + } }, - multiple: true, - showUploadList: false, - action: "".concat(env/* default.API_SERVER */.Z.API_SERVER, "/api/attachments.json"), - className: componentmodules.uploader, - onChange: handleUploadChange, beforeUpload: function beforeUpload(file) { - var isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/jpg' || file.type === 'image/bmp'; - if (!isJpgOrPng) { - message/* default.info */.ZP.info('请上传正确文件格式'); + var isLt10M = file.size / 1024 / 1024 < 1000; + if (!isLt10M) { + message/* default.info */.ZP.info("文件大小必须小于1000MB"); + return Promise.reject(); } - return isJpgOrPng; + + // if (!/\.(doc|docx|pdf|DOC|DOCX|PDF)$/.test(file.name)) { + // message.warn('只能上传Word或PDF文件') + // return Promise.reject(); + // } + return Promise.resolve(); } }; - return /*#__PURE__*/(0,jsx_runtime.jsxs)(es_modal/* default */.Z, { - centered: true, - keyboard: false, - closable: false, - destroyOnClose: true, - className: componentmodules.modal, - open: account.actionTabs.key === 'Account-ProfessionalAuth', - title: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont icon-zhiyerenzheng font18 mr5 ".concat(componentmodules.colorBlue) - }), "\u804C\u4E1A\u8BA4\u8BC1"] - }), - width: "660px", - footer: null, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, { - spinning: !!isLoading, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { - className: componentmodules.formWrap, - form: form, - layout: "horizontal", - onValuesChange: handleValuesChange, - onFinish: handleFinish, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { - gutter: [10, 0], - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - flex: '300px', - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u804C\u4E1A", - name: "identity", - rules: [{ - required: true, - message: '请先选择职业' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "teacher", - children: "\u6559\u5E08" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "student", - children: "\u5B66\u751F" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "professional", - children: "\u4E13\u4E1A\u4EBA\u58EB" - })] - }) - }) - }), formValue.identity === 'student' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - flex: '200px', - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - initialValue: formValue.studentNo, - name: "studentNo", - rules: [{ - required: true, - message: '请先输入学号' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - type: "text", - placeholder: "\u8BF7\u8F93\u5165\u5B66\u53F7" - }) - }) - }), formValue.identity === 'teacher' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - flex: '200px', - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - initialValue: formValue.jobTitle, - name: "jobTitle", - rules: [{ - required: true, - message: '请先选择职称' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u6559\u6388", - children: "\u6559\u6388" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u526F\u6559\u6388", - children: "\u526F\u6559\u6388" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u8BB2\u5E08", - children: "\u8BB2\u5E08" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u52A9\u6559", - children: "\u52A9\u6559" - })] - }) - }) - }), formValue.identity === 'professional' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { - flex: '200px', - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - initialValue: formValue.manager, - name: "manager", - rules: [{ - required: true, - message: '请先选择职称' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u4F01\u4E1A\u7BA1\u7406\u8005", - children: "\u4F01\u4E1A\u7BA1\u7406\u8005" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u90E8\u95E8\u7BA1\u7406\u8005", - children: "\u90E8\u95E8\u7BA1\u7406\u8005" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u9AD8\u7EA7\u5DE5\u7A0B\u5E08", - children: "\u9AD8\u7EA7\u5DE5\u7A0B\u5E08" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u5DE5\u7A0B\u5E08", - children: "\u5DE5\u7A0B\u5E08" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Option, { - value: "\u52A9\u7406\u5DE5\u7A0B\u5E08", - children: "\u52A9\u7406\u5DE5\u7A0B\u5E08" - })] - }) - }) + var handleVisible = function handleVisible() { + setVisible(true); + }; + (0,react.useImperativeHandle)(ref, function () { + return { + handleVisible: handleVisible + }; + }); + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + ref: dom, + children: [ModelType === "reward" ? /*#__PURE__*/(0,jsx_runtime.jsx)(Competitionbonus, { + userlist: userinfo, + dispatch: dispatch, + rewarddata: ItemData.reward_setting, + is_signed: ItemData.is_signed + }) : null, /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + style: { + textAlign: 'right' + }, + children: ((userinfo === null || userinfo === void 0 ? void 0 : userinfo.admin) || (userinfo === null || userinfo === void 0 ? void 0 : userinfo.business) || Editable) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + onClick: function onClick() { + return setIssee(false); + }, + children: "\u7F16\u8F91" + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { + value: ItemData.md_content || '暂无' + }), ItemData && ItemData.attachments && ItemData.attachments.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("a", { + href: (env/* default */.Z === null || env/* default */.Z === void 0 ? void 0 : env/* default.API_SERVER */.Z.API_SERVER) + item.url, + target: "_self", + download: item.title, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { + style: { + color: '#29BD8B' + }, + className: "font-14 color-green iconfont icon-fujian mr8" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#000000' + }, + children: item.title + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#000000', + marginLeft: '10px' + }, + children: item.filesize + })] + }) + }); + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_modal/* default */.Z, { + centered: true, + title: "\u4E0A\u4F20\u4F5C\u54C1", + open: visible, + okText: "\u63D0\u4EA4\u4F5C\u54C1", + cancelText: "\u53D6\u6D88", + confirmLoading: loading, + onCancel: function onCancel() { + return setVisible(false); + }, + onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { + var res; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + if (!(!fileId && !text)) { + _context.next = 3; + break; + } + setVisible(false); + return _context.abrupt("return"); + case 3: + // if (disabled) { + // setVisible(false) + // return; + // } + setLoading(true); + _context.next = 6; + return (0,utils_fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/upload_file.json"), { + method: 'post', + body: { + attachment_id: fileId, + upload_file_url: text + } + }); + case 6: + res = _context.sent; + if (res.status === 0) { + setVisible(false); + setLoading(false); + } + case 8: + case "end": + return _context.stop(); + } + }, _callee); + })), + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "middle", + className: "mb20", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: "\u4F5C\u54C1\u94FE\u63A5\uFF1A" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + style: { + width: 416 + }, + value: text, + onChange: function onChange(e) { + var _e$target2; + return setText((_e$target2 = e.target) === null || _e$target2 === void 0 ? void 0 : _e$target2.value); + } })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u5B66\u6821/\u5355\u4F4D", - name: "school", - extra: formValue.school && !(schoolList !== null && schoolList !== void 0 && schoolList.find(function (item) { - return item.name === formValue.school; - })) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: componentmodules.schoolHintWrap, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - className: componentmodules.colorCDCDCD, - children: ["\u672A\u627E\u5230\u5305\u542B\u201C", formValue.school, "\u201D\u7684\u9AD8\u6821\uFF0C"] - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "".concat(componentmodules.color0152d9, " current"), - onClick: handleApplySchool, - children: "\u7533\u8BF7\u65B0\u589E" - })] - }), - rules: [{ - required: true, - message: '请先选择学校/单位' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(auto_complete/* default */.Z, { - showSearch: true, - options: filterSchoolList === null || filterSchoolList === void 0 ? void 0 : filterSchoolList.map(function (item) { - return { - value: item.name - }; - }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u9662\u7CFB/\u90E8\u95E8", - name: "department", - extra: formValue.department && !(departmentList !== null && departmentList !== void 0 && departmentList.find(function (item) { - return item.name === formValue.department; - })) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: componentmodules.schoolHintWrap, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: componentmodules.colorCDCDCD, - children: formValue.department ? "\u672A\u627E\u5230\u5305\u542B\u201C".concat(formValue.department, "\u201D\u7684\u9AD8\u6821\uFF0C") : '未找到院系,' - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "".concat(componentmodules.color0152d9, " current"), - onClick: handleApplyDepartment, - children: "\u7533\u8BF7\u65B0\u589E" - })] - }), - rules: [{ - required: true, - message: '请先选择院系/部门' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(auto_complete/* default */.Z, { - showSearch: true, - onChange: function onChange(value) { - return setFilterDepartmentList(departmentList.filter(function (item) { - return item.name.includes(value); - })); + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + align: "top", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + lineHeight: '28px' }, - options: filterDepartmentList === null || filterDepartmentList === void 0 ? void 0 : filterDepartmentList.map(function (item) { - return { - value: item.name - }; - }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - label: "\u804C\u4E1A\u8BC1\u4E0A\u4F20", - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: componentmodules.flexRow, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: "".concat(componentmodules.flexColumn, " ").concat(componentmodules.example), - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: componentmodules.exampleImg, - children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: job - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - className: "tc", - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "\u793A\u4F8B\u56FE\u7247" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: "".concat(componentmodules.colorOrange, " font12"), - children: "\uFF08png/jpg/bmp\u683C\u5F0F\uFF0C\u4E0D\u8D85\u8FC72MB\uFF09" - })] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: componentmodules.flexColumn, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Dragger, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { - accept: ".png,.jpg,.bmp,.jpeg", - children: image ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: image, - className: componentmodules.uploadImg - }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: componentmodules.imageTip, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont icon-cuban2shangchuanyunduan ".concat(componentmodules.uploadTipIcon) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: componentmodules.uploadTip, - children: /*#__PURE__*/(0,jsx_runtime.jsx)("a", { - className: componentmodules.color05101a, - children: "\u70B9\u51FB\u6216\u62D6\u62FD\u4E0A\u4F20\u56FE\u7247" - }) - })] - }) - })), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "tc", - children: /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - className: componentmodules.viewLargerImg, - children: "\u67E5\u770B\u5927\u56FE" - }) - })] - })] - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: componentmodules.footerWrap, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - className: "mr5", - size: "large", - onClick: handleClose, - children: "\u53D6\u6D88" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - size: "large", + children: "\u4F5C\u54C1\u6587\u4EF6\uFF1A" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(upload/* default */.Z, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { type: "primary", - htmlType: "submit", - loading: loading['account/applyProfessionalAuth'], - children: "\u4FDD\u5B58" - })] - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: componentmodules.note, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "\u8BA4\u8BC1\u987B\u77E5\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "1.\u6839\u636E\u804C\u4E1A\u4E0A\u4F20\u76F8\u5E94\u7684\u8BC1\u4EF6\u7167\uFF1A\u6559\u5E08\uFF08\u6559\u5E08\u8BC1\uFF09\uFF0C\u4E13\u4E1A\u4EBA\u58EB\uFF08\u5458\u5DE5\u8BC1\uFF09\u3001\u5B66\u751F\uFF08\u5B66\u751F\u8BC1\uFF09\uFF0C\u8BF7\u786E\u4FDD\u8BC1\u4EF6\u7167\u5185\u5BB9\u5B8C\u6574\u5E76\u4E14\u6E05\u6670\u53EF\u89C1\uFF0C\u4E25\u7981PS\uFF1B" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "2.\u6211\u4EEC\u5C06\u5728\u4F60\u63D0\u4EA4\u804C\u4E1A\u8BC1\u4FE1\u606F\u540E\u768424\u5C0F\u65F6\uFF08\u4E0D\u5305\u542B\u8282\u5047\u65E5\uFF09\u5185\u5B8C\u6210\u5BA1\u6838\uFF0C\u5BA1\u6838\u7ED3\u679C\u5C06\u4F1A\u4EE5\u7CFB\u7EDF\u6D88\u606F\u7684\u5F62\u5F0F\u53D1\u9001\u7ED9\u4F60\uFF1B" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "3.\u804C\u4E1A\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u65E0\u6CD5\u5220\u9664\uFF0C\u8BF7\u8C28\u614E\u586B\u5199\uFF1B\u804C\u4E1A\u53D8\u66F4\u8BF7\u9009\u62E9\u91CD\u65B0\u8BA4\u8BC1\uFF1B" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "4.\u804C\u4E1A\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u7CFB\u7EDF\u5C06\u81EA\u52A8\u53D1\u653E500\u4E2A\u91D1\u5E01\u4F5C\u4E3A\u5956\u52B1\uFF1B" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "5.\u6211\u4EEC\u4F1A\u786E\u4FDD\u4F60\u6240\u63D0\u4F9B\u7684\u4FE1\u606F\u5747\u5904\u4E8E\u4E25\u683C\u7684\u4FDD\u5BC6\u72B6\u6001\uFF0C\u4E0D\u4F1A\u6CC4\u9732\uFF1B" - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["6.\u5982\u5B58\u5728\u6076\u610F\u4E71\u586B\u5199\u59D3\u540D\uFF0C\u5B66\u53F7\uFF0C\u53CA\u4E0A\u4F20\u4E0E\u804C\u4E1A\u8BC1\u4EF6\u65E0\u5173\u56FE\u7247\u8005\uFF0C\u4E00\u7ECF\u53D1\u73B0\u5C06\u51BB\u7ED3", !(globalSetting !== null && globalSetting !== void 0 && (_globalSetting$settin = globalSetting.setting) !== null && _globalSetting$settin !== void 0 && _globalSetting$settin.is_local) && 'EduCoder', "\u8D26\u53F7\u3002"] - }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: "7.\u975E\u8001\u5E08\u8EAB\u4EFD\u63D0\u4EA4\u804C\u4E1A\u8BA4\u8BC1\u540E\u7CFB\u7EDF\u4F1A\u81EA\u52A8\u5C06\u72B6\u6001\u6539\u4E3A\u5DF2\u8BA4\u8BC1\uFF0C\u4F60\u5C06\u53EF\u4EE5\u4F53\u9A8C\u5E73\u53F0\u9700\u8981\u804C\u4E1A\u8BA4\u8BC1\u7684\u529F\u80FD\uFF1B\u5982\u679C\u5728\u8BA4\u8BC1\u540E\u7684\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u672A\u901A\u8FC7\u5BA1\u6838\uFF0C\u4F60\u5C06\u4E0D\u80FD\u7EE7\u7EED\u4F53\u9A8C\u9700\u8981\u8BA4\u8BC1\u7684\u529F\u80FD\u3002" - })] + className: "mb10", + children: "\u4E0A\u4F20\u4F5C\u54C1" + }) + }))] })] }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(components_AppplySchoolModal, { - visible: visibleAppplySchool, - onClose: function onClose() { - return setVisibleAppplySchool(false); - }, - schoolName: formValue.school, - onSuccess: handleSchoolSuccess - }), /*#__PURE__*/(0,jsx_runtime.jsx)(components_AppplyDepartmentModal, { - visible: visibleAppplyDepartment, - onClose: function onClose() { - return setVisibleAppplyDepartment(false); - }, - schoolId: (_schoolList$find3 = schoolList.find(function (item) { - return item.name === formValue.school; - })) === null || _schoolList$find3 === void 0 ? void 0 : _schoolList$find3.id, - schoolName: formValue.school, - departmentName: formValue.department, - onSuccess: function onSuccess(departmentName) { - return handleSetDepartment(formValue.school, departmentName); - } })] }); }; -/* harmony default export */ var component_ProfessionalAuthModal = ((0,_umi_production_exports.connect)(function (_ref8) { - var user = _ref8.user, - account = _ref8.account, - loading = _ref8.loading, - globalSetting = _ref8.globalSetting; - return { - user: user, - account: account, - globalSetting: globalSetting, - loading: loading.effects - }; -})(ProfessionalAuthModal)); -// EXTERNAL MODULE: ./node_modules/md5/md5.js -var md5 = __webpack_require__(2568); -var md5_default = /*#__PURE__*/__webpack_require__.n(md5); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/UpdataPhone.tsx +/* harmony default export */ var Detail_SeeItem = (/*#__PURE__*/(0,react.forwardRef)(SeeItem)); +// EXTERNAL MODULE: ./src/components/markdown-editor/index.tsx + 10 modules +var markdown_editor = __webpack_require__(55373); +// EXTERNAL MODULE: ./src/service/competitions.ts +var competitions = __webpack_require__(80185); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Update.tsx @@ -6664,369 +7236,591 @@ var md5_default = /*#__PURE__*/__webpack_require__.n(md5); -//修改手机号or邮箱地址 -//type 3 手机 4邮箱 -function UpdataPhone(_ref) { - var type = _ref.type, + + + + +function Update_SeeItem(_ref) { + var ItemData = _ref.ItemData, + setIssee = _ref.setIssee, + MenuItem = _ref.MenuItem, dispatch = _ref.dispatch, - userid = _ref.userid, - isshow = _ref.isshow, - setPhoneshow = _ref.setPhoneshow, - setEmailshow = _ref.setEmailshow; - var opens = "79e33abd4b6588941ab7622aed1e67e8"; - var _useState = (0,react.useState)(''), + identifier = _ref.identifier, + ModelType = _ref.ModelType, + userinfo = _ref.userinfo, + getrightdatas = _ref.getrightdatas; + var _useState = (0,react.useState)([]), _useState2 = slicedToArray_default()(_useState, 2), - login = _useState2[0], - setLogin = _useState2[1]; - var _useState3 = (0,react.useState)('获取验证码'), + defaultFileList = _useState2[0], + setDefaultFileList = _useState2[1]; + var _useState3 = (0,react.useState)(ItemData.md_content), _useState4 = slicedToArray_default()(_useState3, 2), - yzm = _useState4[0], - setYzm = _useState4[1]; - var _useState5 = (0,react.useState)(60), - _useState6 = slicedToArray_default()(_useState5, 2), - seconds = _useState6[0], - setseconds = _useState6[1]; - var _useState7 = (0,react.useState)(false), - _useState8 = slicedToArray_default()(_useState7, 2), - secondsFlag = _useState8[0], - setsecondsFlag = _useState8[1]; - var _useState9 = (0,react.useState)(''), - _useState10 = slicedToArray_default()(_useState9, 2), - code = _useState10[0], - setCode = _useState10[1]; - //获取验证码 - function getversion() { - return _getversion.apply(this, arguments); - } // 获取验证码倒计时 - function _getversion() { - _getversion = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { - var data; - return regeneratorRuntime_default()().wrap(function _callee$(_context) { - while (1) switch (_context.prev = _context.next) { - case 0: - if (login) { - _context.next = 3; - break; - } - if (type === 3) { - message/* default.info */.ZP.info('手机号不能为空'); - } else { - message/* default.info */.ZP.info('邮箱地址不能为空'); - } - return _context.abrupt("return"); - case 3: - _context.next = 5; - return dispatch({ - type: 'competitions/getVerification', - payload: { - type: type, - login: login, - smscode: md5_default()(opens + login) - //user_id:39416 - } - }); - case 5: - data = _context.sent; - if (data.status === 1) { - message/* default.info */.ZP.info('获取验证码成功'); - remainTime(); - setsecondsFlag(true); - } - case 7: - case "end": - return _context.stop(); + defaultcontent = _useState4[0], + setDefaultcontent = _useState4[1]; + (0,react.useEffect)(function () { + var _ItemData$attachments; + var data = []; + ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$attachments = ItemData.attachments) === null || _ItemData$attachments === void 0 ? void 0 : _ItemData$attachments.map(function (item) { + var tt = { + uid: item.id, + name: item.title, + response: { + id: item.id } - }, _callee); - })); - return _getversion.apply(this, arguments); - } - function remainTime() { - setseconds(60); - var aa = setInterval(function () { - --seconds; - if (seconds > -1) { - setseconds(seconds); - } else { - clearInterval(aa); - setsecondsFlag(false); - } - }, 1000); - } - //绑定手机号 - function PhoneBind() { - return _PhoneBind.apply(this, arguments); - } //绑定邮箱 - function _PhoneBind() { - _PhoneBind = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { - var data; - return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { - while (1) switch (_context2.prev = _context2.next) { - case 0: - _context2.next = 2; - return dispatch({ - type: 'competitions/PhoneBind', - payload: { - userid: userid, - code: code, - phone: login - } - }); - case 2: - data = _context2.sent; - if (data.status === 0) { - message/* default.info */.ZP.info('绑定成功'); - setPhoneshow("none"); - } - case 4: - case "end": - return _context2.stop(); + }; + data.push(tt); + }); + setDefaultFileList(data); + }, [ItemData === null || ItemData === void 0 ? void 0 : ItemData.attachments]); + function getdata() { + var _ItemData$attachments2; + var data = []; + ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$attachments2 = ItemData.attachments) === null || _ItemData$attachments2 === void 0 ? void 0 : _ItemData$attachments2.map(function (item) { + var tt = { + uid: item === null || item === void 0 ? void 0 : item.id, + name: item.title, + response: { + id: item.id } - }, _callee2); - })); - return _PhoneBind.apply(this, arguments); - } - function EmailBind() { - return _EmailBind.apply(this, arguments); + }; + data.push(tt); + }); + return data; } - function _EmailBind() { - _EmailBind = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() { + var uploadProps = { + name: 'file', + multiple: true, + withCredentials: true, + action: env/* default.API_SERVER */.Z.API_SERVER + '/api/attachments.json', + defaultFileList: getdata(), + onRemove: function onRemove(e) { + (0,competitions/* deletAttachments */.y8)({ + id: e.uid + }); + }, + onChange: function onChange(info) { + var status = info.file.status; + if (status !== 'uploading') {} + if (status === 'removed') { + setDefaultFileList(info.fileList); + } + if (status === 'done') { + setDefaultFileList(info.fileList); + message/* default.success */.ZP.success("".concat(info.file.name, " \u6587\u4EF6\u4E0A\u4F20\u6210\u529F")); + } else if (status === 'error') { + message/* default.error */.ZP.error("".concat(info.file.name, " \u6587\u4EF6\u4E0A\u4F20\u5931\u8D25")); + } + }, + beforeUpload: function beforeUpload(file) { + var isLt150M = file.size / 1024 / 1024 < 150; + if (!isLt150M) { + message/* default.info */.ZP.info("文件大小必须小于150MB"); + } + return isLt150M; + } + }; + console.log(uploadProps); + + //修改内容回调接口 + function updateItem() { + return _updateItem.apply(this, arguments); + } //获取对应文件列表 + function _updateItem() { + _updateItem = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { var data; - return regeneratorRuntime_default()().wrap(function _callee3$(_context3) { - while (1) switch (_context3.prev = _context3.next) { + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { case 0: - _context3.next = 2; + _context.next = 2; return dispatch({ - type: 'competitions/EmailBind', + type: 'competitions/updateMdContent', payload: { - userid: userid, - code: code, - email: login + attachment_ids: getitemid(defaultFileList), + competition_module_id: ItemData.id, + md_content_id: ItemData.md_id, + content: defaultcontent, + identifier: identifier } }); case 2: - data = _context3.sent; - if (data.status === 0) { - message/* default.info */.ZP.info('绑定成功'); - setEmailshow('none'); - } - case 4: - case "end": - return _context3.stop(); - } - }, _callee3); - })); - return _EmailBind.apply(this, arguments); - } - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - display: isshow - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - value: login, - onChange: function onChange(e) { - return setLogin(e.target.value); - }, - placeholder: type === 3 ? '请输入手机号' : '请输入邮箱地址', - style: { - width: '370px' - } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - value: code, - onChange: function onChange(e) { - return setCode(e.target.value); - }, - placeholder: type === 3 ? '请输入手机获取的验证码' : '请输入邮箱获取的验证码', - style: { - width: '250px' + data = _context.sent; + if (data) { + message/* default.info */.ZP.info('提交成功'); + setIssee(true); + //刷新 + getrightdatas(MenuItem); + } + case 4: + case "end": + return _context.stop(); } - }) - }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - disabled: secondsFlag, - onClick: function onClick() { - return getversion(); - }, - type: "primary", - style: { - marginLeft: '20px', - width: '100px' - }, - children: secondsFlag ? "\u91CD\u65B0\u53D1\u9001".concat(seconds, "s") : yzm - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + }, _callee); + })); + return _updateItem.apply(this, arguments); + } + function getitemid(itemlist) { + var data = []; + itemlist && itemlist.map(function (item) { + data.push(item.response.id); + }); + return data; + } + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [ModelType === "reward" ? /*#__PURE__*/(0,jsx_runtime.jsx)(Competitionbonus, { + userlist: userinfo, + dispatch: dispatch, + rewarddata: ItemData.reward_setting, + is_signed: ItemData.is_signed + }) : null, /*#__PURE__*/(0,jsx_runtime.jsx)(markdown_editor/* default */.Z, { + defaultValue: defaultcontent, + onChange: function onChange(e) { + return setDefaultcontent(e); + } + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(upload/* default */.Z, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + className: "uploadBtn", + children: "\u4E0A\u4F20\u9644\u4EF6" + }), "(\u5355\u4E2A\u6587\u4EF6150M\u4EE5\u5185)"] + })), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { style: { - marginTop: '30px', - width: '370px', - textAlign: 'center' + marginTop: '10px' }, children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - type: "primary", style: { - marginRight: '15px' + width: '90px' }, + type: "primary", onClick: function onClick() { - if (!code) { - message/* default.info */.ZP.info('验证码不能为空'); - return; - } - if (type === 3) { - PhoneBind(); - } else { - EmailBind(); - } + return updateItem(); }, - children: "\u786E\u8BA4" + children: "\u63D0\u4EA4" }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { style: { - marginLeft: '20px' + marginLeft: '30px', + width: '90px' }, onClick: function onClick() { - if (type === 3) { - setPhoneshow("none"); - } else { - setEmailshow('none'); - } + return setIssee(true); + }, + children: "\u53D6\u6D88" + })] + })] + }); +} +/* harmony default export */ var Update = (Update_SeeItem); +// EXTERNAL MODULE: ./node_modules/antd/es/table/style/index.js + 1 modules +var table_style = __webpack_require__(71854); +// EXTERNAL MODULE: ./node_modules/antd/es/table/index.js + 58 modules +var table = __webpack_require__(67250); +// EXTERNAL MODULE: ./node_modules/antd/es/tabs/style/index.js + 1 modules +var tabs_style = __webpack_require__(99558); +// EXTERNAL MODULE: ./node_modules/antd/es/tabs/index.js + 22 modules +var tabs = __webpack_require__(3381); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/RankingNuLL.tsx +//排行榜没有数据 + + + + +function RankNull() { + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '24px', + color: '#05101a' + }, + children: "\u603B\u6392\u884C" + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + textAlign: 'center' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/competitions/trophy.png" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + children: "\u8981\u6293\u4F4F\u4E00\u5207\u673A\u4F1A\uFF0C\u5411\u6240\u6709\u4EBA\u8BC1\u660E\u81EA\u5DF1\uFF0C\u8BC1\u660E\u4F60\u80FD\u591F\u8FCE\u63A5\u8363\u8000" + })] + })] + }); +} +/* harmony default export */ var RankingNuLL = (RankNull); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules +var tooltip_style = __webpack_require__(38390); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules +var tooltip = __webpack_require__(84908); +// EXTERNAL MODULE: ./node_modules/antd/es/col/style/index.js +var col_style = __webpack_require__(89032); +// EXTERNAL MODULE: ./node_modules/antd/es/col/index.js +var col = __webpack_require__(15746); +// EXTERNAL MODULE: ./node_modules/antd/es/card/style/index.js + 1 modules +var card_style = __webpack_require__(78548); +// EXTERNAL MODULE: ./node_modules/antd/es/card/index.js + 3 modules +var card = __webpack_require__(59652); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/RankingItem.tsx + + + + + + +//1 2 3 排名数据样式 + + + + + + +function RankingItem(_ref) { + var oneItem = _ref.oneItem, + towItem = _ref.towItem, + threeItem = _ref.threeItem; + return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + style: { + textAlign: "center" + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + gutter: 16, + style: { + justifyContent: 'center' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + span: 6, + style: { + marginTop: '30px', + marginRight: '20px' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(card/* default */.Z, { + title: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.towtop */.Z.towtop, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + style: { + marginTop: '20px' + }, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/huangguan-two.png" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + marginTop: '10px' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { + to: "/users/".concat(towItem === null || towItem === void 0 ? void 0 : towItem.user_login, "/classrooms"), + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + className: Detailmodules/* default.imgradius */.Z.imgradius, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(towItem === null || towItem === void 0 ? void 0 : towItem.user_image) + }), (towItem === null || towItem === void 0 ? void 0 : towItem.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.prize */.Z.prize, + children: towItem === null || towItem === void 0 ? void 0 : towItem.competition_prize + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + color: '#05101a', + fontSize: '16px', + marginTop: '10px' + }, + children: towItem === null || towItem === void 0 ? void 0 : towItem.record_user_name + })] + }) + })] + }), + className: Detailmodules/* default.towdiv */.Z.towdiv, + bordered: false, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '14px' + }, + children: towItem === null || towItem === void 0 ? void 0 : towItem.school_name + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '18px' + }, + children: towItem === null || towItem === void 0 ? void 0 : towItem.spend_time + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + style: { + fontSize: '26px', + color: '#a55b29' + }, + children: [parseFloat(towItem === null || towItem === void 0 ? void 0 : towItem.extra_score) + parseFloat(towItem === null || towItem === void 0 ? void 0 : towItem.score), "\u5206"] + })] + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + span: 6, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(card/* default */.Z, { + title: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.onetop */.Z.onetop, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + style: { + marginTop: '20px' + }, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/huangguan.png" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + marginTop: '10px' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { + to: "/users/".concat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.user_login, "/classrooms"), + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + className: Detailmodules/* default.imgradius */.Z.imgradius, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.user_image) + }), (oneItem === null || oneItem === void 0 ? void 0 : oneItem.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.prize */.Z.prize, + children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.competition_prize + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + color: '#05101a', + fontSize: '16px', + marginTop: '10px' + }, + children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.record_user_name + })] + }) + })] + }), + className: Detailmodules/* default.onediv */.Z.onediv, + bordered: false, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '14px' + }, + children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.school_name + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '18px' + }, + children: oneItem === null || oneItem === void 0 ? void 0 : oneItem.spend_time + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + style: { + fontSize: '26px', + color: '#a55b29' + }, + children: [parseFloat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.extra_score) + parseFloat(oneItem === null || oneItem === void 0 ? void 0 : oneItem.score), "\u5206"] + })] + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, { + span: 6, + style: { + marginTop: '40px', + marginLeft: '20px' }, - children: "\u53D6\u6D88" + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(card/* default */.Z, { + title: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.threetop */.Z.threetop, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + style: { + marginTop: '20px' + }, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/huangguan-three.png" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + marginTop: '10px' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { + to: "/users/".concat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.user_login, "/classrooms"), + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + className: Detailmodules/* default.imgradius */.Z.imgradius, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.user_image) + }), (threeItem === null || threeItem === void 0 ? void 0 : threeItem.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + className: Detailmodules/* default.prize */.Z.prize, + children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.competition_prize + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + color: '#05101a', + fontSize: '16px', + marginTop: '10px' + }, + children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.record_user_name + })] + }) + })] + }), + className: Detailmodules/* default.threediv */.Z.threediv, + bordered: false, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '14px' + }, + children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.school_name + }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '18px' + }, + children: threeItem === null || threeItem === void 0 ? void 0 : threeItem.spend_time + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { + style: { + fontSize: '26px', + color: '#a55b29' + }, + children: [parseFloat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.extra_score) + parseFloat(threeItem === null || threeItem === void 0 ? void 0 : threeItem.score), "\u5206"] + })] + }) })] - })] + }) }); } -/* harmony default export */ var Detail_UpdataPhone = (UpdataPhone); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Addleader.tsx - - - - - - - +/* harmony default export */ var Detail_RankingItem = (RankingItem); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/RankingList.tsx -//填写银行卡号等信息 -function Addleader(_ref) { - var dispatch = _ref.dispatch, - userid = _ref.userid; - var tailLayout = { - wrapperCol: { - offset: 3, - span: 21 - } - }; - var _Form$useForm = es_form/* default.useForm */.Z.useForm(), - _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), - form = _Form$useForm2[0]; - var _useParams = (0,_umi_production_exports.useParams)(), - identifier = _useParams.identifier; - return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - width: '500px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { - form: form, - name: "basic", - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, { - label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - width: "30px" - }, - children: "\u5F00\u6237\u884C" - }), - name: "bank", - rules: [{ - required: true, - message: '请输入开户行' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {}) - })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, { - label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { +function RanKingList(_ref) { + var _ItemData$user_ranks, _ItemData$user_ranks2, _ItemData$user_ranks3, _ItemData$user_ranks4, _ItemData$user_ranks5, _ItemData$user_ranks6, _ItemData$user_ranks7, _ItemData$user_ranks8, _ItemData$user_ranks9, _ItemData$user_ranks10, _ItemData$user_ranks11, _ItemData$user_ranks12, _ItemData$user_ranks13, _ItemData$user_ranks14, _ItemData$user_ranks15, _ItemData$user_ranks16, _ItemData$user_ranks17, _ItemData$user_ranks18, _ItemData$user_ranks19, _ItemData$user_ranks20, _ItemData$user_ranks21, _ItemData$user_ranks22, _ItemData$user_ranks23, _ItemData$user_ranks24, _ItemData$user_ranks25, _ItemData$user_ranks26, _ItemData$user_ranks27, _ItemData$user_ranks28, _ItemData$user_ranks29, _ItemData$teams; + var ItemData = _ref.ItemData; + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", { + style: { + fontSize: '24px', + color: '#05101a' + }, + children: "\u603B\u6392\u884C" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_RankingItem, { + oneItem: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams[0], + towItem: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams[1], + threeItem: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams[2] + }), (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks = ItemData.user_ranks) === null || _ItemData$user_ranks === void 0 ? void 0 : _ItemData$user_ranks.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.myTeam */.Z.myTeam, + children: [(ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks2 = ItemData.user_ranks) === null || _ItemData$user_ranks2 === void 0 ? void 0 : (_ItemData$user_ranks3 = _ItemData$user_ranks2[0]) === null || _ItemData$user_ranks3 === void 0 ? void 0 : _ItemData$user_ranks3.success) === false ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + marginRight: '70px', + padding: '10px' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { style: { - width: "30px" + marginBottom: '0px' }, - children: "\u652F\u884C" - }), - name: "second_bank", - rules: [{ - required: true, - message: '请输入支行' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {}) - })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, { - label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + children: [" \u662F\u5426\u664B\u7EA7\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + "color": (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks4 = ItemData.user_ranks) === null || _ItemData$user_ranks4 === void 0 ? void 0 : (_ItemData$user_ranks5 = _ItemData$user_ranks4[0]) === null || _ItemData$user_ranks5 === void 0 ? void 0 : _ItemData$user_ranks5.success) === false ? 'red' : 'green' + }, + children: (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks6 = ItemData.user_ranks) === null || _ItemData$user_ranks6 === void 0 ? void 0 : (_ItemData$user_ranks7 = _ItemData$user_ranks6[0]) === null || _ItemData$user_ranks7 === void 0 ? void 0 : _ItemData$user_ranks7.success) === false ? '否' : ItemData !== null && ItemData !== void 0 && (_ItemData$user_ranks8 = ItemData.user_ranks) !== null && _ItemData$user_ranks8 !== void 0 && (_ItemData$user_ranks9 = _ItemData$user_ranks8[0]) !== null && _ItemData$user_ranks9 !== void 0 && _ItemData$user_ranks9.success ? '是' : '' + })] + }), (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks10 = ItemData.user_ranks) === null || _ItemData$user_ranks10 === void 0 ? void 0 : (_ItemData$user_ranks11 = _ItemData$user_ranks10[0]) === null || _ItemData$user_ranks11 === void 0 ? void 0 : _ItemData$user_ranks11.awards) && /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { style: { - width: "30px" + marginBottom: '0px' }, - children: "\u8D26\u53F7" - }), - name: "card_no", - rules: [{ - required: true, - message: '请输入账号' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {}) - })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - type: "primary", - htmlType: "submit", - onClick: /*#__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: - form.validateFields().then( /*#__PURE__*/function () { - var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(vaule) { - var data; - return regeneratorRuntime_default()().wrap(function _callee$(_context) { - while (1) switch (_context.prev = _context.next) { - case 0: - _context.next = 2; - return dispatch({ - type: 'competitions/setleader', - payload: objectSpread2_default()({ - identifier: identifier, - user_id: userid - }, vaule) - }); - case 2: - data = _context.sent; - if (data.status === 0) { - message/* default.info */.ZP.info('提交成功'); - } - case 4: - case "end": - return _context.stop(); - } - }, _callee); - })); - return function (_x) { - return _ref3.apply(this, arguments); - }; - }()); - case 1: - case "end": - return _context2.stop(); - } - }, _callee2); - })), - children: "\u63D0\u4EA4" + children: [" \u662F\u5426\u83B7\u5956\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks12 = ItemData.user_ranks) === null || _ItemData$user_ranks12 === void 0 ? void 0 : (_ItemData$user_ranks13 = _ItemData$user_ranks12[0]) === null || _ItemData$user_ranks13 === void 0 ? void 0 : _ItemData$user_ranks13.awards) === 'percent_20' ? '二等奖' : (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks14 = ItemData.user_ranks) === null || _ItemData$user_ranks14 === void 0 ? void 0 : (_ItemData$user_ranks15 = _ItemData$user_ranks14[0]) === null || _ItemData$user_ranks15 === void 0 ? void 0 : _ItemData$user_ranks15.awards) === 'percent_30' ? '三等奖' : '没有获得奖项' + })] + })] + }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + marginRight: '70px' + }, + children: ["\u6211\u7684\u6392\u540D\uFF1A", ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks16 = ItemData.user_ranks) === null || _ItemData$user_ranks16 === void 0 ? void 0 : (_ItemData$user_ranks17 = _ItemData$user_ranks16[0]) === null || _ItemData$user_ranks17 === void 0 ? void 0 : _ItemData$user_ranks17.rank] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1 + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u6218\u961F\u540D", + children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks18 = ItemData.user_ranks) === null || _ItemData$user_ranks18 === void 0 ? void 0 : (_ItemData$user_ranks19 = _ItemData$user_ranks18[0]) === null || _ItemData$user_ranks19 === void 0 ? void 0 : _ItemData$user_ranks19.team_name + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1 + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u65F6\u95F4", + children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks20 = ItemData.user_ranks) === null || _ItemData$user_ranks20 === void 0 ? void 0 : (_ItemData$user_ranks21 = _ItemData$user_ranks20[0]) === null || _ItemData$user_ranks21 === void 0 ? void 0 : _ItemData$user_ranks21.cost_time + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1, + textAlign: 'center' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u8D4B\u80FD\u8D5B\u52A0\u5206", + children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks22 = ItemData.user_ranks) === null || _ItemData$user_ranks22 === void 0 ? void 0 : (_ItemData$user_ranks23 = _ItemData$user_ranks22[0]) === null || _ItemData$user_ranks23 === void 0 ? void 0 : _ItemData$user_ranks23.extra_score + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1 + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u6BD4\u8D5B\u6210\u7EE9", + children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks24 = ItemData.user_ranks) === null || _ItemData$user_ranks24 === void 0 ? void 0 : (_ItemData$user_ranks25 = _ItemData$user_ranks24[0]) === null || _ItemData$user_ranks25 === void 0 ? void 0 : _ItemData$user_ranks25.score + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u603B\u5206", + children: parseFloat(ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks26 = ItemData.user_ranks) === null || _ItemData$user_ranks26 === void 0 ? void 0 : (_ItemData$user_ranks27 = _ItemData$user_ranks26[0]) === null || _ItemData$user_ranks27 === void 0 ? void 0 : _ItemData$user_ranks27.extra_score) + parseFloat(ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$user_ranks28 = ItemData.user_ranks) === null || _ItemData$user_ranks28 === void 0 ? void 0 : (_ItemData$user_ranks29 = _ItemData$user_ranks28[0]) === null || _ItemData$user_ranks29 === void 0 ? void 0 : _ItemData$user_ranks29.score) || 0 }) })] - }) + }), ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$teams = ItemData.teams) === null || _ItemData$teams === void 0 ? void 0 : _ItemData$teams.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: Detailmodules/* default.bottomItem */.Z.bottomItem, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#0152d9', + marginRight: '20px' + }, + children: index + 1 + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, { + to: "/users/".concat(item === null || item === void 0 ? void 0 : item.user_login, "/classrooms"), + style: { + marginRight: '80px', + position: 'relative' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { + className: Detailmodules/* default.imgradius */.Z.imgradius, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(item === null || item === void 0 ? void 0 : item.user_image) + }), (item === null || item === void 0 ? void 0 : item.competition_prize) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: Detailmodules/* default.spanrightradius */.Z.spanrightradius, + children: item === null || item === void 0 ? void 0 : item.competition_prize + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1 + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u6218\u961F\u540D", + children: item === null || item === void 0 ? void 0 : item.team_name + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1 + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u5355\u4F4D/\u5B66\u6821\u540D", + children: item.school_name + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1, + textAlign: 'center' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u8D4B\u80FD\u8D5B\u52A0\u5206", + children: item.extra_score + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + flex: 1 + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u6BD4\u8D5B\u6210\u7EE9", + children: item.score + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + color: '#0152d9' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u603B\u5206", + children: parseFloat(item.extra_score) + parseFloat(item.score) + }) + })] + }); + })] }); } -/* harmony default export */ var Detail_Addleader = (Addleader); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/PerfectuserInfon.tsx +/* harmony default export */ var RankingList = (RanKingList); +;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Ranking.tsx @@ -7034,444 +7828,301 @@ function Addleader(_ref) { -//完善个人信息 +var TabPane = tabs/* default.TabPane */.Z.TabPane; -var identityMap = { - "teacher": "教师", - "student": "学生", - "professional": "专业人士" -}; -function PerfectUser(_ref) { - var _Prize$teams$, _Prize$teams$$bank_ac, _Prize$teams$2, _Prize$teams$2$bank_a, _Prize$teams$3, _Prize$teams$3$bank_a, _Prize$teams$4, _Prize$teams$4$bank_a; - var Prize = _ref.Prize, - Accounts = _ref.Accounts, - dispatch = _ref.dispatch, - userid = _ref.userid; - var _useState = (0,react.useState)('none'), + + + + + + + + +function Ranking(_ref) { + var _ChartRules$stages2, _ChartRules$stages3, _item$children, _item$children3, _ItemData$teams, _ItemData$teams2; + var ChartRules = _ref.ChartRules, + ItemData = _ref.ItemData, + getCharts = _ref.getCharts, + Selectkey = _ref.Selectkey, + getChartRules = _ref.getChartRules, + userinfo = _ref.userinfo, + Editable = _ref.Editable, + HeaderDetail = _ref.HeaderDetail; + var _useState = (0,react.useState)(false), _useState2 = slicedToArray_default()(_useState, 2), - phoneshow = _useState2[0], - setPhoneshow = _useState2[1]; - var _useState3 = (0,react.useState)('none'), + isUpdate = _useState2[0], + setIsupdate = _useState2[1]; + var _useState3 = (0,react.useState)(''), _useState4 = slicedToArray_default()(_useState3, 2), - emailshow = _useState4[0], - setEmailshow = _useState4[1]; - function update(_x) { - return _update.apply(this, arguments); + defaultValue = _useState4[0], + setDefaultValue = _useState4[1]; + var _useState5 = (0,react.useState)(true), + _useState6 = slicedToArray_default()(_useState5, 2), + ClickButton = _useState6[0], + setClickButton = _useState6[1]; + var _useState7 = (0,react.useState)(), + _useState8 = slicedToArray_default()(_useState7, 2), + item = _useState8[0], + setItem = _useState8[1]; + var _useState9 = (0,react.useState)(), + _useState10 = slicedToArray_default()(_useState9, 2), + items = _useState10[0], + setItems = _useState10[1]; + var _useParams = (0,_umi_production_exports.useParams)(), + identifier = _useParams.identifier; + (0,react.useEffect)(function () { + //进入初始化状态为第一个 + if (ClickButton) { + var _ChartRules$stages; + var data = ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages = ChartRules.stages) === null || _ChartRules$stages === void 0 ? void 0 : _ChartRules$stages[0]; + setItem(data); + if (data !== null && data !== void 0 && data.id) { + var _ChartRules$rule_cont, _ChartRules$rule_cont2, _ChartRules$rule_cont3; + if ((HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'dog') { + getCharts(data === null || data === void 0 ? void 0 : data.id); + } + setDefaultValue(((_ChartRules$rule_cont = ChartRules.rule_contents) === null || _ChartRules$rule_cont === void 0 ? void 0 : (_ChartRules$rule_cont2 = _ChartRules$rule_cont.filter(function (item) { + return parseInt(item.competition_stage_id) === parseInt(data === null || data === void 0 ? void 0 : data.id); + })) === null || _ChartRules$rule_cont2 === void 0 ? void 0 : (_ChartRules$rule_cont3 = _ChartRules$rule_cont2[0]) === null || _ChartRules$rule_cont3 === void 0 ? void 0 : _ChartRules$rule_cont3['content']) || ''); + } else { + var _ChartRules$rule_cont4, _ChartRules$rule_cont5, _ChartRules$rule_cont6; + if ((HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'dog') {} + setDefaultValue(((_ChartRules$rule_cont4 = ChartRules.rule_contents) === null || _ChartRules$rule_cont4 === void 0 ? void 0 : (_ChartRules$rule_cont5 = _ChartRules$rule_cont4.filter(function (item) { + return parseInt(item.competition_stage_id) === 0; + })) === null || _ChartRules$rule_cont5 === void 0 ? void 0 : (_ChartRules$rule_cont6 = _ChartRules$rule_cont5[0]) === null || _ChartRules$rule_cont6 === void 0 ? void 0 : _ChartRules$rule_cont6['content']) || ''); + } + } + }, [ChartRules]); + function updateitem() { + return _updateitem.apply(this, arguments); } - function _update() { - _update = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(type) { - var data; + function _updateitem() { + _updateitem = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { + var id, _ChartRules$rule_cont10, _ChartRules$rule_cont11, _ChartRules$rule_cont12, res, _ChartRules$rule_cont13, _ChartRules$rule_cont14, _ChartRules$rule_cont15, _res; return regeneratorRuntime_default()().wrap(function _callee$(_context) { while (1) switch (_context.prev = _context.next) { case 0: - if (!(type === "1")) { - _context.next = 6; + if (defaultValue) { + _context.next = 3; break; } - _context.next = 3; - return dispatch({ - type: 'competitions/Authentication' - }); + message/* default.info */.ZP.info('内容不能为空'); + return _context.abrupt("return"); case 3: - data = _context.sent; - _context.next = 9; - break; - case 6: + setClickButton(false); + id = item === null || item === void 0 ? void 0 : item.id; + if (!id) { + _context.next = 12; + break; + } _context.next = 8; - return dispatch({ - type: 'competitions/Professional' + return (0,utils_fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/update_md_content.json"), { + method: 'post', + body: { + competition_module_id: Selectkey, + content: defaultValue, + md_content_id: (_ChartRules$rule_cont10 = ChartRules.rule_contents) === null || _ChartRules$rule_cont10 === void 0 ? void 0 : (_ChartRules$rule_cont11 = _ChartRules$rule_cont10.filter(function (item) { + return parseInt(item.competition_stage_id) === parseInt(id); + })) === null || _ChartRules$rule_cont11 === void 0 ? void 0 : (_ChartRules$rule_cont12 = _ChartRules$rule_cont11[0]) === null || _ChartRules$rule_cont12 === void 0 ? void 0 : _ChartRules$rule_cont12['id'], + stage_id: item === null || item === void 0 ? void 0 : item.id + } }); case 8: - data = _context.sent; - case 9: - if (data.status === 0) { - message/* default.info */.ZP.info('撤销成功'); + res = _context.sent; + if (res.status === 0) { + message/* default.info */.ZP.info('更新成功'); + setIsupdate(false); + getChartRules(); } - case 10: + _context.next = 16; + break; + case 12: + _context.next = 14; + return (0,utils_fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/update_md_content.json"), { + method: 'post', + body: { + competition_module_id: Selectkey, + content: defaultValue, + md_content_id: (_ChartRules$rule_cont13 = ChartRules.rule_contents) === null || _ChartRules$rule_cont13 === void 0 ? void 0 : (_ChartRules$rule_cont14 = _ChartRules$rule_cont13.filter(function (item) { + return parseInt(item.competition_stage_id) === 0; + })) === null || _ChartRules$rule_cont14 === void 0 ? void 0 : (_ChartRules$rule_cont15 = _ChartRules$rule_cont14[0]) === null || _ChartRules$rule_cont15 === void 0 ? void 0 : _ChartRules$rule_cont15['id'], + stage_id: item === null || item === void 0 ? void 0 : item.id + } + }); + case 14: + _res = _context.sent; + if (_res.status === 0) { + message/* default.info */.ZP.info('更新成功'); + setIsupdate(false); + getChartRules(); + } + case 16: case "end": return _context.stop(); } }, _callee); })); - return _update.apply(this, arguments); + return _updateitem.apply(this, arguments); } + var columns = [{ + title: '排名', + dataIndex: 'name', + align: 'center', + key: 'name', + render: function render(a, b, c) { + return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: c + 1 + }); + } + }, { + title: '头像', + dataIndex: 'user_image', + align: 'center', + key: 'user_image', + render: function render(text) { + return /*#__PURE__*/(0,jsx_runtime.jsx)("img", { + className: Detailmodules/* default.imgradius */.Z.imgradius, + src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/".concat(text) + }); + } + }, { + title: '战队名称', + dataIndex: 'team_name', + key: 'team_name', + // width:120, + render: function render(text) { + return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + title: text, + children: text && (text === null || text === void 0 ? void 0 : text.length) >= 15 ? (text === null || text === void 0 ? void 0 : text.substr(0, 15)) + '...' : text || '--' + }); + } + // align:'center', + }, { + title: '单位', + dataIndex: 'school_name', + key: 'school_name', + align: 'center', + render: function render(a) { + return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: a || '--' + }); + } + }, { + title: (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' ? 'mAP指标' : (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'Jittor-3' ? '总分' : 'top1指标', + dataIndex: 'score', + key: 'score', + render: function render(text) { + return /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: text || '--' + }); + } + }]; return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: 'red' - }, - children: "*" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '16px' - }, - children: "\u5B9E\u540D\u4FE1\u606F" - }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '14px', - marginLeft: '20px' - }, - children: "\u901A\u8FC7\u5B9E\u540D\u8BA4\u8BC1\u540E\u624D\u80FD\u83B7\u5F97\u8BC1\u4E66" - }) : null, (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '14px', - marginLeft: '20px', - color: "#0152d9", - cursor: 'pointer' - }, + children: [(ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages2 = ChartRules.stages) === null || _ChartRules$stages2 === void 0 ? void 0 : _ChartRules$stages2.length) > 0 ? null : /*#__PURE__*/(0,jsx_runtime.jsx)(RankingNuLL, {}), (ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages3 = ChartRules.stages) === null || _ChartRules$stages3 === void 0 ? void 0 : _ChartRules$stages3.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tabs/* default */.Z, { + animated: true, + tabBarExtraContent: ((userinfo === null || userinfo === void 0 ? void 0 : userinfo.admin) || (userinfo === null || userinfo === void 0 ? void 0 : userinfo.business) || Editable) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { onClick: function onClick() { - dispatch({ - type: 'account/setActionTabs', - payload: { - key: 'Account-RealNameAuth' - } - }); + setIsupdate(true); }, - children: "\u7ACB\u5373\u8BA4\u8BC1" - }) : null] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - padding: '20px' + children: "\u7F16\u8F91" + }), + onChange: function onChange(e) { + var _ChartRules$stages4, _data$children, _ChartRules$rule_cont7, _ChartRules$rule_cont8, _ChartRules$rule_cont9; + setIsupdate(false); + var data = ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages4 = ChartRules.stages) === null || _ChartRules$stages4 === void 0 ? void 0 : _ChartRules$stages4.filter(function (item) { + return parseInt(e) === parseInt(item === null || item === void 0 ? void 0 : item.id); + })[0]; + setItem(data); + var datas = data === null || data === void 0 ? void 0 : (_data$children = data.children) === null || _data$children === void 0 ? void 0 : _data$children[0]; + setItems(datas); + setDefaultValue(((_ChartRules$rule_cont7 = ChartRules.rule_contents) === null || _ChartRules$rule_cont7 === void 0 ? void 0 : (_ChartRules$rule_cont8 = _ChartRules$rule_cont7.filter(function (item) { + return parseInt(item.competition_stage_id) === parseInt(data === null || data === void 0 ? void 0 : data.id); + })) === null || _ChartRules$rule_cont8 === void 0 ? void 0 : (_ChartRules$rule_cont9 = _ChartRules$rule_cont8[0]) === null || _ChartRules$rule_cont9 === void 0 ? void 0 : _ChartRules$rule_cont9['content']) || ''); + getCharts((datas === null || datas === void 0 ? void 0 : datas.id) || e); }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["\u59D3\u540D\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: Accounts === null || Accounts === void 0 ? void 0 : Accounts.name - }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? null : (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "applying" ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u5F85\u5BA1\u6838" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - type: "primary", - onClick: function onClick() { - return update("1"); - }, - ghost: true, - style: { - marginLeft: '20px' - }, - children: "\u64A4\u9500\u8BA4\u8BC1" - })] - }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#6ec76e' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "iconfont icon-wancheng font-14 ml20" - }), " \u5DF2\u8BA4\u8BC1"] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["\u6027\u522B\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.gender) === 0 ? '男' : '女' - })] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: 'red' - }, - children: "*" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '16px' - }, - children: "\u804C\u4E1A\u4FE1\u606F" - }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '14px', - marginLeft: '20px' - }, - children: "\u901A\u8FC7\u5B9E\u540D\u8BA4\u8BC1\u540E\u624D\u80FD\u83B7\u5F97\u8BC1\u4E66" - }) : null, (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '14px', - marginLeft: '20px', - color: "#0152d9" - }, - onClick: function onClick() { - dispatch({ - type: 'account/setActionTabs', - payload: { - key: 'Account-ProfessionalAuth' + children: ChartRules && ChartRules.stages.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(TabPane, { + tab: item.name, + children: isUpdate === false && ChartRules && ChartRules.rule_contents.map(function (items, keys) { + if (item.id === items.competition_stage_id) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { + value: items.content === undefined || items.content === null ? "" : items.content + }, keys); + } else if (item.id === null && items.competition_stage_id === 0) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { + value: items.content === undefined || items.content === null ? "" : items.content + }, keys); } - }); - }, - children: "\u7ACB\u5373\u8BA4\u8BC1" - }) : null] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - padding: '20px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["\u804C\u4E1A\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: Accounts && Accounts.identity && identityMap[Accounts.identity] - }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? null : (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "applying" ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u5F85\u5BA1\u6838" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - type: "primary", - onClick: function onClick() { - return update("2"); - }, - ghost: true, - style: { - marginLeft: '20px' - }, - children: "\u64A4\u9500\u8BA4\u8BC1" - })] - }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#6ec76e' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "iconfont icon-wancheng font-12 ml20" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: "\u5DF2\u8BA4\u8BC1" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - type: "primary", - onClick: function onClick() { - dispatch({ - type: 'account/setActionTabs', - payload: { - key: 'Account-ProfessionalAuth' - } - }); - }, - ghost: true, - style: { - marginLeft: '20px' - }, - children: "\u91CD\u65B0\u8BA4\u8BC1" - })] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["\u5B66\u53F7\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.student_id) || '--' - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["\u5B66\u6821\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.school_name) || '--' - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: ["\u9662\u7CFB\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.department_name) || '--' - })] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: 'red' - }, - children: "*" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '16px' - }, - children: "\u8054\u7CFB\u65B9\u5F0F" - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - padding: '20px' + }) + }, item.id === null ? 0 : item.id); + }) + }), (item === null || item === void 0 ? void 0 : (_item$children = item.children) === null || _item$children === void 0 ? void 0 : _item$children.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tabs/* default */.Z, { + activeKey: (items === null || items === void 0 ? void 0 : items.id) + '', + onChange: function onChange(e) { + var _item$children2; + var data = item === null || item === void 0 ? void 0 : (_item$children2 = item.children) === null || _item$children2 === void 0 ? void 0 : _item$children2.filter(function (item) { + return parseInt(e) === parseInt(item === null || item === void 0 ? void 0 : item.id); + })[0]; + setItems(data); + getCharts(e); + + //获取参数 }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - display: 'flex' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '60px', - textAlign: 'right' - }, - children: "\u624B\u673A\u53F7\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '150px' - }, - children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.phone) || '--' - }), phoneshow === 'none' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#0152d9', - marginLeft: '20px', - cursor: 'pointer' - }, - onClick: function onClick() { - setPhoneshow('block'); - }, - children: "\u66F4\u6362" - }) : null] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_UpdataPhone, { - type: 3, - dispatch: dispatch, - userid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.id, - isshow: phoneshow, - setPhoneshow: setPhoneshow, - setEmailshow: setEmailshow + children: item === null || item === void 0 ? void 0 : (_item$children3 = item.children) === null || _item$children3 === void 0 ? void 0 : _item$children3.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(TabPane, { + tab: item.name + }, item.id === null ? 0 : item.id); + }) + }), isUpdate && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(markdown_editor/* default */.Z, { + defaultValue: defaultValue, + onChange: function onChange(e) { + setDefaultValue(e); + } }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { style: { - display: 'flex' + marginTop: '10px' }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '60px', - textAlign: 'right' - }, - children: "Email\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '150px' - }, - children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.mail) || '--' - }), emailshow === 'none' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { style: { - color: '#0152d9', - marginLeft: '20px', - cursor: 'pointer' + width: '90px' }, + type: "primary", onClick: function onClick() { - setEmailshow('block'); - }, - children: "\u66F4\u6362" - }) : null] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_UpdataPhone, { - type: 4, - dispatch: dispatch, - userid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.id, - isshow: emailshow, - setEmailshow: setEmailshow, - setPhoneshow: setPhoneshow - })] - }), Prize !== null && Prize !== void 0 && Prize.leader && Prize !== null && Prize !== void 0 && Prize.teams && Prize !== null && Prize !== void 0 && (_Prize$teams$ = Prize.teams[0]) !== null && _Prize$teams$ !== void 0 && (_Prize$teams$$bank_ac = _Prize$teams$.bank_account) !== null && _Prize$teams$$bank_ac !== void 0 && _Prize$teams$$bank_ac.bank ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '16px' - }, - children: "\u7B7E/\u9886/\u5F00\u6237\u884C\u53CA\u94F6\u884C\u5361\u53F7" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '12px', - marginLeft: '20px' - }, - children: "\u4E3A\u4FDD\u969C\u5956\u91D1\u7684\u53CA\u65F6\u53D1\u653E\uFF0C\u8BF7\u961F\u957F\u5982\u5B9E\u586B\u5199\u4F60\u540D\u4E0B\u7684\u94F6\u884C\u5361\u4FE1\u606F" - })] - }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '16px' - }, - children: "\u7B7E/\u9886/\u5F00\u6237\u884C\u53CA\u94F6\u884C\u5361\u53F7" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - fontSize: '12px', - marginLeft: '20px' - }, - children: "\u4E3A\u4FDD\u969C\u5956\u91D1\u7684\u53CA\u65F6\u53D1\u653E\uFF0C\u8BF7\u961F\u957F\u5982\u5B9E\u586B\u5199\u4F60\u540D\u4E0B\u7684\u94F6\u884C\u5361\u4FE1\u606F" - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_Addleader, { - dispatch: dispatch, - userid: userid - })] - }), Prize !== null && Prize !== void 0 && Prize.leader ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - padding: '20px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - display: 'flex' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '60px', - textAlign: 'right' - }, - children: "\u5F00\u6237\u884C\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$2 = Prize.teams[0]) === null || _Prize$teams$2 === void 0 ? void 0 : (_Prize$teams$2$bank_a = _Prize$teams$2.bank_account) === null || _Prize$teams$2$bank_a === void 0 ? void 0 : _Prize$teams$2$bank_a.bank) || '--' - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - display: 'flex' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - width: '60px', - textAlign: 'right' - }, - children: "\u652F\u884C\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$3 = Prize.teams[0]) === null || _Prize$teams$3 === void 0 ? void 0 : (_Prize$teams$3$bank_a = _Prize$teams$3.bank_account) === null || _Prize$teams$3$bank_a === void 0 ? void 0 : _Prize$teams$3$bank_a.second_bank) || '--' - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - style: { - display: 'flex' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { + return updateitem(); + }, + children: "\u63D0\u4EA4" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { style: { - width: '60px', - textAlign: 'right' + marginLeft: '30px', + width: '90px' }, - children: "\u8D26\u53F7\uFF1A" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$4 = Prize.teams[0]) === null || _Prize$teams$4 === void 0 ? void 0 : (_Prize$teams$4$bank_a = _Prize$teams$4.bank_account) === null || _Prize$teams$4$bank_a === void 0 ? void 0 : _Prize$teams$4$bank_a.card_no) || '--' + onClick: function onClick() { + return setIsupdate(false); + }, + children: "\u53D6\u6D88" })] })] - }) : null, /*#__PURE__*/(0,jsx_runtime.jsx)(component_ProfessionalAuthModal, { - Scoid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.school_id - }), /*#__PURE__*/(0,jsx_runtime.jsx)(component_RealNameAuthModal, {})] - }); -} -/* harmony default export */ var PerfectuserInfon = (PerfectUser); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/AwardPdf.tsx - - -//获奖证书 - -var AwardPdf_TabPane = tabs/* default.TabPane */.Z.TabPane; - - - - -function Awardpdf(_ref) { - var Prize = _ref.Prize, - Accounts = _ref.Accounts, - getAccounts = _ref.getAccounts, - dispatch = _ref.dispatch, - userid = _ref.userid; - return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: "fr", - children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: "mb100 ", - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(tabs/* default */.Z, { - defaultActiveKey: "1", - onChange: function onChange(e) { - if (e === "2") { - getAccounts(); - } - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(AwardPdf_TabPane, { - tab: "\u83B7\u5956\u8BC1\u4E66\u4E0B\u8F7D", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(Downloadpdf, { - Prize: Prize - }) - }, "1"), /*#__PURE__*/(0,jsx_runtime.jsx)(AwardPdf_TabPane, { - tab: "\u5B8C\u5584\u4E2A\u4EBA\u4FE1\u606F", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(PerfectuserInfon, { - userid: userid, - dispatch: dispatch, - Prize: Prize, - Accounts: Accounts - }) - }, "2")] - }) - }) + }), (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$teams = ItemData.teams) === null || _ItemData$teams === void 0 ? void 0 : _ItemData$teams.length) > 0 && ((HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'mAP' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'dog' || (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.task) === 'Jittor-3') ? /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, { + dataSource: ItemData === null || ItemData === void 0 ? void 0 : ItemData.teams, + columns: columns, + pagination: false + }) : (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$teams2 = ItemData.teams) === null || _ItemData$teams2 === void 0 ? void 0 : _ItemData$teams2.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(RankingList, { + ItemData: ItemData + })] }); } -/* harmony default export */ var AwardPdf = (Awardpdf); +/* harmony default export */ var Detail_Ranking = (Ranking); +// EXTERNAL MODULE: ./src/pages/Competitions/Detail/AwardPdf.tsx + 12 modules +var AwardPdf = __webpack_require__(61612); +// EXTERNAL MODULE: ./src/utils/util.tsx +var util = __webpack_require__(29427); // EXTERNAL MODULE: ./src/utils/authority.ts var authority = __webpack_require__(7); // EXTERNAL MODULE: ./node_modules/moment/moment.js @@ -8234,275 +8885,110 @@ function MakeItem_Ranking(_ref) { }, children: item === null || item === void 0 ? void 0 : item.user_name }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#999999', - fontWeight: 400, - fontSize: '14px', - marginLeft: 60 - }, - children: ["\u6240\u5C5E\u6218\u961F", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - marginLeft: 10, - color: '#333' - }, - children: (item === null || item === void 0 ? void 0 : item.team_name) || '- -' - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#333333', - fontWeight: 400, - fontSize: '14px', - marginLeft: 40 - }, - children: ["\u5B66\u6821 ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - marginLeft: 10, - color: '#333' - }, - children: (item === null || item === void 0 ? void 0 : item.school_name) || '- -' - })] - })] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - background: '#EEF2F8', - height: 40, - borderRadius: '0px 0px 2px 2px', - paddingLeft: 60, - paddingRight: 40, - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#666666', - fontSize: '12px' - }, - children: ["\u63D0\u4EA4\u65F6\u95F4\uFF1A", item === null || item === void 0 ? void 0 : item.created_at] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#666666', - fontSize: '12px', - margin: '0px 40px' - }, - children: ["\u6D88\u8017\u5185\u5B58\uFF1A", (item === null || item === void 0 ? void 0 : item.ts_mem) || '- -', "MB"] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#666666', - fontSize: '12px' - }, - children: ["\u4EE3\u7801\u6267\u884C\u65F6\u95F4\uFF1A", (item === null || item === void 0 ? void 0 : item.ts_time) || '- -', "\u79D2"] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("a", { - style: { - display: 'flex', - alignItems: 'center' - }, - href: "/tasks/".concat(item === null || item === void 0 ? void 0 : item.game_identifier), - target: "_blank", - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont icon-chakandaima", - style: { - marginRight: 4 - } - }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - lineHeight: '14px' - }, - children: "\u67E5\u770B\u4EE3\u7801" - })] - })] - })] - }); - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, { - total: ItemData === null || ItemData === void 0 ? void 0 : ItemData.total_count, - pageSize: 10, - hideOnSinglePage: true, - style: { - marginTop: 40, - textAlign: 'center' - }, - showSizeChanger: false, - current: params.page, - onChange: function onChange(page, pageSize) { - params.page = page, setparams(objectSpread2_default()({}, params)); - getCharts(objectSpread2_default()({}, params)); - } - })] - })] - }); -} -/* harmony default export */ var MakeItem = (MakeItem_Ranking); -;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Challitems.tsx - - - -//1 2 3 排名数据样式 - - - - - -var toChinesNum = function toChinesNum(num) { - var changeNum = ['零', '一', '二', '三', '四', '五', '六', '七', '八', '九']; //changeNum[0] = "零" - var unit = ["", "十", "百", "千", "万"]; - num = parseInt(num); - var getWan = function getWan(temp) { - var strArr = temp.toString().split("").reverse(); - var newNum = ""; - for (var i = 0; i < strArr.length; i++) { - newNum = (i == 0 && strArr[i] == 0 ? "" : i > 0 && strArr[i] == 0 && strArr[i - 1] == 0 ? "" : changeNum[strArr[i]] + (strArr[i] == 0 ? unit[0] : unit[i])) + newNum; - } - return newNum; - }; - var overWan = Math.floor(num / 10000); - var noWan = num % 10000; - if (noWan.toString().length < 4) noWan = "0" + noWan; - return overWan ? getWan(overWan) + "万" + getWan(noWan) : getWan(num); -}; -function Challitems_RankingItem(_ref) { - var _item$challenges; - var item = _ref.item, - index = _ref.index, - StaffDetail = _ref.StaffDetail; - var _useState = (0,react.useState)(true), - _useState2 = slicedToArray_default()(_useState, 2), - content = _useState2[0], - setcontent = _useState2[1]; - var _useState3 = (0,react.useState)(true), - _useState4 = slicedToArray_default()(_useState3, 2), - isopen = _useState4[0], - setisonen = _useState4[1]; - var divcontent = (0,react.useRef)(); - return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - border: '1px solid #E3EFFC', - borderRadius: '2px', - marginTop: 20 - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - padding: 10, - display: 'flex', - position: 'relative' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", { - src: env/* default.IMG_SERVER */.Z.IMG_SERVER + '/' + (item === null || item === void 0 ? void 0 : item.pic), - style: { - width: 220, - height: 130, - borderRadius: '4px' - } - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - marginLeft: 20, - width: '75%' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - display: 'flex', - justifyContent: 'space-between' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#333333', - fontWeight: 500, - fontSize: '16px' - }, - children: ["\u4EFB\u52A1", toChinesNum(index + 1), "\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#333', - fontWeight: '400' - }, - children: item === null || item === void 0 ? void 0 : item.name - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#9096A3' - }, - children: ["\u5173\u5361", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - style: { - color: '#333333', - marginLeft: 5 - }, - children: item === null || item === void 0 ? void 0 : item.challenges_count - }), " "] - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - ref: divcontent, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, { - style: { - maxHeight: content && 100 - }, - value: item === null || item === void 0 ? void 0 : item.description - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - textAlign: 'center', - color: '#145DFF', - cursor: 'pointer' - }, - onClick: function onClick() { - setcontent(!content); - }, - children: [content ? '阅读全文 ' : '收起全文 ', /*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont font14 ".concat(content ? 'icon-jiantou9' : 'icon-changyongtubiao-xianxingdaochu-zhuanqu-') - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - marginTop: 14, - maxHeight: isopen && 58, - overflow: 'hidden' - }, - children: item === null || item === void 0 ? void 0 : (_item$challenges = item.challenges) === null || _item$challenges === void 0 ? void 0 : _item$challenges.map(function (items, j) { - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + color: '#999999', + fontWeight: 400, + fontSize: '14px', + marginLeft: 60 + }, + children: ["\u6240\u5C5E\u6218\u961F", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + marginLeft: 10, + color: '#333' + }, + children: (item === null || item === void 0 ? void 0 : item.team_name) || '- -' + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#333333', + fontWeight: 400, + fontSize: '14px', + marginLeft: 40 + }, + children: ["\u5B66\u6821 ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + marginLeft: 10, + color: '#333' + }, + children: (item === null || item === void 0 ? void 0 : item.school_name) || '- -' + })] + })] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { style: { - marginTop: j === 0 ? 0 : 12 + background: '#EEF2F8', + height: 40, + borderRadius: '0px 0px 2px 2px', + paddingLeft: 60, + paddingRight: 40, + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between' }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont icon-shixunti2 c-light-primary font20" - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#666666', + fontSize: '12px' + }, + children: ["\u63D0\u4EA4\u65F6\u95F4\uFF1A", item === null || item === void 0 ? void 0 : item.created_at] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#666666', + fontSize: '12px', + margin: '0px 40px' + }, + children: ["\u6D88\u8017\u5185\u5B58\uFF1A", (item === null || item === void 0 ? void 0 : item.ts_mem) || '- -', "MB"] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#666666', + fontSize: '12px' + }, + children: ["\u4EE3\u7801\u6267\u884C\u65F6\u95F4\uFF1A", (item === null || item === void 0 ? void 0 : item.ts_time) || '- -', "\u79D2"] + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("a", { style: { - marginLeft: 10 + display: 'flex', + alignItems: 'center' }, - children: ["\u7B2C", j + 1, "\u5173", items === null || items === void 0 ? void 0 : items.name] + href: "/tasks/".concat(item === null || item === void 0 ? void 0 : item.game_identifier), + target: "_blank", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-chakandaima", + style: { + marginRight: 4 + } + }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + style: { + lineHeight: '14px' + }, + children: "\u67E5\u770B\u4EE3\u7801" + })] })] - }); - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - position: 'absolute', - bottom: 14, - right: 10, - color: '#145DFF', - cursor: 'pointer' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - onClick: function onClick() { - setisonen(!isopen); - }, - children: [isopen ? '展开' : '收起', " ", /*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont font14 ".concat(isopen ? 'icon-jiantou9' : 'icon-changyongtubiao-xianxingdaochu-zhuanqu-') })] - }), " ", (StaffDetail === null || StaffDetail === void 0 ? void 0 : StaffDetail.enrolled) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { - onClick: function onClick() { - window.open("/shixuns/".concat(item === null || item === void 0 ? void 0 : item.identifier, "/challenges")); - }, - style: { - marginLeft: 30 - }, - type: "primary", - children: "\u5F00\u542F\u6311\u6218" - })] - })] + }); + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, { + total: ItemData === null || ItemData === void 0 ? void 0 : ItemData.total_count, + pageSize: 10, + hideOnSinglePage: true, + style: { + marginTop: 40, + textAlign: 'center' + }, + showSizeChanger: false, + current: params.page, + onChange: function onChange(page, pageSize) { + params.page = page, setparams(objectSpread2_default()({}, params)); + getCharts(objectSpread2_default()({}, params)); + } })] - }) + })] }); } -/* harmony default export */ var Challitems = (Challitems_RankingItem); +/* harmony default export */ var MakeItem = (MakeItem_Ranking); +// EXTERNAL MODULE: ./src/pages/Competitions/Detail/Challitems.tsx + 1 modules +var Challitems = __webpack_require__(75725); ;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Entrance.tsx @@ -8521,8 +9007,9 @@ var Entrance_TabPane = tabs/* default.TabPane */.Z.TabPane; + function Entrance_Ranking(_ref) { - var _ChartRules$stages2, _ChartRules$stages5, _ChartRules$stages6, _item$children, _item$children3, _ItemData$results; + var _ChartRules$stages2, _ChartRules$stages5, _ChartRules$stages6, _item$children, _item$children3, _ItemData$results, _NewItems$data; var loading = _ref.loading, ChartRules = _ref.ChartRules, ItemData = _ref.ItemData, @@ -8554,19 +9041,23 @@ function Entrance_Ranking(_ref) { _useState10 = slicedToArray_default()(_useState9, 2), items = _useState10[0], setItems = _useState10[1]; + var _useState11 = (0,react.useState)([]), + _useState12 = slicedToArray_default()(_useState11, 2), + NewItems = _useState12[0], + setnewItems = _useState12[1]; var _useParams = (0,_umi_production_exports.useParams)(), identifier = _useParams.identifier; - var _useState11 = (0,react.useState)({ + var _useState13 = (0,react.useState)({ page: 1, limit: 10 }), - _useState12 = slicedToArray_default()(_useState11, 2), - params = _useState12[0], - setparams = _useState12[1]; - var _useState13 = (0,react.useState)(), _useState14 = slicedToArray_default()(_useState13, 2), - openitem = _useState14[0], - setopenitem = _useState14[1]; + params = _useState14[0], + setparams = _useState14[1]; + var _useState15 = (0,react.useState)(), + _useState16 = slicedToArray_default()(_useState15, 2), + openitem = _useState16[0], + setopenitem = _useState16[1]; (0,react.useEffect)(function () { var _ChartRules$stages; //进入初始化状态为第一个 @@ -8600,6 +9091,37 @@ function Entrance_Ranking(_ref) { return _ref2.apply(this, arguments); }; }(); + (0,react.useEffect)(function () { + if (HeaderDetail !== null && HeaderDetail !== void 0 && HeaderDetail.is_new) { + getshixun(); + } + }, [HeaderDetail]); + function getshixun() { + return _getshixun.apply(this, arguments); + } + function _getshixun() { + _getshixun = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() { + var res; + return regeneratorRuntime_default()().wrap(function _callee4$(_context4) { + while (1) switch (_context4.prev = _context4.next) { + case 0: + _context4.next = 2; + return (0,utils_fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/get_shixun_settings.json"), { + method: 'get' + }); + case 2: + res = _context4.sent; + if ((res === null || res === void 0 ? void 0 : res.status) === 0) { + setnewItems(res); + } + case 4: + case "end": + return _context4.stop(); + } + }, _callee4); + })); + return _getshixun.apply(this, arguments); + } return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { children: [(ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages5 = ChartRules.stages) === null || _ChartRules$stages5 === void 0 ? void 0 : _ChartRules$stages5.length) > 0 ? null : /*#__PURE__*/(0,jsx_runtime.jsx)(RankingNuLL, {}), (ChartRules === null || ChartRules === void 0 ? void 0 : (_ChartRules$stages6 = ChartRules.stages) === null || _ChartRules$stages6 === void 0 ? void 0 : _ChartRules$stages6.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tabs/* default */.Z, { tabBarStyle: { @@ -8716,15 +9238,25 @@ function Entrance_Ranking(_ref) { children: (ItemData === null || ItemData === void 0 ? void 0 : ItemData.score_source) === 0 ? '经验值' : '预测准确率' }), " "] })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, { + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(spin/* default */.Z, { spinning: loading, - children: ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$results = ItemData.results) === null || _ItemData$results === void 0 ? void 0 : _ItemData$results.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(Challitems, { + children: [!(HeaderDetail !== null && HeaderDetail !== void 0 && HeaderDetail.is_new) && (ItemData === null || ItemData === void 0 ? void 0 : (_ItemData$results = ItemData.results) === null || _ItemData$results === void 0 ? void 0 : _ItemData$results.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(Challitems/* default */.Z, { + dispatch: dispatch, + Header: HeaderDetail, StaffDetail: StaffDetail, item: item, index: index }); - }) + })), (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.is_new) && (NewItems === null || NewItems === void 0 ? void 0 : (_NewItems$data = NewItems.data) === null || _NewItems$data === void 0 ? void 0 : _NewItems$data.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(Challitems/* default */.Z, { + dispatch: dispatch, + Header: HeaderDetail, + StaffDetail: StaffDetail, + item: item, + index: index + }); + }))] }), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, { total: ItemData === null || ItemData === void 0 ? void 0 : ItemData.total_count, pageSize: 10, @@ -8753,6 +9285,10 @@ var PhoneModal = __webpack_require__(74009); // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js var objectDestructuringEmpty = __webpack_require__(13012); var objectDestructuringEmpty_default = /*#__PURE__*/__webpack_require__.n(objectDestructuringEmpty); +// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules +var form_style = __webpack_require__(75627); +// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules +var es_form = __webpack_require__(51018); // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js var createForOfIteratorHelper = __webpack_require__(74704); var createForOfIteratorHelper_default = /*#__PURE__*/__webpack_require__.n(createForOfIteratorHelper); @@ -9823,7 +10359,7 @@ var WorkSubmit = function WorkSubmit(_ref) { -var Detail_excluded = ["globalSetting", "loading", "dispatch", "user"]; +var _excluded = ["globalSetting", "loading", "dispatch", "user"]; @@ -9854,7 +10390,7 @@ var competitionDetails = function competitionDetails(_ref) { loading = _ref.loading, dispatch = _ref.dispatch, user = _ref.user, - props = objectWithoutProperties_default()(_ref, Detail_excluded); + props = objectWithoutProperties_default()(_ref, _excluded); var _useState = (0,react.useState)({ avatar_url: "" }), @@ -10147,21 +10683,28 @@ var competitionDetails = function competitionDetails(_ref) { while (1) switch (_context4.prev = _context4.next) { case 0: e.stopPropagation(); - if (!(HeaderDetail.teacher_need_phone || HeaderDetail.member_need_phone)) { + if (item.invite_code) { _context4.next = 4; break; } - setshowphone(true); + message/* default.info */.ZP.info('本竞赛只面向部分学校/单位开放,你暂时没有参赛资格'); return _context4.abrupt("return"); case 4: + if (!(HeaderDetail.teacher_need_phone || HeaderDetail.member_need_phone)) { + _context4.next = 7; + break; + } + setshowphone(true); + return _context4.abrupt("return"); + case 7: if ((0,verifyLogin/* handleVerify */.tJ)(dispatch)) { - _context4.next = 6; + _context4.next = 9; break; } return _context4.abrupt("return"); - case 6: + case 9: if (!(HeaderDetail !== null && HeaderDetail !== void 0 && HeaderDetail.is_authentication && !(user !== null && user !== void 0 && (_user$userInfo4 = user.userInfo) !== null && _user$userInfo4 !== void 0 && _user$userInfo4.authentication))) { - _context4.next = 9; + _context4.next = 12; break; } dispatch({ @@ -10171,34 +10714,41 @@ var competitionDetails = function competitionDetails(_ref) { } }); return _context4.abrupt("return"); - case 9: + case 12: if (!(HeaderDetail !== null && HeaderDetail !== void 0 && HeaderDetail.enroll_url)) { - _context4.next = 12; + _context4.next = 15; break; } (0,util/* openNewWindow */.xg)(HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.enroll_url); return _context4.abrupt("return"); - case 12: + case 15: if (!(url === "ismodel")) { - _context4.next = 26; + _context4.next = 32; + break; + } + if (item.invite_code) { + _context4.next = 19; break; } + message/* default.info */.ZP.info('本竞赛只面向部分学校/单位开放,你暂时没有参赛资格'); + return _context4.abrupt("return"); + case 19: if (!(item.member_of_course === true)) { - _context4.next = 17; + _context4.next = 23; break; } (0,util/* openNewWindow */.xg)("/classrooms/".concat(item.course_id)); - _context4.next = 24; + _context4.next = 30; break; - case 17: + case 23: if (item.invite_code) { - _context4.next = 20; + _context4.next = 26; break; } message/* default.info */.ZP.info('本竞赛只面向部分学校/单位开放,你暂时没有参赛资格'); return _context4.abrupt("return"); - case 20: - _context4.next = 22; + case 26: + _context4.next = 28; return dispatch({ type: 'competitions/addApplytojoincourse', payload: { @@ -10206,48 +10756,24 @@ var competitionDetails = function competitionDetails(_ref) { student: 1 } }); - case 22: + case 28: result = _context4.sent; if (result.status === 0) { (0,util/* openNewWindow */.xg)("/classrooms/".concat(item.course_id)); } - case 24: - _context4.next = 30; + case 30: + _context4.next = 36; break; - case 26: + case 32: if (!(StaffDetail.enrolled === true)) { - _context4.next = 29; + _context4.next = 35; break; } (0,util/* openNewWindow */.xg)(url); return _context4.abrupt("return"); - case 29: + case 35: setisshowmodal(true); - // if (url === "personal") { - // if (item.enroll_ended === true) { - // //已截止 - // message.info(`报名已截止`); - // return; - // } - // if (StaffDetail.enrolled === true) { - // message.info(`你已经报名,不能重复报名!`); - // return; - // } - // const competitionTeamsresult = await dispatch({ - // type: 'competitions/competitionTeams', - // payload: { - // identifier: item.identifier - // } - // }) - // if (competitionTeamsresult) { - - // message.info('报名成功,预祝您夺得桂冠!') - // } - - // } else { - // openNewWindow(url) - // } - case 30: + case 36: case "end": return _context4.stop(); } @@ -10563,6 +11089,7 @@ var competitionDetails = function competitionDetails(_ref) { } } } + //判断竞赛是否关闭 if (StaffDetail !== null && StaffDetail !== void 0 && StaffDetail.enroll_ended) { message/* default.info */.ZP.info('报名已截止,无需报名'); @@ -10684,7 +11211,7 @@ var competitionDetails = function competitionDetails(_ref) { width: '400px' }, children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - className: "".concat(Detailmodules.titlesize), + className: "".concat(Detailmodules/* default.titlesize */.Z.titlesize), children: [HeaderDetail.name, HeaderDetail.sub_title ? '-' + HeaderDetail.sub_title : null] }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { style: { @@ -10741,7 +11268,7 @@ var competitionDetails = function competitionDetails(_ref) { })] })] }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - className: Detailmodules.timesize, + className: Detailmodules/* default.timesize */.Z.timesize, style: { marginTop: 30 }, @@ -10753,7 +11280,7 @@ var competitionDetails = function competitionDetails(_ref) { children: "\u7ADE\u8D5B\u65F6\u95F4\uFF1A" }), HeaderDetail.start_time, "~", HeaderDetail.end_time] }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - className: Detailmodules.timesize, + className: Detailmodules/* default.timesize */.Z.timesize, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: '#9b9b9b' @@ -10761,7 +11288,7 @@ var competitionDetails = function competitionDetails(_ref) { children: "\u62A5\u540D\u622A\u6B62\uFF1A" }), HeaderDetail.enroll_end_time] }), HeaderDetail.competition_status === 'ended' ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - className: Detailmodules.timesize, + className: Detailmodules/* default.timesize */.Z.timesize, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: '#9b9b9b' @@ -10769,7 +11296,7 @@ var competitionDetails = function competitionDetails(_ref) { children: "\u7ADE\u8D5B\u72B6\u6001\uFF1A" }), "\u5DF2\u7ED3\u675F"] }) : null, HeaderDetail.competition_status === 'nearly_published' ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - className: Detailmodules.timesize, + className: Detailmodules/* default.timesize */.Z.timesize, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: '#9b9b9b' @@ -10777,7 +11304,7 @@ var competitionDetails = function competitionDetails(_ref) { children: "\u7ADE\u8D5B\u72B6\u6001\uFF1A" }), "\u672A\u53D1\u5E03"] }) : null, HeaderDetail.competition_status === 'progressing' ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", { - className: Detailmodules.timesize, + className: Detailmodules/* default.timesize */.Z.timesize, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: '#9b9b9b' @@ -10809,27 +11336,27 @@ var competitionDetails = function competitionDetails(_ref) { return item.module_type === 'entrance'; })) === null || _HeaderDetail$competi6 === void 0 ? void 0 : _HeaderDetail$competi6.length) > 0 ? '' : 'none' }, - className: Detailmodules.buttonsize, + className: Detailmodules/* default.buttonsize */.Z.buttonsize, children: [(HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.mode) === 1 && '赛题入口', (HeaderDetail === null || HeaderDetail === void 0 ? void 0 : HeaderDetail.mode) === 2 && '进入课堂'] }), HeaderDetail.competition_status === "ended" ? /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { type: "primary", - className: Detailmodules.buttonsize, + className: Detailmodules/* default.buttonsize */.Z.buttonsize, disabled: true, children: "\u5DF2\u7ED3\u675F" }) : null, HeaderDetail.competition_status === 'nearly_published' ? /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { type: "primary", - className: Detailmodules.buttonsize, + className: Detailmodules/* default.buttonsize */.Z.buttonsize, disabled: true, children: "\u672A\u53D1\u5E03" }) : null, HeaderDetail.competition_status !== 'nearly_published' && HeaderDetail.enroll_end && HeaderDetail.competition_status !== 'ended' ? /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { type: "primary", - className: Detailmodules.buttonsize, + className: Detailmodules/* default.buttonsize */.Z.buttonsize, disabled: true, children: "\u62A5\u540D\u622A\u6B62" }) : null, HeaderDetail.competition_status === 'progressing' && HeaderDetail.enroll_end != true && HeaderDetail.enroll_end_time ? /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { type: "primary", disabled: StaffDetail.enrolled && !HeaderDetail.need_attachment, - className: Detailmodules.buttonsize, + className: Detailmodules/* default.buttonsize */.Z.buttonsize, onClick: function onClick(e) { if (StaffDetail.enrolled && HeaderDetail.need_attachment) { var _see$current; @@ -10844,20 +11371,20 @@ var competitionDetails = function competitionDetails(_ref) { onClick: function onClick(e) { return gotocourse(e, HeaderDetail, HeaderDetail.mode === 2 ? 'ismodel' : HeaderDetail.personal ? 'personal' : "/competitions/".concat(HeaderDetail.identifier, "/detail/enroll")); }, - className: Detailmodules.myteam, + className: Detailmodules/* default.myteam */.Z.myteam, children: (0,authority/* isSuperAdmin */.j5)() ? '参赛战队>>' : '我的战队>>' })] })] }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.bootmdetail, + className: Detailmodules/* default.bootmdetail */.Z.bootmdetail, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: Detailmodules.flex1, + className: Detailmodules/* default.flex1 */.Z.flex1, children: /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default */.Z, { selectedKeys: ["".concat(Selectkey)], children: HeaderDetail && HeaderDetail.competition_modules && HeaderDetail.competition_modules.map(function (item, index) { if (item.module_type != "enroll") { return /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default.Item */.Z.Item, { - className: Detailmodules.menuItem, + className: Detailmodules/* default.menuItem */.Z.menuItem, onClick: function onClick() { if (item !== null && item !== void 0 && item.is_authentication) { if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch)) { @@ -10879,11 +11406,11 @@ var competitionDetails = function competitionDetails(_ref) { }) }) }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.flex6, + className: Detailmodules/* default.flex6 */.Z.flex6, style: { padding: (showmake || entrance) && 0 }, - children: [isAward ? /*#__PURE__*/(0,jsx_runtime.jsx)(AwardPdf, { + children: [isAward ? /*#__PURE__*/(0,jsx_runtime.jsx)(AwardPdf/* default */.Z, { dispatch: dispatch, userid: user === null || user === void 0 ? void 0 : (_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.user_id, Prize: Prize, @@ -10976,7 +11503,7 @@ var competitionDetails = function competitionDetails(_ref) { return setisshowType(false); }, children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: Detailmodules.modal, + className: Detailmodules/* default.modal */.Z.modal, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { children: "\u534E\u4E3A\u6A21\u578B\u738B\u8005\u6311\u6218\u8D5B\u9EC4\u91D1\u8D5B\u6B63\u5F0F\u5F00\u542F\u5566" }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { @@ -11129,6 +11656,7 @@ function Addteans(_ref) { personname = _useState2[0], setpersonname = _useState2[1]; return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z, { + className: "modal_styles", centered: true, title: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("div", { style: { @@ -11167,13 +11695,15 @@ function Addteans(_ref) { children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("span", { style: { fontSize: '14px', - color: '#F73737' + color: '#F73737', + marginLeft: '10px' }, children: "*" }), "\u961F\u540D\uFF1A", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("p", { style: { marginTop: '15px', - marginLeft: '15px' + marginLeft: '10px', + marginRight: '10px' }, children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(antd_es_input__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z, { placeholder: "请输入队名", @@ -11231,6 +11761,7 @@ function Jointeam(_ref) { code = _useState2[0], setCode = _useState2[1]; return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_6__/* ["default"] */ .Z, { + className: "modal_styles", centered: true, title: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("div", { style: { @@ -11268,10 +11799,10 @@ function Jointeam(_ref) { children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("div", { children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("p", { style: { - marginTop: '15px', - marginLeft: '15px', + marginLeft: '10px', display: 'flex', - alignItems: 'center' + alignItems: 'center', + marginRight: '10px' }, children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("span", { style: { @@ -13536,6 +14067,18 @@ function useInterval(callback, delay) { /***/ }), +/***/ 16455: +/*!**********************************************************!*\ + !*** ./src/pages/Competitions/Detail/index.less?modules ***! + \**********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__) { + +"use strict"; +// extracted by mini-css-extract-plugin +/* harmony default export */ __webpack_exports__["Z"] = ({"flex_box_center":"flex_box_center___fo_3c","flex_space_between":"flex_space_between___G46CO","flex_box_vertical_center":"flex_box_vertical_center___br3Kr","flex_box_center_end":"flex_box_center_end___Xdo94","flex_box_column":"flex_box_column___Bcnmr","wrp":"wrp___TY7QJ","bg":"bg___xiaSy","commonimg":"commonimg___a4R0Q","titlesize":"titlesize___Wdd_a","timesize":"timesize___OkfYO","flex1":"flex1___N6paY","buttonsize":"buttonsize___syL9V","myteam":"myteam___RTWAt","bootmdetail":"bootmdetail___taUGk","flex6":"flex6___RuzJ4","menuItem":"menuItem___Kww4S","spanprev":"spanprev___Cssg_","spannext":"spannext___jVFGE","divwidth":"divwidth___r5hE3","receiveclick":"receiveclick___BauOs","receivealready":"receivealready___Z7Wo0","bkfff":"bkfff___lHrcJ","ant-input":"ant-input___m4bn_","onediv":"onediv___xzZRa","onetop":"onetop___M4GfM","towdiv":"towdiv___yj3ds","towtop":"towtop___veKa4","threediv":"threediv___Ztz0D","threetop":"threetop___zDXIg","imgradius":"imgradius___r4uGN","prize":"prize___YNRD4","spanrightradius":"spanrightradius___tC6T5","bottomItem":"bottomItem___CHcMJ","myTeam":"myTeam___fm7KX","downloadpdf":"downloadpdf___a2NuA","pdfBut":"pdfBut___Drr6h","PerfectBut":"PerfectBut___wEhjV","PerfectCent":"PerfectCent___HD3Id","PerfectCentName":"PerfectCentName___smdJX","teamItem":"teamItem___mx2f3","dash":"dash___l6QH1","modal":"modal___yXh2H","maskText":"maskText___Tdh6h","box":"box___K2uQ4","open_style":"open_style___gLTB9","title_style":"title_style___j6zvN"}); + +/***/ }), + /***/ 49288: /*!*****************************************************!*\ !*** ./node_modules/antd/es/auto-complete/index.js ***! @@ -13669,94 +14212,6 @@ var style = __webpack_require__(95985); // style dependencies -/***/ }), - -/***/ 27049: -/*!***********************************************!*\ - !*** ./node_modules/antd/es/divider/index.js ***! - \***********************************************/ -/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 87462); -/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ 4942); -/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! classnames */ 94184); -/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ 67294); -/* harmony import */ var _config_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../config-provider */ 53124); - - -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; -}; - - - - -var Divider = function Divider(props) { - var _classNames; - var _React$useContext = react__WEBPACK_IMPORTED_MODULE_1__.useContext(_config_provider__WEBPACK_IMPORTED_MODULE_2__/* .ConfigContext */ .E_), - getPrefixCls = _React$useContext.getPrefixCls, - direction = _React$useContext.direction; - var customizePrefixCls = props.prefixCls, - _props$type = props.type, - type = _props$type === void 0 ? 'horizontal' : _props$type, - _props$orientation = props.orientation, - orientation = _props$orientation === void 0 ? 'center' : _props$orientation, - orientationMargin = props.orientationMargin, - className = props.className, - children = props.children, - dashed = props.dashed, - plain = props.plain, - restProps = __rest(props, ["prefixCls", "type", "orientation", "orientationMargin", "className", "children", "dashed", "plain"]); - var prefixCls = getPrefixCls('divider', customizePrefixCls); - var orientationPrefix = orientation.length > 0 ? "-".concat(orientation) : orientation; - var hasChildren = !!children; - var hasCustomMarginLeft = orientation === 'left' && orientationMargin != null; - var hasCustomMarginRight = orientation === 'right' && orientationMargin != null; - var classString = classnames__WEBPACK_IMPORTED_MODULE_0___default()(prefixCls, "".concat(prefixCls, "-").concat(type), (_classNames = {}, (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-with-text"), hasChildren), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-with-text").concat(orientationPrefix), hasChildren), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-dashed"), !!dashed), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-plain"), !!plain), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-no-default-orientation-margin-left"), hasCustomMarginLeft), (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(_classNames, "".concat(prefixCls, "-no-default-orientation-margin-right"), hasCustomMarginRight), _classNames), className); - var innerStyle = (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)((0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)({}, hasCustomMarginLeft && { - marginLeft: orientationMargin - }), hasCustomMarginRight && { - marginRight: orientationMargin - }); - // Warning children not work in vertical mode - if (false) {} - return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z)({ - className: classString - }, restProps, { - role: "separator" - }), children && type !== 'vertical' && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", { - className: "".concat(prefixCls, "-inner-text"), - style: innerStyle - }, children)); -}; -/* harmony default export */ __webpack_exports__["Z"] = (Divider); - -/***/ }), - -/***/ 98541: -/*!*****************************************************************!*\ - !*** ./node_modules/antd/es/divider/style/index.js + 1 modules ***! - \*****************************************************************/ -/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) { - -"use strict"; - -// EXTERNAL MODULE: ./node_modules/antd/es/style/default.less -var style_default = __webpack_require__(43146); -;// CONCATENATED MODULE: ./node_modules/antd/es/divider/style/index.less -// extracted by mini-css-extract-plugin - -;// CONCATENATED MODULE: ./node_modules/antd/es/divider/style/index.js - - - /***/ }), /***/ 4977: diff --git a/p__Competitions__Detail__index.chunk.css b/p__Competitions__Detail__index.chunk.css index c61cdb6fd4..2d8d56244d 100644 --- a/p__Competitions__Detail__index.chunk.css +++ b/p__Competitions__Detail__index.chunk.css @@ -368,9 +368,33 @@ li:last-child > .ant-breadcrumb-separator { .downloadpdf___a2NuA { max-width: 791px; height: 40px; - background: #f9f9f9; + background: #FFF5E7; + color: #E99237; line-height: 40px; - padding-left: 15px; + padding-left: 20px; +} +.pdfBut___Drr6h { + height: 32px; + box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5); + border-radius: 4px; + border-color: #BACFFE; + color: #3061D0; +} +.PerfectBut___wEhjV { + height: 28px; + box-shadow: 0px 0px 2px 0px #E8EFFB; + border-radius: 14px; + border-color: #C8D2EA; + color: #3061D0; +} +.PerfectCent___HD3Id { + padding: 30px 0; + border-bottom: 1px solid #F1F1F1; + margin-bottom: 30px; +} +.PerfectCent___HD3Id .PerfectCentName___smdJX { + width: 56px; + text-align: right; } .teamItem___mx2f3 { display: flex; @@ -452,6 +476,40 @@ li:last-child > .ant-breadcrumb-separator { color: #ffffff; margin-bottom: 10px; } +.maskText___Tdh6h { + position: absolute; + left: 0; + bottom: 0; + right: 0; + height: 40px; + background: linear-gradient(to bottom, #FFFFFF00, #ffffff); + z-index: 1; +} +.box___K2uQ4 { + border-bottom: 1px solid #E3EFFC; + border-radius: 2px; + margin: 20px 20px 20px 0; + padding-bottom: 20px; +} +.box___K2uQ4:last-child { + border-bottom: none; +} +.open_style___gLTB9 { + text-align: center; + color: #9096A3; + cursor: pointer; + margin-top: 10px; + font-size: 12px; +} +.open_style___gLTB9:hover { + color: #165DFF; +} +.title_style___j6zvN { + max-width: 260px; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ @@ -2198,135 +2256,6 @@ span.CodeMirror-selectedtext { /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/divider/style/index.less ***! - \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ -.ant-divider { - box-sizing: border-box; - margin: 0; - padding: 0; - color: rgba(0, 0, 0, 0.85); - font-size: 12px; - font-variant: tabular-nums; - line-height: 1.66667; - list-style: none; - font-feature-settings: tnum, "tnum"; - border-top: 1px solid rgba(0, 0, 0, 0.06); -} -.ant-divider-vertical { - position: relative; - top: -0.06em; - display: inline-block; - height: 0.9em; - margin: 0 8px; - vertical-align: middle; - border-top: 0; - border-left: 1px solid rgba(0, 0, 0, 0.06); -} -.ant-divider-horizontal { - display: flex; - clear: both; - width: 100%; - min-width: 100%; - margin: 24px 0; -} -.ant-divider-horizontal.ant-divider-with-text { - display: flex; - align-items: center; - margin: 16px 0; - color: rgba(0, 0, 0, 0.85); - font-weight: 500; - font-size: 14px; - white-space: nowrap; - text-align: center; - border-top: 0; - border-top-color: rgba(0, 0, 0, 0.06); -} -.ant-divider-horizontal.ant-divider-with-text::before, -.ant-divider-horizontal.ant-divider-with-text::after { - position: relative; - width: 50%; - border-top: 1px solid transparent; - border-top-color: inherit; - border-bottom: 0; - transform: translateY(50%); - content: ''; -} -.ant-divider-horizontal.ant-divider-with-text-left::before { - width: 5%; -} -.ant-divider-horizontal.ant-divider-with-text-left::after { - width: 95%; -} -.ant-divider-horizontal.ant-divider-with-text-right::before { - width: 95%; -} -.ant-divider-horizontal.ant-divider-with-text-right::after { - width: 5%; -} -.ant-divider-inner-text { - display: inline-block; - padding: 0 1em; -} -.ant-divider-dashed { - background: none; - border-color: rgba(0, 0, 0, 0.06); - border-style: dashed; - border-width: 1px 0 0; -} -.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before, -.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after { - border-style: dashed none none; -} -.ant-divider-vertical.ant-divider-dashed { - border-width: 0 0 0 1px; -} -.ant-divider-plain.ant-divider-with-text { - color: rgba(0, 0, 0, 0.85); - font-weight: normal; - font-size: 12px; -} -.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before { - width: 0; -} -.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after { - width: 100%; -} -.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text { - padding-left: 0; -} -.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before { - width: 100%; -} -.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after { - width: 0; -} -.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text { - padding-right: 0; -} -.ant-divider-rtl { - direction: rtl; -} -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before { - width: 95%; -} -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after { - width: 5%; -} -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before { - width: 5%; -} -.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after { - width: 95%; -} -/* stylelint-disable no-duplicate-selectors */ -/* stylelint-disable */ -/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ - /*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/component/index.less?modules ***! \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ @@ -2334,11 +2263,14 @@ span.CodeMirror-selectedtext { height: 500px; overflow-y: auto; } +.modal___A9Ovz div[class~='ant-modal-header'] { + padding: 0; +} .colorBlue___XSmR5 { color: #0152d9; } .formWrap___wRvaA div[class~='ant-form-item-label'] { - width: 100px; + width: 85px; text-align: right; } .formWrap___wRvaA span[class~='ant-upload-btn'] { @@ -2415,7 +2347,7 @@ span.CodeMirror-selectedtext { } .note___CXi9y { padding: 19px; - background: #f5f5f5; + background: #F6F7F9; margin-top: 20px; color: #656565; font-size: 14px; @@ -2892,6 +2824,73 @@ span.CodeMirror-selectedtext { /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/AwardPdf.less?modules ***! + \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +.scoreByBlankRadio____FOPE { + background: #F6F7F9; + box-shadow: inset 0px 1px 3px 0px #C8D2EA; + border-radius: 16px; + margin-right: 20px; + margin-bottom: 20px; +} +.scoreByBlankRadio____FOPE span { + font-size: 14px; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper'] { + background-color: transparent; + border: none; + padding: 0 20px; + display: inline-flex; + align-items: center; + height: 32px; + color: #9096A3; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper']::before { + background-color: transparent; + display: none; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked'] { + background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%); + border: 1px solid #C8D2EA; + border-radius: 16px; + padding: 0 20px; + display: inline-flex; + align-items: center; + color: #165DFF; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:first-child { + border-right-color: #C8D2EA; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:focus-within { + box-shadow: none; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']::before { + background-color: transparent; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover { + background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%); + box-shadow: inset 0px 1px 3px 0px #D7D8D9; + border: 1px solid #C8D2EA; + border-radius: 16px; + padding: 0 20px; + display: inline-flex; + align-items: center; + color: #3061D0; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover:first-child { + border-right-color: #C8D2EA; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover:focus-within { + box-shadow: none; +} +.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover::before { + background-color: transparent; +} +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ + /*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/components/WorkSubmit/index.less?modules ***! \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ diff --git a/p__Competitions__Edit__index.async.js b/p__Competitions__Edit__index.async.js new file mode 100644 index 0000000000..f9b8a59afa --- /dev/null +++ b/p__Competitions__Edit__index.async.js @@ -0,0 +1,19410 @@ +"use strict"; +(self["webpackChunk"] = self["webpackChunk"] || []).push([[38797,12768,67570,85343,12325,60696],{ + +/***/ 96403: +/*!*********************************!*\ + !*** ./src/pages/tasks/util.js ***! + \*********************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "Ax": function() { return /* binding */ processTreeData; }, +/* harmony export */ "Ds": function() { return /* binding */ debounce; }, +/* harmony export */ "KI": function() { return /* binding */ apiPref; }, +/* harmony export */ "SI": function() { return /* binding */ getTreeData; }, +/* harmony export */ "f1": function() { return /* binding */ isCompileOk; } +/* harmony export */ }); +/* unused harmony export isProd */ +/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/utils/env */ 59758); + +function isCompileOk(rs) { + var flag = true; + if (rs.length > 0) { + for (var i = 0; i < rs.length; i++) { + if (rs[i].compile_success == 0 || !rs[i].compile_success) { + flag = false; + break; + } + } + } else { + flag = false; + } + return flag; +} +function getTreeData(data) { + var parentKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; + var result = []; + for (var i = 0; i < data.length; i++) { + var item = data[i]; + var key = parentKey ? "".concat(parentKey, "/").concat(item.name) : "".concat(item.name); + result.push({ + title: item.name, + isLeaf: item.type === 'tree' ? false : true, + key: key + }); + } + return result; +} +function processTreeData(repos, key, newData) { + for (var i = 0; i < repos.length; i++) { + var item = repos[i]; + if (item.key === key) { + item.children = newData; + break; + } + if (item.children) { + processTreeData(item.children, key, newData); + } + } + return repos; +} +function debounce(func, wait, immediate) { + var timeout; + return function () { + var context = this, + args = arguments; + var later = function later() { + timeout = null; + if (!immediate) func.apply(context, args); + }; + var callNow = immediate && !timeout; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + if (callNow) func.apply(context, args); + }; +} +var isProd = true; +var apiPref = _utils_env__WEBPACK_IMPORTED_MODULE_0__/* ["default"].API_SERVER */ .Z.API_SERVER; +// export const isProd = +// window.location.href.indexOf('test-') > 0 || +// window.location.href.indexOf('localhost') > 0 +// ? false +// : true; + +// export const apiPref = isProd +// ? 'https://www.educoder.net' +// : 'https://test-newweb.educoder.net'; + +/***/ }), + +/***/ 48559: +/*!**********************************************!*\ + !*** ./src/components/AsyncButton/index.tsx ***! + \**********************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "Z": function() { return /* binding */ AsyncButton; } +/* harmony export */ }); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/objectSpread2.js */ 42122); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var antd_es_button_style__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! antd/es/button/style */ 29913); +/* harmony import */ var antd_es_button__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! antd/es/button */ 71577); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js */ 17061); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2__); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/asyncToGenerator.js */ 17156); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_3__); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/slicedToArray.js */ 27424); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_4__); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js */ 70215); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_5__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! react/jsx-runtime */ 85893); + + + + + + + +var _excluded = ["children"]; + + +var AsyncButton = function AsyncButton(_ref) { + var children = _ref.children, + props = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_5___default()(_ref, _excluded); + var _useState = (0,react__WEBPACK_IMPORTED_MODULE_6__.useState)(false), + _useState2 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_4___default()(_useState, 2), + btnLoading = _useState2[0], + setBtnLoading = _useState2[1]; + return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_7__.jsx)(antd_es_button__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .Z, _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default()({}, props), {}, { + loading: btnLoading, + onClick: /*#__PURE__*/function () { + var _ref2 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_3___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2___default()().mark(function _callee(e) { + return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2___default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + _context.prev = 0; + setBtnLoading(true); + _context.next = 4; + return props.onClick(e); + case 4: + setBtnLoading(false); + _context.next = 11; + break; + case 7: + _context.prev = 7; + _context.t0 = _context["catch"](0); + console.error(_context.t0); + setBtnLoading(false); + case 11: + case "end": + return _context.stop(); + } + }, _callee, null, [[0, 7]]); + })); + return function (_x) { + return _ref2.apply(this, arguments); + }; + }(), + children: children + })); +}; + +/***/ }), + +/***/ 8213: +/*!******************************************************!*\ + !*** ./src/components/AuthenticationModel/index.tsx ***! + \******************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +/* harmony import */ var antd_es_modal_style__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! antd/es/modal/style */ 35611); +/* harmony import */ var antd_es_modal__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! antd/es/modal */ 85402); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js */ 70215); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_1__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var umi__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! umi */ 89214); +/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! react/jsx-runtime */ 85893); + + + +var _excluded = ["shixunsDetail", "globalSetting", "loading", "dispatch"]; + + + + +var AuthModal = function AuthModal(_ref) { + var shixunsDetail = _ref.shixunsDetail, + globalSetting = _ref.globalSetting, + loading = _ref.loading, + dispatch = _ref.dispatch, + props = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectWithoutProperties_js__WEBPACK_IMPORTED_MODULE_1___default()(_ref, _excluded); + return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z, { + centered: true, + keyboard: false, + closable: false, + zIndex: 6666, + title: "\u63D0\u793A", + open: shixunsDetail.actionTabs.key === 'Banner-Auth', + okText: "\u786E\u5B9A", + cancelText: "\u53D6\u6D88", + onOk: function onOk() { + dispatch({ + type: 'shixunsDetail/setActionTabs', + payload: {} + }); + window.location.href = '/account/certification'; + }, + onCancel: function onCancel() { + dispatch({ + type: 'shixunsDetail/setActionTabs', + payload: {} + }); + }, + children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsxs)("p", { + className: "tc font16", + children: ["\u5F53\u524D\u7ADE\u8D5B\u9700\u8981\u5B9E\u540D\u8BA4\u8BC1\uFF0C\u8BF7\u5148\u5B8C\u6210\u5B9E\u540D\u8BA4\u8BC1\u540E\u518D\u62A5\u540D\u53C2\u8D5B", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("br", {}), "\u8BF7\u95EE\u662F\u5426\u524D\u5F80\u8FDB\u884C\u8BA4\u8BC1\uFF1F"] + }) + }); +}; +/* harmony default export */ __webpack_exports__["Z"] = ((0,umi__WEBPACK_IMPORTED_MODULE_3__.connect)(function (_ref2) { + var shixunsDetail = _ref2.shixunsDetail, + loading = _ref2.loading, + globalSetting = _ref2.globalSetting; + return { + shixunsDetail: shixunsDetail, + globalSetting: globalSetting, + loading: loading.models.index + }; +})(AuthModal)); + +/***/ }), + +/***/ 33722: +/*!*********************************************************!*\ + !*** ./src/components/FormSearch/index.tsx + 1 modules ***! + \*********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ components_FormSearch; } +}); + +// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules +var style = __webpack_require__(29913); +// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js +var es_button = __webpack_require__(71577); +// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules +var input_style = __webpack_require__(69463); +// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules +var input = __webpack_require__(75008); +// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules +var form_style = __webpack_require__(75627); +// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules +var es_form = __webpack_require__(51018); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js +var slicedToArray = __webpack_require__(27424); +var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +;// CONCATENATED MODULE: ./src/components/FormSearch/index.less?modules +// extracted by mini-css-extract-plugin +/* harmony default export */ var FormSearchmodules = ({"search":"search___JA0r9","btn":"btn___GGtZC"}); +// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js +var jsx_runtime = __webpack_require__(85893); +;// CONCATENATED MODULE: ./src/components/FormSearch/index.tsx + + + + + + + + + + + +var FormSearch = function FormSearch(_ref) { + var value = _ref.value, + onChange = _ref.onChange; + var _Form$useForm = es_form/* default.useForm */.Z.useForm(), + _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1), + form = _Form$useForm2[0]; + (0,react.useEffect)(function () { + if (!!value) { + form.setFieldsValue(value); + } + }, value); + var handleFinish = function handleFinish(v) { + onChange(v); + }; + return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: FormSearchmodules.search, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { + className: FormSearchmodules.formWrap, + colon: false, + form: form, + size: "large", + layout: "inline", + onFinish: handleFinish, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u5B9E\u8BAD\u4FE1\u606F", + name: "keyword", + initialValue: "", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + style: { + width: 280, + height: 40 + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u5B66\u6821/\u5355\u4F4D", + name: "schools", + initialValue: "", + style: { + margin: '0 40px' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + style: { + width: 280, + height: 40 + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, { + label: "\u521B\u5EFA\u8005", + name: "creator", + initialValue: "", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + style: { + width: 200, + height: 40 + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, { + className: FormSearchmodules.btn, + type: "primary", + htmlType: "submit", + children: "\u641C\u7D22" + })] + }) + }); +}; +/* harmony default export */ var components_FormSearch = (FormSearch); + +/***/ }), + +/***/ 82982: +/*!*****************************************!*\ + !*** ./src/components/NoData/index.tsx ***! + \*****************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + +/* harmony import */ var antd_es_button_style__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! antd/es/button/style */ 29913); +/* harmony import */ var antd_es_button__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! antd/es/button */ 71577); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/objectSpread2.js */ 42122); +/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react */ 67294); +/* harmony import */ var _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/assets/images/icons/nodata.png */ 4977); +/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! react/jsx-runtime */ 85893); + + + + + + + +var noData = function noData(_ref) { + var _ref$buttonProps = _ref.buttonProps, + buttonProps = _ref$buttonProps === void 0 ? {} : _ref$buttonProps, + _ref$styles = _ref.styles, + styles = _ref$styles === void 0 ? {} : _ref$styles, + customText = _ref.customText, + ButtonText = _ref.ButtonText, + ButtonClick = _ref.ButtonClick, + Buttonclass = _ref.Buttonclass, + ButtonTwo = _ref.ButtonTwo, + imgStyles = _ref.imgStyles; + return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsxs)("section", { + className: "tc animated fadeIn", + style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, { + color: '#999', + margin: '100px auto' + }), styles), + children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", { + src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__, + style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, imgStyles) + }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("p", { + className: "mt20 font14", + children: customText || '暂时还没有相关数据哦!' + }), ButtonText && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)(antd_es_button__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z, _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({ + className: Buttonclass, + onClick: ButtonClick + }, buttonProps), {}, { + children: ButtonText + })), ButtonTwo && ButtonTwo] + }); +}; +/* harmony default export */ __webpack_exports__["Z"] = (noData); + +/***/ }), + +/***/ 36579: +/*!*********************************************************!*\ + !*** ./src/components/PreviewAll/index.tsx + 1 modules ***! + \*********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ PreviewAll; } +}); + +// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules +var style = __webpack_require__(29913); +// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js +var es_button = __webpack_require__(71577); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules +var tooltip_style = __webpack_require__(38390); +// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules +var tooltip = __webpack_require__(84908); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js +var objectSpread2 = __webpack_require__(42122); +var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js +var regeneratorRuntime = __webpack_require__(17061); +var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js +var asyncToGenerator = __webpack_require__(17156); +var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js +var slicedToArray = __webpack_require__(27424); +var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +;// CONCATENATED MODULE: ./src/components/PreviewAll/index.less?modules +// extracted by mini-css-extract-plugin +/* harmony default export */ var PreviewAllmodules = ({"wrp":"wrp___dq7YK","bgBlack":"bgBlack___ARIUV","monaco":"monaco___VnZC3","darkBlue":"darkBlue___UprA9","close":"close___LKoWu","embed":"embed___hvpEJ"}); +// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/ArrowDownOutlined.js + 1 modules +var ArrowDownOutlined = __webpack_require__(77171); +// EXTERNAL MODULE: ./src/components/monaco-editor/index.jsx + 3 modules +var monaco_editor = __webpack_require__(8691); +// EXTERNAL MODULE: ./src/utils/util.tsx +var util = __webpack_require__(29427); +// EXTERNAL MODULE: ./src/service/exercise.ts +var exercise = __webpack_require__(51412); +// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules +var env = __webpack_require__(59758); +// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js +var jsx_runtime = __webpack_require__(85893); +;// CONCATENATED MODULE: ./src/components/PreviewAll/index.tsx + + + + + + + + + + + + + + + + + + + +/* harmony default export */ var PreviewAll = (function (_ref) { + var _data, _data2, _data3, _data4, _data5, _data6; + var _ref$editOffice = _ref.editOffice, + editOffice = _ref$editOffice === void 0 ? 'view' : _ref$editOffice, + data = _ref.data, + theme = _ref.theme, + type = _ref.type, + filename = _ref.filename, + monacoEditor = _ref.monacoEditor, + className = _ref.className, + style = _ref.style, + close = _ref.close, + onClose = _ref.onClose, + hasMask = _ref.hasMask, + disabledDownload = _ref.disabledDownload, + onImgDimensions = _ref.onImgDimensions; + var _useState = (0,react.useState)('https://view.officeapps.live.com/op/view.aspx?src=http://testgs.educoder.net//rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBCZz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--03541f6234b93d7ac3b2d84e7eb0e6594a952945/1.ppt'), + _useState2 = slicedToArray_default()(_useState, 2), + src = _useState2[0], + setSrc = _useState2[1]; + var _useState3 = (0,react.useState)(""), + _useState4 = slicedToArray_default()(_useState3, 2), + token = _useState4[0], + setToken = _useState4[1]; + var _useState5 = (0,react.useState)(), + _useState6 = slicedToArray_default()(_useState5, 2), + officeData = _useState6[0], + setOfficeData = _useState6[1]; + var officePath = window.ENV === "build" ? "/react/build" : ""; + var apiServer = location.host.startsWith("localhost") ? env/* default.PROXY_SERVER */.Z.PROXY_SERVER : env/* default.API_SERVER */.Z.API_SERVER; + var size; + var unit = 1024 * 1024; + var maxSize = 10 * unit; + var closeRef = (0,react.useRef)(); + if ((_data = data) !== null && _data !== void 0 && _data.startsWith("/api") && type !== "txt") { + data = env/* default.API_SERVER */.Z.API_SERVER + data; + } + if (type === "office") { + size = (0,util/* parseUrl */.en)(data).filesize; + if (size > maxSize) { + type = "other"; + } + } + if (filename) monacoEditor.filename = filename; + (0,react.useEffect)(function () { + var _document$cookie, _document$cookie$repl; + var cookies = (_document$cookie = document.cookie) === null || _document$cookie === void 0 ? void 0 : (_document$cookie$repl = _document$cookie.replace(/\s/g, "")) === null || _document$cookie$repl === void 0 ? void 0 : _document$cookie$repl.split(";"); + cookies === null || cookies === void 0 ? void 0 : cookies.map(function (item) { + var i = item.split("="); + if (i[0] === '_educoder_session') { + setToken(i[1]); + } + }); + }, []); + (0,react.useEffect)(function () { + if (type === "office") getData(); + }, [type, data]); + var getData = /*#__PURE__*/function () { + var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() { + var _url, _id, res; + return regeneratorRuntime_default()().wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + console.log("data:", data); + _url = data; + if (!data.startsWith("http")) { + _url = location.origin + _url; + } + _id = new URL(_url).pathname.split("/").pop(); + _context.next = 6; + return (0,exercise/* setEcsAttachment */.gJ)({ + attachment_id: _id + }); + case 6: + res = _context.sent; + setOfficeData(res); + case 8: + case "end": + return _context.stop(); + } + }, _callee); + })); + return function getData() { + return _ref2.apply(this, arguments); + }; + }(); + var handleClick = function handleClick() { + if (data.startsWith("http") || data.startsWith('blob:')) { + handleDown(); + return; + } + (0,util/* downloadFile */.Sv)(filename || 'educoder', data, filename); + }; + var handleDown = function handleDown() { + (0,util/* downLoadLink */.Nd)(filename || 'educoder', decodeURIComponent(data)); + }; + return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: objectSpread2_default()({}, style || {}), + className: "".concat(hasMask && PreviewAllmodules.bgBlack, " ").concat(!!type ? PreviewAllmodules.wrp : "hide"), + children: [close && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: PreviewAllmodules.close, + ref: closeRef, + children: [!!onImgDimensions && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u70B9\u51FB\u5BF9\u56FE\u7247\u8FDB\u884C\u6279\u6CE8", + getPopupContainer: function getPopupContainer() { + return closeRef.current; + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + onClick: function onClick() { + onClose(); + onImgDimensions(); + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "icon-yulanpizhu" + }) + }) + }), !disabledDownload && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u70B9\u51FB\u4E0B\u8F7D\u6B64\u6587\u4EF6", + getPopupContainer: function getPopupContainer() { + return closeRef.current; + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + onClick: handleDown, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "icon-quxiaozhiding" + }) + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, { + title: "\u5173\u95ED", + getPopupContainer: function getPopupContainer() { + return closeRef.current; + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "", + onClick: onClose, + children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "icon-guanbi1" + }) + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: "".concat(PreviewAllmodules[className], " ").concat(className, " ").concat(PreviewAllmodules.monaco, " ").concat(type === "txt" ? "show" : "hide"), + children: type === "txt" && /*#__PURE__*/(0,jsx_runtime.jsx)(monaco_editor/* default */.ZP, objectSpread2_default()({}, monacoEditor)) + }), type === "audio" && /*#__PURE__*/(0,jsx_runtime.jsx)("audio", { + src: "".concat(((_data2 = data) === null || _data2 === void 0 ? void 0 : _data2.indexOf("http://")) > -1 || ((_data3 = data) === null || _data3 === void 0 ? void 0 : _data3.indexOf("https://")) > -1 ? "" : "data:audio/mp3;base64,").concat(data), + autoPlay: true + }), type === "video" && /*#__PURE__*/(0,jsx_runtime.jsx)(jsx_runtime.Fragment, { + children: ((_data4 = data) === null || _data4 === void 0 ? void 0 : _data4.indexOf("http")) > -1 ? /*#__PURE__*/(0,jsx_runtime.jsx)("video", { + controls: true, + src: "".concat(data), + autoPlay: true + }) : /*#__PURE__*/(0,jsx_runtime.jsx)("video", { + controls: true, + src: "data:video/mp4;base64,".concat(data), + autoPlay: true + }) + }), type === 'office' && officeData && /*#__PURE__*/(0,jsx_runtime.jsx)("iframe", { + src: "".concat(officePath, "/office.html?key=").concat(officeData.key, "&url=").concat(apiServer + officeData.url, "&callbackUrl=").concat(apiServer + officeData.callbackUrl, "&fileType=").concat(officeData.fileType, "&title=").concat(officeData.title, "&model=").concat(editOffice, "&officeServer=").concat(env/* default.ONLYOFFICE */.Z.ONLYOFFICE, "&disabledDownload=").concat(!!disabledDownload) + }), type === 'html' && /*#__PURE__*/(0,jsx_runtime.jsx)("iframe", { + src: data + '&disposition=inline' + }), type === 'pdf' && /*#__PURE__*/(0,jsx_runtime.jsx)("iframe", { + src: "".concat(officePath, "/js/pdfview/index.html?url=").concat(data, "&disabledDownload=").concat(!!disabledDownload) + }) // + , type === "image" && /*#__PURE__*/(0,jsx_runtime.jsx)("img", { + src: "".concat(((_data5 = data) === null || _data5 === void 0 ? void 0 : _data5.indexOf("http://")) > -1 || ((_data6 = data) === null || _data6 === void 0 ? void 0 : _data6.indexOf("https://")) > -1 ? "" : "data:image/png;base64,").concat(data) + }), type === "other" && /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_button/* default */.Z, { + type: "primary", + size: "large", + onClick: handleClick, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ArrowDownOutlined/* default */.Z, {}), "\u70B9\u51FB\u4E0B\u8F7D"] + }) + }), type === "download" && /*#__PURE__*/(0,jsx_runtime.jsxs)(es_button/* default */.Z, { + type: "primary", + size: "large", + onClick: handleClick, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ArrowDownOutlined/* default */.Z, {}), "\u70B9\u51FB\u4E0B\u8F7D"] + })] + }); +}); + +/***/ }), + +/***/ 12768: +/*!*********************************************************!*\ + !*** ./src/components/RenderHtml/index.tsx + 1 modules ***! + \*********************************************************/ +/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { + + +// EXPORTS +__webpack_require__.d(__webpack_exports__, { + "Z": function() { return /* binding */ RenderHtml; } +}); + +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js +var objectSpread2 = __webpack_require__(42122); +var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2); +// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js +var slicedToArray = __webpack_require__(27424); +var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray); +// EXTERNAL MODULE: ./node_modules/react/index.js +var react = __webpack_require__(67294); +// EXTERNAL MODULE: ./node_modules/katex/dist/katex.min.css +var katex_min = __webpack_require__(81897); +// EXTERNAL MODULE: ./node_modules/marked/lib/marked.js +var marked = __webpack_require__(47084); +var marked_default = /*#__PURE__*/__webpack_require__.n(marked); +// EXTERNAL MODULE: ./node_modules/marked/src/helpers.js +var helpers = __webpack_require__(90621); +;// CONCATENATED MODULE: ./src/utils/marked.ts + + + +function indentCodeCompensation(raw, text) { + var matchIndentToCode = raw.match(/^(\s+)(?:```)/); + if (matchIndentToCode === null) { + return text; + } + var indentToCode = matchIndentToCode[1]; + return text.split('\n').map(function (node) { + var matchIndentInNode = node.match(/^\s+/); + if (matchIndentInNode === null) { + return node; + } + var _matchIndentInNode = slicedToArray_default()(matchIndentInNode, 1), + indentInNode = _matchIndentInNode[0]; + if (indentInNode.length >= indentToCode.length) { + return node.slice(indentToCode.length); + } + return node; + }).join('\n'); +} +//兼容之前的 ##标题式写法 +var toc = []; +var ctx = ["
' + (escaped ? code : (0,helpers.escape)(code, true)) + '';
+ }
+ if (['latex', 'katex', 'math'].indexOf(lang) >= 0) {
+ return "".concat(code, "
"); + } else { + return "").concat(escaped ? code : (0,helpers.escape)(code, true), "\n");
+ }
+};
+renderer.heading = function (text, level, raw) {
+ var anchor = this.options.headerPrefix + raw.toLowerCase().replace(/[^\w\\u4e00-\\u9fa5]]+/g, '-');
+ toc.push({
+ anchor: anchor,
+ level: level,
+ text: text
+ });
+ return ']*>/g;
+function _unescape(str) {
+ var div = document.createElement('div');
+ div.innerHTML = str;
+ return div.childNodes.length === 0 ? '' : div.childNodes[0].nodeValue;
+}
+/* harmony default export */ var RenderHtml = (function (_ref) {
+ var _ref$value = _ref.value,
+ value = _ref$value === void 0 ? '' : _ref$value,
+ className = _ref.className,
+ showTextOnly = _ref.showTextOnly,
+ showLines = _ref.showLines,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style,
+ _ref$stylesPrev = _ref.stylesPrev,
+ stylesPrev = _ref$stylesPrev === void 0 ? {} : _ref$stylesPrev;
+ var str = String(value);
+ var _useState = (0,react.useState)(""),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ data = _useState2[0],
+ setData = _useState2[1];
+ var _useState3 = (0,react.useState)("office"),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ type = _useState4[0],
+ setType = _useState4[1];
+ var classNamesRef = (0,react.useRef)("a" + (0,v4/* default */.Z)());
+ var html = (0,react.useMemo)(function () {
+ try {
+ var reg = /\(\s+\/api\/attachments\/|\(\/api\/attachments\/|\(\/attachments\/download\//g;
+ var reg2 = /\"\/api\/attachments\/|\"\/attachments\/download\//g;
+ var reg3 = /\(\s+\/files\/uploads\/|\"\/files\/uploads\//g;
+ str = str.replace(reg, "(" + env/* default.API_SERVER */.Z.API_SERVER + "/api/attachments/").replace(reg2, '"' + env/* default.API_SERVER */.Z.API_SERVER + "/api/attachments/").replace(reg3, '"' + env/* default.API_SERVER */.Z.API_SERVER + "/files/uploads/").replaceAll("http://video.educoder", "https://video.educoder").replaceAll("http://www.educoder.net/api", "https://data.educoder.net/api").replaceAll("https://www.educoder.net/api", "https://data.educoder.net/api").replace(/\r\n/g, "\n");
+ // str = str.replace(new RegExp("(?([\s\S]+?)<\/style>/gim, function (_, css) {
+ var _css = css.replace(/(\n|\r)/g, "").split("}");
+ var arr = [];
+ _css.map(function (item) {
+ if (item != '') {
+ arr.push(".".concat(classNamesRef.current, " ").concat(item));
+ }
+ });
+ return "");
+ });
+ var math_expressions = getMathExpressions();
+ if (str.match(/\[TOC\]/)) {
+ rs = rs.replace('[TOC]
', getTocContent());
+ cleanToc();
+ }
+ rs = rs.replace(/(__special_katext_id_\d+__)/g, function (_match, capture) {
+ var _math_expressions$cap = math_expressions[capture],
+ type = _math_expressions$cap.type,
+ expression = _math_expressions$cap.expression;
+ return (0,katex.renderToString)(_unescape(expression) || '', {
+ displayMode: type === 'block',
+ throwOnError: false,
+ output: 'html'
+ });
+ });
+ rs = rs.replace(/▁/g, '▁▁▁');
+ resetMathExpressions();
+ // return dompurify.sanitize(rs)
+ var dom = document.createElement('div');
+ if (showTextOnly) {
+ dom.innerHTML = rs;
+ return dom.innerText;
+ }
+ dom.innerHTML = rs;
+ setTimeout(function () {
+ return onLoad();
+ }, 500);
+ return dom.innerHTML;
+ }, [str]);
+ var el = (0,react.useRef)();
+ lines.WebkitLineClamp = showLines;
+ if (showLines) {
+ style = objectSpread2_default()(objectSpread2_default()({}, style), lines);
+ }
+ function onAncherHandler(e) {
+ var target = e.target;
+ if (target.tagName.toUpperCase() === 'A') {
+ var ancher = target.getAttribute('href');
+ if (ancher.indexOf("office") > -1) {
+ e.preventDefault();
+ setData(ancher);
+ setType("office");
+ } else if (ancher.indexOf("application/pdf") > -1) {
+ e.preventDefault();
+ setData(ancher);
+ setType("pdf");
+ } else if (ancher.indexOf("text/html") > -1) {
+ e.preventDefault();
+ setData(ancher);
+ setType("html");
+ } else if (ancher.startsWith('#')) {
+ e.preventDefault();
+ var viewEl = document.getElementById(ancher.replace('#', ''));
+ if (viewEl) {
+ viewEl.scrollIntoView(true);
+ }
+ }
+ }
+ }
+ var onLoad = function onLoad() {
+ var _el$current;
+ var videoElement = (_el$current = el.current) === null || _el$current === void 0 ? void 0 : _el$current.querySelectorAll('video');
+ videoElement === null || videoElement === void 0 ? void 0 : videoElement.forEach(function (item) {
+ item.oncontextmenu = function () {
+ return false;
+ };
+ if (item.src.indexOf('.m3u8') > -1) {
+ if (item.canPlayType('application/vnd.apple.mpegurl')) {} else if (hls_default().isSupported()) {
+ var hls = new (hls_default())();
+ hls.loadSource(item.src);
+ hls.attachMedia(item);
+ }
+ }
+ });
+ };
+ (0,react.useEffect)(function () {
+ if (el.current && html) {
+ if (html.match(preRegex)) {
+ window.PR.prettyPrint();
+ }
+ }
+ if (el.current) {
+ el.current.addEventListener('click', onAncherHandler);
+ return function () {
+ var _el$current2;
+ (_el$current2 = el.current) === null || _el$current2 === void 0 ? void 0 : _el$current2.removeEventListener('click', onAncherHandler);
+ resetMathExpressions();
+ cleanToc();
+ };
+ }
+ }, [html, el.current, onAncherHandler]);
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ ref: el,
+ style: objectSpread2_default()({}, style),
+ className: "".concat(className ? className : '', " markdown-body ").concat(classNamesRef.current),
+ dangerouslySetInnerHTML: {
+ __html: html
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(PreviewAll/* default */.Z, {
+ close: true,
+ data: data,
+ type: !!(data !== null && data !== void 0 && data.length) ? type : "",
+ style: objectSpread2_default()({}, stylesPrev),
+ onClose: function onClose() {
+ return setData("");
+ }
+ })]
+ });
+});
+
+/***/ }),
+
+/***/ 60696:
+/*!***************************************************************!*\
+ !*** ./src/components/ReuseShixunModal/index.tsx + 1 modules ***!
+ \***************************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+
+// EXPORTS
+__webpack_require__.d(__webpack_exports__, {
+ "Z": function() { return /* binding */ components_ReuseShixunModal; },
+ "P": function() { return /* binding */ useReuseModal; }
+});
+
+// EXTERNAL MODULE: ./node_modules/antd/es/table/style/index.js + 1 modules
+var style = __webpack_require__(71854);
+// EXTERNAL MODULE: ./node_modules/antd/es/table/index.js + 58 modules
+var table = __webpack_require__(67250);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/toConsumableArray.js
+var toConsumableArray = __webpack_require__(861);
+var toConsumableArray_default = /*#__PURE__*/__webpack_require__.n(toConsumableArray);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules
+var input_style = __webpack_require__(69463);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules
+var input = __webpack_require__(75008);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js
+var objectWithoutProperties = __webpack_require__(70215);
+var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
+var modal_style = __webpack_require__(35611);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
+var modal = __webpack_require__(85402);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/style/index.js + 1 modules
+var radio_style = __webpack_require__(83822);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/index.js + 4 modules
+var es_radio = __webpack_require__(29924);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
+var regeneratorRuntime = __webpack_require__(17061);
+var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
+var objectSpread2 = __webpack_require__(42122);
+var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js
+var asyncToGenerator = __webpack_require__(17156);
+var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules
+var form_style = __webpack_require__(75627);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules
+var es_form = __webpack_require__(51018);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
+var slicedToArray = __webpack_require__(27424);
+var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
+// EXTERNAL MODULE: ./node_modules/react/index.js
+var react = __webpack_require__(67294);
+;// CONCATENATED MODULE: ./src/components/ReuseShixunModal/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var ReuseShixunModalmodules = ({"brief":"brief___LOzpE","contentTitle":"contentTitle___xkdcN","content":"content___Vtri0","tips":"tips___tuAtH","antdTable":"antdTable___s8T2N","tableCell":"tableCell___kN9Fw","antdModal":"antdModal___WVBk3","orangeColor":"orangeColor___ryB2u"});
+// EXTERNAL MODULE: ./src/service/shixuns.ts
+var shixuns = __webpack_require__(56088);
+// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
+var jsx_runtime = __webpack_require__(85893);
+;// CONCATENATED MODULE: ./src/components/ReuseShixunModal/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var _excluded = ["isImportMultipleCourse"];
+
+
+
+
+
+
+var StudentInfo = function StudentInfo(_ref) {
+ var studentNames = _ref.studentNames,
+ total = _ref.total;
+ var Map = ['', '一', '两', '三'];
+ return total > 3 ? /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: ["\u8BFE\u5802\u5185\u6709", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: studentNames === null || studentNames === void 0 ? void 0 : studentNames.join('、')
+ }), "\u7B49", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: total
+ }), "\u540D\u5B66\u751F"]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: ["\u8BFE\u5802\u5185\u6709", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: studentNames === null || studentNames === void 0 ? void 0 : studentNames.join('、')
+ }), Map[total], "\u540D\u5B66\u751F"]
+ });
+};
+
+//根据使用场景区分文案
+var generateBrief = function generateBrief(_ref2) {
+ var used = _ref2.used,
+ copy = _ref2.copy,
+ canNotCopy = _ref2.canNotCopy,
+ studentNames = _ref2.studentNames,
+ studentCount = _ref2.studentCount,
+ inPaper = _ref2.inPaper,
+ _ref2$position = _ref2.position,
+ position = _ref2$position === void 0 ? '' : _ref2$position;
+ var copyStatusDescribe = function copyStatusDescribe() {
+ if (copy > 0 && canNotCopy > 0) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: ["\u5176\u4E2D", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: copy
+ }), "\u4E2A\u9879\u76EE\u652F\u6301\u590D\u5236\uFF0C", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: canNotCopy
+ }), "\u4E2A\u9879\u76EE\u4E0D\u652F\u6301\u590D\u5236"]
+ });
+ } else if (copy > 0 && canNotCopy === 0) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: ["\u5176\u4E2D", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: copy
+ }), "\u4E2A\u9879\u76EE\u652F\u6301\u590D\u5236"]
+ });
+ } else if (copy === 0 && canNotCopy > 0) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: ["\u5176\u4E2D", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: canNotCopy
+ }), "\u4E2A\u9879\u76EE\u4E0D\u652F\u6301\u590D\u5236"]
+ });
+ }
+ };
+ var currentPosition = position || (inPaper ? '试卷' : '课程');
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(StudentInfo, {
+ studentNames: studentNames,
+ total: studentCount
+ }), "\u5B66\u4E60\u8FC7", currentPosition, "\u4E2D\u7684", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: used
+ }), "\u4E2A\u9879\u76EE\uFF0C", copyStatusDescribe(), "\u3002\u8BF7\u9009\u62E9\u662F\u5426\u7EE7\u7EED\u4F7F\u7528\u548C\u662F\u5426\u590D\u5236\u4E3A\u65B0\u9879\u76EE\u53D1\u9001\u81F3\u8BFE\u5802\u4E2D\uFF1F"]
+ });
+};
+
+//单个实训时的情况
+var ReuseSingleShixunModal = function ReuseSingleShixunModal(_ref3) {
+ var onCancel = _ref3.onCancel,
+ onOk = _ref3.onOk,
+ visible = _ref3.visible,
+ inPaper = _ref3.inPaper,
+ renderData = _ref3.renderData,
+ type = _ref3.type,
+ _ref3$isMultipleCours = _ref3.isMultipleCourse,
+ isMultipleCourse = _ref3$isMultipleCours === void 0 ? false : _ref3$isMultipleCours;
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState = (0,react.useState)(1),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ radioValue = _useState2[0],
+ setRadioValue = _useState2[1];
+ var _useState3 = (0,react.useState)(false),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ confirmLoading = _useState4[0],
+ setConfirmLoading = _useState4[1];
+ var canCopy = (0,react.useMemo)(function () {
+ return (renderData === null || renderData === void 0 ? void 0 : renderData.total_num) === 1 && (renderData === null || renderData === void 0 ? void 0 : renderData.can_copy_num) === 1;
+ }, [renderData]);
+ var courseDataList = (0,react.useMemo)(function () {
+ var _renderData$course_da;
+ return renderData === null || renderData === void 0 ? void 0 : (_renderData$course_da = renderData.course_data_list) === null || _renderData$course_da === void 0 ? void 0 : _renderData$course_da.filter(function (e) {
+ return e.is_show;
+ });
+ }, [renderData]);
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(jsx_runtime.Fragment, {
+ children: canCopy ? /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ centered: true,
+ closable: true,
+ open: visible,
+ destroyOnClose: true,
+ title: "\u63D0\u793A",
+ className: ReuseShixunModalmodules.antdModal,
+ width: 682,
+ confirmLoading: confirmLoading,
+ onCancel: onCancel,
+ onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var data, _renderData$course_da2, param;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ setConfirmLoading(true);
+ data = radioValue;
+ if (isMultipleCourse) {
+ param = objectSpread2_default()({}, form.getFieldsValue());
+ data = renderData === null || renderData === void 0 ? void 0 : (_renderData$course_da2 = renderData.course_data_list) === null || _renderData$course_da2 === void 0 ? void 0 : _renderData$course_da2.map(function (e) {
+ if (param[e.id] !== undefined) {
+ return objectSpread2_default()(objectSpread2_default()({}, e), {}, {
+ is_copy: param[e.id]
+ });
+ }
+ return e;
+ });
+ }
+ _context.next = 5;
+ return onOk(data);
+ case 5:
+ setConfirmLoading(false);
+ case 6:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ })),
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ReuseShixunModalmodules.content,
+ style: {
+ marginBottom: 20
+ },
+ children: isMultipleCourse ? '检测到以下课堂已在教学课堂中使用,请问是否复制成新的实训发送至教学课堂中?' : /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(StudentInfo, {
+ studentNames: renderData === null || renderData === void 0 ? void 0 : renderData.student_names,
+ total: renderData === null || renderData === void 0 ? void 0 : renderData.student_count
+ }), "\u5B66\u4E60\u8FC7\u8BE5\u5B9E\u8DF5\u9879\u76EE\u3002\u8BE5\u9879\u76EE\u652F\u6301\u590D\u5236\uFF0C\u8BF7\u9009\u62E9\u662F\u5426\u5C06\u8BE5\u9879\u76EE\u590D\u5236\u4E3A\u65B0\u9879\u76EE\u53D1\u9001\u81F3\u8BFE\u5802\u4E2D\uFF1F"]
+ })
+ }), isMultipleCourse ? /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
+ form: form,
+ preserve: false,
+ children: courseDataList === null || courseDataList === void 0 ? void 0 : courseDataList.map(function (item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(react.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("h3", {
+ className: "ml15 mb5",
+ children: item.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: item.id,
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ className: ReuseShixunModalmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ style: {
+ color: '#464f66'
+ },
+ children: "\u590D\u5236\u5B9E\u8BAD"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ style: {
+ color: '#464f66'
+ },
+ children: "\u4E0D\u590D\u5236\u5B9E\u8BAD"
+ })]
+ })
+ })]
+ }, item.id);
+ })
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ value: radioValue,
+ onChange: function onChange(e) {
+ return setRadioValue(e.target.value);
+ },
+ className: ReuseShixunModalmodules.content,
+ style: {
+ marginBottom: 30
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ style: {
+ color: '#464f66'
+ },
+ children: "\u590D\u5236"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ style: {
+ color: '#464f66'
+ },
+ children: "\u4E0D\u590D\u5236"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ReuseShixunModalmodules.content,
+ style: {
+ marginBottom: 10
+ },
+ children: "* \u8BF4\u660E\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ReuseShixunModalmodules.content,
+ style: {
+ marginBottom: 20
+ },
+ children: "1\u3001\u590D\u5236\uFF1A\u7CFB\u7EDF\u5C06\u590D\u5236\u5E76\u521B\u5EFA\u4E00\u4E2A\u65B0\u7684\u9879\u76EE\u53D1\u9001\u5230\u8BFE\u5802\u4E2D\u4F7F\u7528\uFF08\u4E0D\u4F1A\u590D\u5236\u5B66\u751F\u7684\u6311\u6218\u8BB0\u5F55\uFF09\uFF0C\u65B0\u7684\u9879\u76EE\u652F\u6301\u8FDB\u884C\u7F16\u8F91\u5E76\u4E0E\u539F\u9879\u76EE\u4FE1\u606F\u4E92\u4E0D\u5F71\u54CD\u3002"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "".concat(ReuseShixunModalmodules.content, " ").concat(ReuseShixunModalmodules.orangeColor),
+ children: "2\u3001\u4E0D\u590D\u5236\uFF1A\u5F53\u524D\u9879\u76EE\u4F1A\u88AB\u76F4\u63A5\u53D1\u9001\u5230\u8BFE\u5802\u4E2D\u4F7F\u7528\uFF0C\u6311\u6218\u8FC7\u8BE5\u9879\u76EE\u7684\u5B66\u751F\u518D\u6B21\u8FDB\u5165\u9879\u76EE\u5F00\u542F\u6311\u6218\u65F6\uFF0C\u4F1A\u6E05\u7A7A\u4E4B\u524D\u7684\u6311\u6218\u8BB0\u5F55\u3002"
+ })]
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ centered: true,
+ closable: true,
+ destroyOnClose: true,
+ open: visible,
+ confirmLoading: confirmLoading,
+ title: "\u63D0\u793A",
+ width: 682,
+ onCancel: onCancel,
+ onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var data, _renderData$course_da3, param;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ setConfirmLoading(true);
+ data = 0;
+ if (isMultipleCourse) {
+ param = objectSpread2_default()({}, form.getFieldsValue());
+ data = renderData === null || renderData === void 0 ? void 0 : (_renderData$course_da3 = renderData.course_data_list) === null || _renderData$course_da3 === void 0 ? void 0 : _renderData$course_da3.map(function (e) {
+ if (param[e.id] !== undefined) {
+ return objectSpread2_default()(objectSpread2_default()({}, e), {}, {
+ is_use: param[e.id]
+ });
+ }
+ return e;
+ });
+ }
+ _context2.next = 5;
+ return onOk(data);
+ case 5:
+ setConfirmLoading(false);
+ case 6:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ReuseShixunModalmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(StudentInfo, {
+ studentNames: renderData === null || renderData === void 0 ? void 0 : renderData.student_names,
+ total: renderData === null || renderData === void 0 ? void 0 : renderData.student_count
+ }), "\u5B66\u4E60\u8FC7\u8BE5\u5B9E\u8DF5\u9879\u76EE\u3002", isMultipleCourse ? /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ form: form,
+ preserve: false,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("h3", {
+ children: "\u5F53\u524D\u5B9E\u8BAD\u4E0D\u53EF\u590D\u5236\uFF0C\u5DF2\u7ECF\u68C0\u6D4B\u5230\u4EE5\u4E0B\u8BFE\u5802\u5B58\u5728\u8BE5\u5B9E\u8BAD\uFF0C\u540C\u4E00\u5B9E\u8BAD\u5728\u8BFE\u5802\u4E2D\u91CD\u590D\u4F7F\u7528\u65F6\uFF0C\u4F1A\u5BFC\u81F4\u6210\u7EE9\u4E92\u76F8\u5F71\u54CD\uFF0C\u8BF7\u786E\u8BA4\u662F\u5426\u7EE7\u7EED\u4F7F\u7528"
+ }), courseDataList === null || courseDataList === void 0 ? void 0 : courseDataList.map(function (item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(react.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("h3", {
+ className: "ml15 mb5",
+ children: item.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: item.id,
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ className: ReuseShixunModalmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ style: {
+ color: '#464f66'
+ },
+ children: "\u7EE7\u7EED\u4F7F\u7528"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ style: {
+ color: '#464f66'
+ },
+ children: "\u4E0D\u4F7F\u7528"
+ })]
+ })
+ })]
+ }, item.id);
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: ["\u8BE5\u9879\u76EE\u4E0D\u652F\u6301\u590D\u5236\uFF0C\u82E5\u786E\u8BA4\u7EE7\u7EED\u53D1\u9001\uFF0C", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: "\u5F53\u524D\u9879\u76EE\u4F1A\u88AB\u76F4\u63A5\u53D1\u9001\u5230\u8BFE\u5802\u4E2D\u4F7F\u7528\uFF0C\u6311\u6218\u8FC7\u8BE5\u9879\u76EE\u7684\u5B66\u751F\u518D\u6B21\u8FDB\u5165\u9879\u76EE\u5F00\u542F\u6311\u6218\u65F6\uFF0C\u4F1A\u6E05\u7A7A\u4E4B\u524D\u7684\u6311\u6218\u8BB0\u5F55\u3002"
+ }), "\uFF08\u5982\u679C\u4E0D\u60F3\u6E05\u7A7A\u5B66\u751F\u4E4B\u524D\u7684\u6311\u6218\u8BB0\u5F55\uFF0C\u5EFA\u8BAE\u53C2\u7167\u8BE5\u5B9E\u8DF5\u9879\u76EE\u7684\u5185\u5BB9\u81EA\u884C\u521B\u5EFA\u4E00\u4E2A\u65B0\u7684\u9879\u76EE\uFF0C\u6216\u8005\u5C1D\u8BD5\u8054\u7CFB\u9879\u76EE\u521B\u5EFA\u4EBA\u5F00\u653E\u672C\u9879\u76EE\u7684\u590D\u5236\u6743\u9650\uFF09\u3002"]
+ })]
+ })
+ })
+ });
+};
+var useReuseModal = function useReuseModal() {
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ modalVisible = _useState6[0],
+ setModalVisible = _useState6[1];
+ var _useState7 = (0,react.useState)(),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ renderData = _useState8[0],
+ setRenderData = _useState8[1];
+ var closeModalFn = function closeModalFn() {
+ return setModalVisible(false);
+ };
+ var showModal = /*#__PURE__*/function () {
+ var _ref6 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3(reqParams) {
+ var _reqParams$isImportMu, isImportMultipleCourse, param, res, _res$course_data_list, isModalVisible;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ _reqParams$isImportMu = reqParams.isImportMultipleCourse, isImportMultipleCourse = _reqParams$isImportMu === void 0 ? false : _reqParams$isImportMu, param = objectWithoutProperties_default()(reqParams, _excluded);
+ _context3.next = 3;
+ return (0,shixuns/* checkShixunCopy */.Tr)(param);
+ case 3:
+ res = _context3.sent;
+ if (!('status' in res)) {
+ _context3.next = 6;
+ break;
+ }
+ return _context3.abrupt("return", false);
+ case 6:
+ if (!isImportMultipleCourse) {
+ _context3.next = 13;
+ break;
+ }
+ isModalVisible = res === null || res === void 0 ? void 0 : (_res$course_data_list = res.course_data_list) === null || _res$course_data_list === void 0 ? void 0 : _res$course_data_list.some(function (e) {
+ return e.is_show;
+ });
+ if (!isModalVisible) {
+ _context3.next = 12;
+ break;
+ }
+ setRenderData(res);
+ setModalVisible(true);
+ return _context3.abrupt("return", true);
+ case 12:
+ return _context3.abrupt("return", res.course_data_list || []);
+ case 13:
+ if (!(res.student_count === 0)) {
+ _context3.next = 15;
+ break;
+ }
+ return _context3.abrupt("return", false);
+ case 15:
+ setRenderData(res);
+ setModalVisible(true);
+ return _context3.abrupt("return", true);
+ case 18:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ return function showModal(_x) {
+ return _ref6.apply(this, arguments);
+ };
+ }();
+ return [modalVisible, closeModalFn, renderData, showModal];
+};
+
+//多个实训时的情况
+var ReuseMultipleShixunModal = function ReuseMultipleShixunModal(props) {
+ var _Form$useForm3 = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm4 = slicedToArray_default()(_Form$useForm3, 1),
+ form = _Form$useForm4[0];
+ var _useState9 = (0,react.useState)(false),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ confirmLoading = _useState10[0],
+ setConfirmLoading = _useState10[1];
+ var onCancel = props.onCancel,
+ onOk = props.onOk,
+ visible = props.visible,
+ _props$inPaper = props.inPaper,
+ inPaper = _props$inPaper === void 0 ? false : _props$inPaper,
+ renderData = props.renderData,
+ type = props.type,
+ _props$isMultipleCour = props.isMultipleCourse,
+ isMultipleCourse = _props$isMultipleCour === void 0 ? false : _props$isMultipleCour,
+ position = props.position;
+ var reproducibleShixunColumns = (0,react.useMemo)(function () {
+ return inPaper ? [{
+ title: '实践项目名称',
+ dataIndex: 'name',
+ width: 424,
+ align: 'center',
+ ellipsis: true,
+ className: ReuseShixunModalmodules.tableCell,
+ render: function render(text, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ href: "/shixuns/".concat(record.identifier, "/challenges"),
+ target: "_blank",
+ children: text
+ });
+ }
+ }, {
+ title: '是否复制',
+ dataIndex: 'is_copy',
+ align: 'center',
+ render: function render(value, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record.stage_shixun_id : record.shixun_course_id || record.id), 'is_copy'],
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ children: "\u662F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ children: "\u5426"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record === null || record === void 0 ? void 0 : record.stage_shixun_id : record.shixun_course_id || record.id), 'is_use'],
+ hidden: true,
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ type: "hidden"
+ })
+ })]
+ });
+ }
+ }] : [{
+ title: '实践项目名称',
+ dataIndex: 'name',
+ width: 424,
+ align: 'center',
+ ellipsis: true,
+ className: ReuseShixunModalmodules.tableCell,
+ render: function render(text, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ href: "/shixuns/".concat(record.identifier, "/challenges"),
+ target: "_blank",
+ children: text
+ });
+ }
+ }, {
+ title: '是否使用',
+ dataIndex: 'is_use',
+ align: 'center',
+ render: function render(value, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record.stage_shixun_id : record.shixun_course_id || record.id), 'is_use'],
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ children: "\u662F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ children: "\u5426"
+ })]
+ })
+ });
+ }
+ }, {
+ title: '是否复制',
+ dataIndex: 'is_copy',
+ align: 'center',
+ render: function render(value, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record.stage_shixun_id : record.shixun_course_id || record.id), 'is_copy'],
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ children: "\u662F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ children: "\u5426"
+ })]
+ })
+ });
+ }
+ }];
+ }, [inPaper]);
+ var irreproducibleShixunColumns = (0,react.useMemo)(function () {
+ return inPaper ? [{
+ title: '实践项目名称',
+ dataIndex: 'name',
+ width: 424,
+ className: ReuseShixunModalmodules.tableCell,
+ align: 'center',
+ ellipsis: true,
+ render: function render(value, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ href: "/shixuns/".concat(record.identifier, "/challenges"),
+ target: "_blank",
+ children: value
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record === null || record === void 0 ? void 0 : record.stage_shixun_id : record.shixun_course_id || record.id), 'is_copy'],
+ hidden: true,
+ initialValue: 0,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ type: "hidden"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record === null || record === void 0 ? void 0 : record.stage_shixun_id : record.shixun_course_id || record.id), 'is_use'],
+ hidden: true,
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ type: "hidden"
+ })
+ })]
+ });
+ }
+ }] : [{
+ title: '实践项目名称',
+ dataIndex: 'name',
+ width: 424,
+ className: ReuseShixunModalmodules.tableCell,
+ ellipsis: true,
+ align: 'center',
+ render: function render(text, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ href: "/shixuns/".concat(record.identifier, "/challenges"),
+ target: "_blank",
+ children: text
+ });
+ }
+ }, {
+ title: '是否使用',
+ dataIndex: 'is_use',
+ align: 'center',
+ render: function render(value, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record === null || record === void 0 ? void 0 : record.stage_shixun_id : record.shixun_course_id || record.id), 'is_use'],
+ initialValue: 0,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ children: "\u662F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ children: "\u5426"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record === null || record === void 0 ? void 0 : record.stage_shixun_id : record.shixun_course_id || record.id), 'is_copy'],
+ hidden: true,
+ initialValue: 0,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ type: "hidden"
+ })
+ })]
+ });
+ }
+ }];
+ }, [inPaper]);
+
+ //可以选择多个课堂的时候
+ if (isMultipleCourse) {
+ var param = {
+ title: '课堂名称',
+ ellipsis: true,
+ dataIndex: 'course_name',
+ width: 190,
+ align: 'center',
+ className: ReuseShixunModalmodules.tableCell,
+ render: function render(text, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ href: "/classrooms/".concat(record.course_id),
+ children: text
+ });
+ }
+ };
+ reproducibleShixunColumns = [param].concat(toConsumableArray_default()(reproducibleShixunColumns));
+ irreproducibleShixunColumns = [param].concat(toConsumableArray_default()(irreproducibleShixunColumns));
+ }
+ var dynamicBrief = (0,react.useMemo)(function () {
+ return generateBrief({
+ used: renderData === null || renderData === void 0 ? void 0 : renderData.repeat_shixun_num,
+ copy: renderData === null || renderData === void 0 ? void 0 : renderData.can_copy_num,
+ canNotCopy: renderData === null || renderData === void 0 ? void 0 : renderData.no_copy_num,
+ studentNames: renderData === null || renderData === void 0 ? void 0 : renderData.student_names,
+ studentCount: renderData === null || renderData === void 0 ? void 0 : renderData.student_count,
+ inPaper: inPaper,
+ position: position
+ });
+ }, [renderData, inPaper, position]);
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ title: "\u63D0\u793A",
+ centered: true,
+ open: visible,
+ confirmLoading: confirmLoading,
+ onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() {
+ var formValues, ids;
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ setConfirmLoading(true);
+ formValues = form.getFieldsValue();
+ ids = Object.keys(formValues).map(function (key) {
+ return {
+ id: parseInt(key.split('_')[0]),
+ course_id: parseInt(key.split('_')[1]),
+ is_use: formValues[key].is_use,
+ is_copy: formValues[key].is_copy
+ };
+ });
+ _context4.next = 5;
+ return onOk(ids);
+ case 5:
+ setConfirmLoading(false);
+ case 6:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ })),
+ onCancel: onCancel,
+ width: 880,
+ okText: "\u786E\u8BA4",
+ className: ReuseShixunModalmodules.antdModal,
+ destroyOnClose: true,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ form: form,
+ preserve: false,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ReuseShixunModalmodules.brief,
+ children: dynamicBrief
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginBottom: 30
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ marginBottom: 20
+ },
+ children: "* \u8BF4\u660E"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ marginBottom: 20
+ },
+ children: "1\u3001\u590D\u5236\uFF1A\u7CFB\u7EDF\u5C06\u590D\u5236\u5E76\u521B\u5EFA\u4E00\u4E2A\u65B0\u7684\u9879\u76EE\u53D1\u9001\u5230\u8BFE\u5802\u4E2D\u4F7F\u7528\uFF08\u4E0D\u4F1A\u590D\u5236\u5B66\u751F\u7684\u6311\u6218\u8BB0\u5F55\uFF09\uFF0C\u65B0\u7684\u9879\u76EE\u652F\u6301\u8FDB\u884C\u7F16\u8F91\u5E76\u4E0E\u539F\u9879\u76EE\u4FE1\u606F\u4E92\u4E0D\u5F71\u54CD\u3002"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ReuseShixunModalmodules.orangeColor,
+ children: "2\u3001\u4E0D\u590D\u5236\uFF1A\u5F53\u524D\u9879\u76EE\u4F1A\u88AB\u76F4\u63A5\u53D1\u9001\u5230\u8BFE\u5802\u4E2D\u4F7F\u7528\uFF0C\u6311\u6218\u8FC7\u8BE5\u9879\u76EE\u7684\u5B66\u751F\u518D\u6B21\u8FDB\u5165\u9879\u76EE\u5F00\u542F\u6311\u6218\u65F6\uFF0C\u4F1A\u6E05\u7A7A\u4E4B\u524D\u7684\u6311\u6218\u8BB0\u5F55\u3002"
+ })]
+ }), (renderData === null || renderData === void 0 ? void 0 : renderData.can_copy_num) > 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ReuseShixunModalmodules.contentTitle,
+ children: "\u652F\u6301\u590D\u5236\u7684\u9879\u76EE"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ columns: reproducibleShixunColumns,
+ className: ReuseShixunModalmodules.antdTable,
+ dataSource: renderData === null || renderData === void 0 ? void 0 : renderData.can_copy_list,
+ rowKey: type === 'subject' ? "stage_shixun_id" : 'id',
+ pagination: false,
+ scroll: {
+ y: 240
+ },
+ bordered: true
+ })]
+ }), (renderData === null || renderData === void 0 ? void 0 : renderData.no_copy_num) > 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ReuseShixunModalmodules.contentTitle,
+ children: "\u4E0D\u652F\u6301\u590D\u5236\u7684\u9879\u76EE"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ columns: irreproducibleShixunColumns,
+ className: ReuseShixunModalmodules.antdTable,
+ dataSource: renderData === null || renderData === void 0 ? void 0 : renderData.no_copy_list,
+ rowKey: type === 'subject' ? "stage_shixun_id" : 'id',
+ pagination: false,
+ scroll: {
+ y: 200
+ },
+ bordered: true
+ })]
+ }), (renderData === null || renderData === void 0 ? void 0 : renderData.no_use_list.length) > 0 && (renderData === null || renderData === void 0 ? void 0 : renderData.no_use_list.map(function (record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record === null || record === void 0 ? void 0 : record.stage_shixun_id : record.shixun_course_id || record.id), 'is_copy'],
+ hidden: true,
+ initialValue: 0,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ type: "hidden"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: ["".concat(type === 'subject' ? record === null || record === void 0 ? void 0 : record.stage_shixun_id : record.shixun_course_id || record.id), 'is_use'],
+ hidden: true,
+ initialValue: 1,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ type: "hidden"
+ })
+ })]
+ }, type === 'subject' ? record.stage_shixun_id : record.shixun_course_id || record.id);
+ }))]
+ })
+ });
+};
+var ReuseShixunModal = function ReuseShixunModal(props) {
+ var modalType = props.modalType;
+ return modalType === 'multiple' ? /*#__PURE__*/(0,jsx_runtime.jsx)(ReuseMultipleShixunModal, objectSpread2_default()({}, props)) : /*#__PURE__*/(0,jsx_runtime.jsx)(ReuseSingleShixunModal, objectSpread2_default()({}, props));
+};
+/* harmony default export */ var components_ReuseShixunModal = (ReuseShixunModal);
+
+/***/ }),
+
+/***/ 97501:
+/*!*************************************************************!*\
+ !*** ./src/components/markdown-editor/code-block/index.tsx ***!
+ \*************************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+/* harmony export */ __webpack_require__.d(__webpack_exports__, {
+/* harmony export */ "h": function() { return /* binding */ MyCodeMirror; }
+/* harmony export */ });
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/objectSpread2.js */ 42122);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__);
+/* harmony import */ var antd_es_button_style__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! antd/es/button/style */ 29913);
+/* harmony import */ var antd_es_button__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! antd/es/button */ 71577);
+/* harmony import */ var antd_es_form_style__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! antd/es/form/style */ 75627);
+/* harmony import */ var antd_es_form__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! antd/es/form */ 51018);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/slicedToArray.js */ 27424);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_3__);
+/* harmony import */ var antd_es_select_style__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! antd/es/select/style */ 95985);
+/* harmony import */ var antd_es_select__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! antd/es/select */ 34041);
+/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! react */ 67294);
+/* harmony import */ var codemirror__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! codemirror */ 4631);
+/* harmony import */ var codemirror__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(codemirror__WEBPACK_IMPORTED_MODULE_6__);
+/* harmony import */ var codemirror_lib_codemirror_css__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! codemirror/lib/codemirror.css */ 71749);
+/* harmony import */ var codemirror_theme_blackboard_css__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! codemirror/theme/blackboard.css */ 30483);
+/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! react/jsx-runtime */ 85893);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Option = antd_es_select__WEBPACK_IMPORTED_MODULE_10__/* ["default"].Option */ .Z.Option;
+
+//https://github.com/codemirror/CodeMirror/issues/4838
+var formItemLayout = {
+ labelCol: {
+ span: 4
+ },
+ wrapperCol: {
+ span: 20
+ }
+};
+var LanguageDesc = {
+ asp: ['ASP', 'vbscript'],
+ actionscript: ['ActionScript(3.0)/Flash/Flex', 'clike'],
+ bash: ['Bash/Bat', 'shell'],
+ css: ['CSS', 'css'],
+ c: ['C', 'clike'],
+ cpp: ['C++', 'clike'],
+ csharp: ['C#', 'clike'],
+ coffeescript: ['CoffeeScript', 'coffeescript'],
+ d: ['D', 'd'],
+ dart: ['Dart', 'dart'],
+ delphi: ['Delphi/Pascal', 'pascal'],
+ erlang: ['Erlang', 'erlang'],
+ go: ['Golang', 'go'],
+ groovy: ['Groovy', 'groovy'],
+ html: ['HTML', 'text/html'],
+ java: ['Java', 'clike'],
+ json: ['JSON', 'text/json'],
+ javascript: ['Javascript', 'javascript'],
+ lua: ['Lua', 'lua'],
+ less: ['LESS', 'css'],
+ markdown: ['Markdown', 'gfm'],
+ 'objective-c': ['Objective-C', 'clike'],
+ php: ['PHP', 'php'],
+ perl: ['Perl', 'perl'],
+ python: ['Python', 'python'],
+ r: ['R', 'r'],
+ rst: ['reStructedText', 'rst'],
+ ruby: ['Ruby', 'ruby'],
+ sql: ['SQL', 'sql'],
+ sass: ['SASS/SCSS', 'sass'],
+ shell: ['Shell', 'shell'],
+ scala: ['Scala', 'clike'],
+ swift: ['Swift', 'clike'],
+ vb: ['VB/VBScript', 'vb'],
+ xml: ['XML', 'text/xml'],
+ yaml: ['YAML', 'yaml']
+};
+/* harmony default export */ __webpack_exports__["Z"] = (function (_ref) {
+ var callback = _ref.callback,
+ onCancel = _ref.onCancel;
+ var _useState = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)('python'),
+ _useState2 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_3___default()(_useState, 2),
+ mode = _useState2[0],
+ setMode = _useState2[1];
+ function onSetMode(value) {
+ setMode(LanguageDesc[value][1]);
+ }
+ function onSubmit(values) {
+ callback(values);
+ }
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsxs)(antd_es_form__WEBPACK_IMPORTED_MODULE_11__/* ["default"] */ .Z, _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default()({}, formItemLayout), {}, {
+ className: "code-block-panel",
+ initialValues: {
+ language: 'python',
+ content: ''
+ },
+ onFinish: onSubmit,
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(antd_es_form__WEBPACK_IMPORTED_MODULE_11__/* ["default"].Item */ .Z.Item, {
+ label: "\u4EE3\u7801\u8BED\u8A00",
+ name: "language",
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(antd_es_select__WEBPACK_IMPORTED_MODULE_10__/* ["default"] */ .Z, {
+ getPopupContainer: function getPopupContainer(trigger) {
+ return trigger.parentNode;
+ },
+ onChange: onSetMode,
+ children: Object.keys(LanguageDesc).map(function (item) {
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(Option, {
+ value: item,
+ children: LanguageDesc[item][0]
+ }, item);
+ })
+ })
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(antd_es_form__WEBPACK_IMPORTED_MODULE_11__/* ["default"].Item */ .Z.Item, {
+ label: "\u4EE3\u7801\u5185\u5BB9",
+ name: "content",
+ rules: [{
+ required: true,
+ message: '请输入代码内容'
+ }],
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(MyCodeMirror, {
+ mode: mode
+ })
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsxs)("div", {
+ className: "flex-container flex-end",
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(antd_es_button__WEBPACK_IMPORTED_MODULE_12__/* ["default"] */ .Z, {
+ type: "primary",
+ htmlType: "submit",
+ style: {
+ marginRight: 10
+ },
+ children: "\u786E\u5B9A"
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(antd_es_button__WEBPACK_IMPORTED_MODULE_12__/* ["default"] */ .Z, {
+ type: "ghost",
+ onClick: onCancel,
+ children: "\u53D6\u6D88"
+ })]
+ })]
+ }));
+});
+function MyCodeMirror(_ref2) {
+ var value = _ref2.value,
+ onChange = _ref2.onChange,
+ mode = _ref2.mode,
+ _ref2$options = _ref2.options,
+ options = _ref2$options === void 0 ? {} : _ref2$options;
+ var el = (0,react__WEBPACK_IMPORTED_MODULE_5__.useRef)();
+ var _useState3 = (0,react__WEBPACK_IMPORTED_MODULE_5__.useState)(),
+ _useState4 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_3___default()(_useState3, 2),
+ cm = _useState4[0],
+ setCm = _useState4[1];
+ (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(function () {
+ if (cm) {
+ var onChangeHandler = function onChangeHandler(cm) {
+ var content = cm.getValue();
+ onChange && onChange(content);
+ };
+ cm.on('change', onChangeHandler);
+ return function () {
+ cm.off('change', onChangeHandler);
+ };
+ }
+ }, [cm, onChange]);
+ (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(function () {
+ if (cm) {
+ cm.setOption('mode', mode);
+ }
+ }, [cm, mode]);
+ (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(function () {
+ if (cm) {
+ if (value !== cm.getValue() || value === '') {
+ setTimeout(function () {
+ cm.setValue(value || '');
+ }, 300);
+ }
+ }
+ }, [cm, value]);
+ (0,react__WEBPACK_IMPORTED_MODULE_5__.useEffect)(function () {
+ if (el.current && !cm) {
+ var instance = codemirror__WEBPACK_IMPORTED_MODULE_6___default().fromTextArea(el.current, _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default()({
+ mode: mode,
+ lineNumbers: true,
+ lineWrapping: true,
+ autoCloseBrackets: true,
+ tabSize: 4,
+ autofocus: true,
+ autoCloseTags: true,
+ matchBrackets: true,
+ styleActiveLine: true
+ }, options));
+ setCm(instance);
+ }
+ }, [el.current, cm]);
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("div", {
+ className: "my-codemirror-container",
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("textarea", {
+ ref: el
+ })
+ });
+}
+
+/***/ }),
+
+/***/ 55373:
+/*!***************************************************************!*\
+ !*** ./src/components/markdown-editor/index.tsx + 10 modules ***!
+ \***************************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+
+// EXPORTS
+__webpack_require__.d(__webpack_exports__, {
+ "Z": function() { return /* binding */ markdown_editor; }
+});
+
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
+var style = __webpack_require__(35611);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
+var modal = __webpack_require__(85402);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js
+var createForOfIteratorHelper = __webpack_require__(74704);
+var createForOfIteratorHelper_default = /*#__PURE__*/__webpack_require__.n(createForOfIteratorHelper);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules
+var message_style = __webpack_require__(14934);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules
+var message = __webpack_require__(12461);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
+var slicedToArray = __webpack_require__(27424);
+var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
+// 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/react/index.js
+var react = __webpack_require__(67294);
+// EXTERNAL MODULE: ./node_modules/codemirror/lib/codemirror.js
+var codemirror = __webpack_require__(4631);
+var codemirror_default = /*#__PURE__*/__webpack_require__.n(codemirror);
+// EXTERNAL MODULE: ./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js
+var ResizeObserver_es = __webpack_require__(91033);
+// EXTERNAL MODULE: ./node_modules/codemirror/lib/codemirror.css
+var lib_codemirror = __webpack_require__(71749);
+// EXTERNAL MODULE: ./node_modules/codemirror/addon/edit/closetag.js
+var closetag = __webpack_require__(57341);
+// EXTERNAL MODULE: ./node_modules/codemirror/addon/edit/closebrackets.js
+var closebrackets = __webpack_require__(82801);
+// EXTERNAL MODULE: ./node_modules/codemirror/addon/display/placeholder.js
+var placeholder = __webpack_require__(88386);
+// EXTERNAL MODULE: ./node_modules/codemirror/mode/markdown/markdown.js
+var markdown = __webpack_require__(49047);
+// EXTERNAL MODULE: ./node_modules/codemirror/mode/stex/stex.js
+var stex = __webpack_require__(80785);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/index.less
+// extracted by mini-css-extract-plugin
+
+// EXTERNAL MODULE: ./src/components/RenderHtml/index.tsx + 1 modules
+var RenderHtml = __webpack_require__(12768);
+// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
+var jsx_runtime = __webpack_require__(85893);
+;// CONCATENATED MODULE: ./src/components/RenderHtml/stex.tsx
+
+// const latexjs = require('latex-l.js/dist/latex.js');
+// import "latex-l.js/dist/css/base.css"
+
+
+/* harmony default export */ var RenderHtml_stex = (function (_ref) {
+ var _ref$value = _ref.value,
+ value = _ref$value === void 0 ? '' : _ref$value,
+ className = _ref.className,
+ showTextOnly = _ref.showTextOnly,
+ showLines = _ref.showLines,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style;
+ var html = (0,react.useMemo)(function () {
+ // try {
+ // const latex = value || 'This is some text';
+ // let generator = new latexjs.default.HtmlGenerator({ hyphenate: true })
+ // let doc = latexjs.default.parse(latex, { generator: generator }).htmlDocument()
+ // return doc.body.innerHTML
+ // }catch(e){
+ // console.log("e:",e)
+ // return "错误的latex语法,请检查"
+ // }
+ return "";
+ }, [value]);
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(jsx_runtime.Fragment, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ dangerouslySetInnerHTML: {
+ __html: html
+ }
+ })
+ });
+});
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
+var objectSpread2 = __webpack_require__(42122);
+var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/toolbar/index.less
+// extracted by mini-css-extract-plugin
+
+;// CONCATENATED MODULE: ./src/components/markdown-editor/css/iconfont.css
+// extracted by mini-css-extract-plugin
+
+;// CONCATENATED MODULE: ./src/components/markdown-editor/toolbar/index.tsx
+
+
+
+
+
+
+var DEFAULTICONS = [{
+ title: '粗体',
+ icon: 'icon-bold',
+ actionName: 'bold'
+}, {
+ title: '斜体',
+ icon: 'icon-italic',
+ actionName: 'italic'
+}, '|', {
+ title: '无序列表',
+ icon: 'icon-unorder-list',
+ actionName: 'list-ul'
+}, {
+ title: '有序列表',
+ icon: 'icon-order-list',
+ actionName: 'list-ol'
+}, '|', {
+ title: '行内代码',
+ icon: 'icon-code',
+ actionName: 'code'
+}, {
+ title: '代码块(多语言风格)',
+ icon: 'icon-file-code',
+ actionName: 'code-block'
+}, {
+ title: '链接',
+ icon: 'icon-link',
+ actionName: 'link'
+}, '|', {
+ title: '行内公式',
+ icon: 'icon-sum',
+ actionName: 'inline-latex'
+}, {
+ title: '多行公式',
+ icon: 'icon-formula',
+ actionName: 'latex'
+}, '|', {
+ title: '添加图片',
+ icon: 'icon-picture',
+ actionName: 'upload-image'
+}, {
+ title: '表格',
+ icon: 'icon-table',
+ actionName: 'add-table'
+}, '|', {
+ title: '换行',
+ icon: 'icon-minus',
+ actionName: 'line-break'
+}, {
+ title: '清空',
+ icon: 'icon-eraser',
+ actionName: 'eraser'
+}];
+function AButton(_ref) {
+ var onActionCallback = _ref.onActionCallback,
+ title = _ref.title,
+ icon = _ref.icon,
+ actionName = _ref.actionName,
+ _ref$className = _ref.className,
+ className = _ref$className === void 0 ? '' : _ref$className,
+ children = _ref.children;
+ function onAction() {
+ onActionCallback(actionName);
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ title: title,
+ className: className,
+ onClick: onAction,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "md-iconfont ".concat(icon)
+ }), children]
+ });
+}
+/* harmony default export */ var toolbar = (function (_ref2) {
+ var watch = _ref2.watch,
+ showNullButton = _ref2.showNullButton,
+ onActionCallback = _ref2.onActionCallback,
+ fullScreen = _ref2.fullScreen,
+ insertTemp = _ref2.insertTemp,
+ hidetoolBar = _ref2.hidetoolBar;
+ var icons = [].concat(DEFAULTICONS, [{
+ title: "".concat(watch ? '关闭实时预览' : '开启实时预览'),
+ icon: "".concat(watch ? 'icon-eye-slash' : 'icon-eye'),
+ actionName: 'trigger-watch'
+ }]);
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("ul", {
+ className: "markdown-toolbar-container",
+ children: [!hidetoolBar && icons.map(function (item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: item.actionName ? /*#__PURE__*/(0,jsx_runtime.jsx)(AButton, objectSpread2_default()(objectSpread2_default()({}, item), {}, {
+ onActionCallback: onActionCallback
+ })) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "v-line"
+ })
+ }, index);
+ }), showNullButton ? /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(AButton, {
+ icon: "icon-edit insert-blank",
+ className: "btn-null",
+ title: "\u589E\u52A0\u586B\u7A7A",
+ actionName: "add-null-ch",
+ onActionCallback: onActionCallback,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "fill-tip",
+ children: "\u70B9\u51FB\u63D2\u5165\b\u586B\u7A7A\u9879"
+ })
+ })
+ }) : null, insertTemp && /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(AButton, {
+ icon: "icon-edit",
+ className: "btn-null",
+ title: "\u63D2\u5165\u6A21\u677F",
+ actionName: "inster-template-".concat(insertTemp),
+ onActionCallback: onActionCallback,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "fill-tip",
+ children: "\u63D2\u5165\u6A21\u677F"
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: "btn-full-screen",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(AButton, {
+ icon: "".concat(fullScreen ? 'icon-shrink' : 'icon-enlarge'),
+ title: fullScreen ? '关闭全屏' : '开启全屏',
+ actionName: "trigger-full-screen",
+ onActionCallback: onActionCallback
+ })
+ })]
+ });
+});
+// EXTERNAL MODULE: ./src/components/modal.tsx
+var components_modal = __webpack_require__(12264);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules
+var button_style = __webpack_require__(29913);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js
+var es_button = __webpack_require__(71577);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules
+var form_style = __webpack_require__(75627);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules
+var es_form = __webpack_require__(51018);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules
+var input_style = __webpack_require__(69463);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules
+var input = __webpack_require__(75008);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/link/index.tsx
+
+
+
+
+
+
+
+
+
+
+var formItemLayout = {
+ labelCol: {
+ span: 4
+ },
+ wrapperCol: {
+ span: 20
+ }
+};
+/* harmony default export */ var markdown_editor_link = (function (_ref) {
+ var callback = _ref.callback,
+ onCancel = _ref.onCancel;
+ function onSubmit(values) {
+ callback(values);
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, objectSpread2_default()(objectSpread2_default()({}, formItemLayout), {}, {
+ initialValues: {
+ link: 'http://',
+ title: ''
+ },
+ className: "link-panel",
+ onFinish: onSubmit,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u94FE\u63A5\u5730\u5740",
+ name: "link",
+ rules: [{
+ required: true,
+ message: '请输入链接地址'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {})
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u94FE\u63A5\u6807\u9898",
+ name: "title",
+ rules: [{
+ required: true,
+ message: '请输入链接标题'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {})
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "flex-container flex-end",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ htmlType: "submit",
+ style: {
+ marginRight: 10
+ },
+ children: "\u786E\u5B9A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "ghost",
+ onClick: onCancel,
+ children: "\u53D6\u6D88"
+ })]
+ })]
+ }));
+});
+// EXTERNAL MODULE: ./src/components/markdown-editor/code-block/index.tsx
+var code_block = __webpack_require__(97501);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/upload-image/index.less
+// extracted by mini-css-extract-plugin
+
+// EXTERNAL MODULE: ./src/pages/tasks/util.js
+var util = __webpack_require__(96403);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/upload-image/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var useForm = es_form/* default.useForm */.Z.useForm;
+var upload_image_style = {
+ width: 280,
+ marginRight: 10
+};
+var upload_image_formItemLayout = {
+ labelCol: {
+ span: 5
+ },
+ wrapperCol: {
+ span: 19
+ }
+};
+/* harmony default export */ var upload_image = (function (_ref) {
+ var callback = _ref.callback,
+ onCancel = _ref.onCancel;
+ var _useForm = useForm(),
+ _useForm2 = slicedToArray_default()(_useForm, 1),
+ form = _useForm2[0];
+ function onSubmit(values) {
+ callback(values);
+ }
+ function onAddUrl(data, file) {
+ if (data.status === -1) {
+ message/* default.error */.ZP.error(data.message);
+ return;
+ }
+ form.setFieldsValue({
+ src: "/api/attachments/".concat(data.id),
+ type: file.type
+ });
+ }
+ function onFileChange(e) {
+ var file = e.target.files[0];
+ uploadImage(file, onAddUrl);
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, objectSpread2_default()(objectSpread2_default()({
+ form: form
+ }, upload_image_formItemLayout), {}, {
+ className: "upload-image-panel",
+ onFinish: onSubmit,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u56FE\u7247\u5730\u5740",
+ required: true,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "flex-container",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ noStyle: true,
+ name: "src",
+ rules: [{
+ required: true,
+ message: '请输入图片地址'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ style: upload_image_style
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(UploadButton, {
+ onFileChange: onFileChange
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u56FE\u7247\u63CF\u8FF0",
+ name: "alt"
+ // rules={[{ required: true, message: '请输入图片描述' }]}
+ ,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ style: {
+ width: 264
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ style: {
+ textAlign: "right"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ htmlType: "submit",
+ style: {
+ marginRight: 10
+ },
+ children: "\u786E\u5B9A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "ghost",
+ onClick: onCancel,
+ children: "\u53D6\u6D88"
+ })]
+ })]
+ }));
+});
+function UploadButton(_ref2) {
+ var onFileChange = _ref2.onFileChange;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ className: "upload-button",
+ children: ["\u672C\u5730\u4E0A\u4F20", /*#__PURE__*/(0,jsx_runtime.jsx)("input", {
+ type: "file",
+ onChange: onFileChange
+ })]
+ });
+}
+function uploadImage(file, callback) {
+ if (!file) {
+ throw new String('没有文件');
+ return;
+ }
+ var formData = new FormData();
+ formData.append('editormd-image-file', file);
+ formData.append('file_param_name', 'editormd-image-file');
+ formData.append('byxhr', 'true');
+ var xhr = new window.XMLHttpRequest();
+ xhr.withCredentials = true;
+ xhr.addEventListener('load', function (response) {
+ callback(JSON.parse(response.target.responseText), file);
+ }, false);
+ xhr.addEventListener('error', function (error) {
+ console.error(error);
+ }, false);
+ xhr.open('POST', "".concat(util/* apiPref */.KI, "/api/attachments.json"));
+ xhr.send(formData);
+}
+// EXTERNAL MODULE: ./node_modules/antd/es/input-number/style/index.js + 1 modules
+var input_number_style = __webpack_require__(25359);
+// EXTERNAL MODULE: ./node_modules/antd/es/input-number/index.js + 9 modules
+var input_number = __webpack_require__(87799);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/style/index.js + 1 modules
+var radio_style = __webpack_require__(83822);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/index.js + 4 modules
+var es_radio = __webpack_require__(29924);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/add-table-panel/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+var RadioGroup = es_radio/* default.Group */.ZP.Group;
+var add_table_panel_style = {
+ margin: '0 8px'
+};
+/* harmony default export */ var add_table_panel = (function (_ref) {
+ var callback = _ref.callback,
+ onCancel = _ref.onCancel;
+ function onSubmit(values) {
+ callback(values);
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ className: "add-table-panel",
+ initialValues: {
+ row: 3,
+ col: 2,
+ align: 'default'
+ },
+ onFinish: onSubmit,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "flex-container",
+ style: {
+ alignItems: "baseline"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: add_table_panel_style,
+ children: "\u5355\u5143\u683C\u6570\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: add_table_panel_style,
+ children: "\u884C\u6570"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "row",
+ rules: [{
+ required: true,
+ message: '请输入行数'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input_number/* default */.Z, {})
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: add_table_panel_style,
+ children: "\u5217\u6570"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "col",
+ rules: [{
+ required: true,
+ message: '请输入列数'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input_number/* default */.Z, {})
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "flex-container",
+ style: {
+ marginTop: 12,
+ alignItems: "baseline"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: add_table_panel_style,
+ children: "\u5BF9\u9F50\u65B9\u5F0F\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "align",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(RadioGroup, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: "default",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "fa fa-align-justify"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: "left",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "fa fa-align-left"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: "center",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "fa fa-align-center"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: "right",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "fa fa-align-right"
+ })
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "flex-container flex-end",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ htmlType: "submit",
+ style: {
+ marginRight: 10
+ },
+ children: "\u786E\u5B9A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "ghost",
+ onClick: onCancel,
+ children: "\u53D6\u6D88"
+ })]
+ })]
+ });
+});
+// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
+var env = __webpack_require__(59758);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/constant.ts
+var LINK = 'link';
+var UPLOAD_IMAGE = 'upload-image';
+var CODE_BLOCK = 'code-block';
+var ADD_TABLE = 'add-table';
+var HRLINE = '------------';
+var ALIGNSIGN = {
+ "default": HRLINE,
+ left: ":".concat(HRLINE),
+ center: ":".concat(HRLINE, ":"),
+ right: "".concat(HRLINE, ":")
+};
+// EXTERNAL MODULE: ./src/components/useInterval.tsx
+var useInterval = __webpack_require__(61891);
+;// CONCATENATED MODULE: ./src/components/markdown-editor/index.tsx
+
+
+
+
+
+
+
+var _DEFAULTKEYMAP, _TitleDesc;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function noop() {}
+var pending = 0;
+var StorageTimeTicket = 10000;
+var NULL_CH = '▁';
+var TEMP1 = '\n**模板标题**\n模板正文内容,可输入文本内容和粘贴图片等操作'; //课程须知模板
+function processSize(size) {
+ return !/^\d+$/.test(size) ? size : "".concat(size, "px");
+}
+var isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0;
+var key = isMac ? 'Cmd' : 'Ctrl';
+var DEFAULTKEYMAP = (_DEFAULTKEYMAP = {}, defineProperty_default()(_DEFAULTKEYMAP, key + '-B', 'bold'), defineProperty_default()(_DEFAULTKEYMAP, key + '-I', 'italic'), _DEFAULTKEYMAP);
+var TitleDesc = (_TitleDesc = {}, defineProperty_default()(_TitleDesc, LINK, '添加链接'), defineProperty_default()(_TitleDesc, CODE_BLOCK, '添加代码块'), defineProperty_default()(_TitleDesc, UPLOAD_IMAGE, '添加图片'), defineProperty_default()(_TitleDesc, ADD_TABLE, '添加表格'), _TitleDesc);
+
+//https://codemirror.net/demo
+//The height can be set through CSS (by giving the .CodeMirror class a height property), or by calling the cm's setSize method.
+
+/* harmony default export */ var markdown_editor = (function (_ref) {
+ var _ref$defaultValue = _ref.defaultValue,
+ defaultValue = _ref$defaultValue === void 0 ? '' : _ref$defaultValue,
+ onChange = _ref.onChange,
+ _ref$width = _ref.width,
+ width = _ref$width === void 0 ? '100%' : _ref$width,
+ _ref$height = _ref.height,
+ height = _ref$height === void 0 ? 400 : _ref$height,
+ _ref$miniToolbar = _ref.miniToolbar,
+ miniToolbar = _ref$miniToolbar === void 0 ? false : _ref$miniToolbar,
+ _ref$isFocus = _ref.isFocus,
+ isFocus = _ref$isFocus === void 0 ? false : _ref$isFocus,
+ watch = _ref.watch,
+ insertTemp = _ref.insertTemp,
+ _ref$mode = _ref.mode,
+ mode = _ref$mode === void 0 ? "markdown" : _ref$mode,
+ _ref$id = _ref.id,
+ id = _ref$id === void 0 ? 'markdown-editor-id' : _ref$id,
+ _ref$showResizeBar = _ref.showResizeBar,
+ showResizeBar = _ref$showResizeBar === void 0 ? false : _ref$showResizeBar,
+ _ref$noStorage = _ref.noStorage,
+ noStorage = _ref$noStorage === void 0 ? false : _ref$noStorage,
+ _ref$showNullButton = _ref.showNullButton,
+ showNullButton = _ref$showNullButton === void 0 ? false : _ref$showNullButton,
+ _ref$hidetoolBar = _ref.hidetoolBar,
+ hidetoolBar = _ref$hidetoolBar === void 0 ? false : _ref$hidetoolBar,
+ _ref$fullScreen = _ref.fullScreen,
+ fullScreen = _ref$fullScreen === void 0 ? false : _ref$fullScreen,
+ onBlur = _ref.onBlur,
+ onCMBeforeChange = _ref.onCMBeforeChange,
+ onFullScreen = _ref.onFullScreen,
+ _ref$className = _ref.className,
+ className = _ref$className === void 0 ? '' : _ref$className,
+ _ref$disablePaste = _ref.disablePaste,
+ disablePaste = _ref$disablePaste === void 0 ? false : _ref$disablePaste,
+ _ref$disabled = _ref.disabled,
+ disabled = _ref$disabled === void 0 ? false : _ref$disabled,
+ _ref$placeholder = _ref.placeholder,
+ placeholder = _ref$placeholder === void 0 ? '' : _ref$placeholder,
+ _ref$values = _ref.values,
+ values = _ref$values === void 0 ? '' : _ref$values;
+ var _useState = (0,react.useState)(null),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ cm = _useState2[0],
+ setCm = _useState2[1];
+ var _useState3 = (0,react.useState)(defaultValue),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ value = _useState4[0],
+ setValue = _useState4[1];
+ var _useState5 = (0,react.useState)(watch),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ preview = _useState6[0],
+ setPreview = _useState6[1];
+ var _useState7 = (0,react.useState)(fullScreen),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ isFull = _useState8[0],
+ setIsFull = _useState8[1];
+ var _useState9 = (0,react.useState)(''),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ action = _useState10[0],
+ setAction = _useState10[1];
+ var _useState11 = (0,react.useState)(0),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ lastedUpdateTime = _useState12[0],
+ setLastedUpdateTime = _useState12[1];
+ var _useState13 = (0,react.useState)(height),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ h = _useState14[0],
+ setH = _useState14[1];
+ var _useState15 = (0,react.useState)(false),
+ _useState16 = slicedToArray_default()(_useState15, 2),
+ tip = _useState16[0],
+ setTip = _useState16[1];
+ var cmEl = (0,react.useRef)();
+ var containerEl = (0,react.useRef)();
+ var resizeBarEl = (0,react.useRef)();
+ var previewEl = (0,react.useRef)();
+
+ // useEffect(() => {
+ // setValue(defaultValue)
+ // cm?.setValue(defaultValue)
+ // },[])
+ (0,react.useEffect)(function () {
+ setValue(values);
+ cm === null || cm === void 0 ? void 0 : cm.setValue(values);
+ }, [values]);
+ (0,react.useEffect)(function () {
+ onFullScreen === null || onFullScreen === void 0 ? void 0 : onFullScreen(isFull);
+ }, [isFull]);
+ (0,react.useEffect)(function () {
+ if (cmEl.current) {
+ var onPaste = function onPaste(_, e) {
+ if (disablePaste) {
+ e.preventDefault();
+ return;
+ }
+ var clipboardData = e.clipboardData;
+ if (clipboardData) {
+ var types = clipboardData.types.toString();
+ var items = clipboardData.items;
+ var officeSix = ["pptm", "pptx", "ppt", "pot", "pps", "ppa", "potx", "ppsx", "ppam", "pptm", "potm", "ppsm", "doc", "docx", "dot", "dotx", "docm", "dotm", "xls", "xlsx", "csv", "xlt", "xla", "xltx", "xlsm", "xltm", "xlam", "xlsb"];
+ if (types === 'Files' || clipboardData.types.indexOf("Files") > -1) {
+ e.preventDefault();
+ if (mode == "stex") return;
+ try {
+ var _items$;
+ var item = items[1];
+ if (((_items$ = items[0]) === null || _items$ === void 0 ? void 0 : _items$.kind) === 'file') {
+ item = items[0];
+ }
+ var file = item.getAsFile();
+ var fileSix = file.name.split(".").pop();
+ // console.log("item:", item, file, item?.type?.match(/^video\//i))
+ uploadImage(file, function (data) {
+ if (data.id) {
+ var _file$type, _file$type2, _file$type3;
+ if ((file === null || file === void 0 ? void 0 : (_file$type = file.type) === null || _file$type === void 0 ? void 0 : _file$type.indexOf("image")) > -1) {
+ instance.replaceSelection(".concat(data.content_type, ")"));
+ } else if ((file === null || file === void 0 ? void 0 : (_file$type2 = file.type) === null || _file$type2 === void 0 ? void 0 : _file$type2.indexOf("video")) > -1) {
+ instance.replaceSelection(""));
+ } else if ((file === null || file === void 0 ? void 0 : (_file$type3 = file.type) === null || _file$type3 === void 0 ? void 0 : _file$type3.indexOf("pdf")) > -1) {
+ instance.replaceSelection("").concat(file.name, ""));
+ } else if (officeSix.includes(fileSix)) {
+ instance.replaceSelection("").concat(file.name, ""));
+ } else {
+ instance.replaceSelection("[".concat(file.name, "](").concat(env/* default.API_SERVER */.Z.API_SERVER, "/api/attachments/").concat(data.id, "?type=").concat(data.content_type, ")"));
+ }
+ } else {
+ if ((data === null || data === void 0 ? void 0 : data.status) === 401) document.location.href = '/user/login';
+ }
+ });
+ } catch (e) {
+ message/* default.warn */.ZP.warn("请使用chrome浏览器粘贴");
+ }
+ return true;
+ } else {
+ //toMarkdown ?
+ // let html = clipboardData.getData('text/html')
+ return true;
+ }
+ }
+ return true;
+ };
+ var instance = codemirror_default().fromTextArea(cmEl.current, {
+ mode: mode,
+ // inputStyle: 'contenteditable',
+ lineNumbers: miniToolbar ? false : true,
+ lineWrapping: true,
+ value: defaultValue,
+ autoCloseTags: true,
+ autoCloseBrackets: true
+ });
+ isFocus && instance.focus();
+ instance.on('paste', onPaste);
+ if (disabled) {
+ instance.on("beforeChange", function (instances, change) {
+ if (change.origin === "paste" || change.origin === "+input") {
+ change.cancel();
+ }
+ });
+ }
+ setCm(instance);
+ return function () {
+ instance.off('paste', onPaste);
+ };
+ }
+ }, []);
+ var resizeEditorBodyHeight = (0,react.useCallback)(function () {
+ if (containerEl.current) {
+ try {
+ // let toolH = containerEl.current.getElementsByClassName('markdown-toolbar-container')[0].offsetHeight
+ // let mdBody = containerEl.current.getElementsByClassName('markdown-editor-body')[0]
+ // if (!isFull) {
+ // mdBody.style.height = `${h - toolH}px`
+ // } else {
+ // mdBody.style.height = `calc(100vh - ${toolH}px)`
+ // }
+ } catch (error) {
+ console.log(error, '---- to set md editor body height');
+ }
+ }
+ }, [h, containerEl, isFull]);
+ (0,react.useEffect)(function () {
+ function onLayout() {
+ var ro = new ResizeObserver_es/* default */.Z(function (entries) {
+ var _iterator = createForOfIteratorHelper_default()(entries),
+ _step;
+ try {
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
+ var entry = _step.value;
+ if (entry.target.offsetHeight > 0 || entry.target.offsetWidth > 0) {
+ resizeEditorBodyHeight();
+ cm.setSize('100%', '100%');
+ cm.refresh();
+ }
+ }
+ } catch (err) {
+ _iterator.e(err);
+ } finally {
+ _iterator.f();
+ }
+ });
+ ro.observe(cmEl.current.parentElement);
+ return ro;
+ }
+ if (cm) {
+ var ro = onLayout();
+ return function () {
+ var _cmEl$current, _cmEl$current2;
+ if ((_cmEl$current = cmEl.current) !== null && _cmEl$current !== void 0 && _cmEl$current.parentElement) ro.unobserve((_cmEl$current2 = cmEl.current) === null || _cmEl$current2 === void 0 ? void 0 : _cmEl$current2.parentElement);
+ };
+ }
+ }, [cm, resizeEditorBodyHeight]);
+
+ //keymap
+ (0,react.useEffect)(function () {
+ if (cm) {
+ var keymap = [];
+ var _loop = function _loop() {
+ var _Object$entries$_i = slicedToArray_default()(_Object$entries[_i], 2),
+ k = _Object$entries$_i[0],
+ value = _Object$entries$_i[1];
+ var map = defineProperty_default()({}, k, function () {
+ onActionCallback(value);
+ });
+ keymap.push(map);
+ cm.addKeyMap(map);
+ };
+ for (var _i = 0, _Object$entries = Object.entries(DEFAULTKEYMAP); _i < _Object$entries.length; _i++) {
+ _loop();
+ }
+ return function () {
+ for (var _i2 = 0, _keymap = keymap; _i2 < _keymap.length; _i2++) {
+ var m = _keymap[_i2];
+ cm.removeKeyMap(m);
+ }
+ };
+ }
+ }, [cm]);
+ (0,react.useEffect)(function () {
+ if (fullScreen !== isFull) {
+ setIsFull(fullScreen);
+ }
+ }, [fullScreen]);
+ (0,useInterval/* default */.Z)(function () {
+ if (!noStorage && lastedUpdateTime > 0) {
+ var currentTime = new Date().getTime();
+ var lastedValue = window.sessionStorage.getItem(id);
+ if (currentTime >= lastedUpdateTime + StorageTimeTicket && (!lastedValue || lastedValue !== value)) {
+ window.sessionStorage.setItem(id, value);
+ setTip(true);
+ }
+ }
+ }, StorageTimeTicket);
+ (0,react.useEffect)(function () {
+ setPreview(watch);
+ }, [cm, watch]);
+ (0,react.useEffect)(function () {
+ if (cm) {
+ isFocus && cm.focus();
+ }
+ }, [cm, isFocus]);
+ (0,react.useEffect)(function () {
+ if (preview && cm) {
+ var syncScroll = function syncScroll(e) {
+ var target = e.target;
+ if (previewEl.current) {
+ var ratio = target.scrollTop / target.scrollHeight;
+ previewEl.current.scrollTop = previewEl.current.scrollHeight * ratio;
+ }
+ };
+ var scrollEl = cm.getScrollerElement();
+ scrollEl.addEventListener('scroll', syncScroll);
+ return function () {
+ scrollEl.removeEventListener('scroll', syncScroll);
+ };
+ }
+ }, [cm, preview]);
+ (0,react.useEffect)(function () {
+ if (cm && onCMBeforeChange) {
+ var onChangeHandler = function onChangeHandler(cm, change) {
+ onCMBeforeChange(cm, change);
+ };
+ cm.on('beforeChange', onChangeHandler);
+ return function () {
+ cm.off('beforeChange', onChangeHandler);
+ };
+ }
+ }, [cm, onCMBeforeChange]);
+ (0,react.useEffect)(function () {
+ if (cm && onBlur) {
+ var onBlurHandler = function onBlurHandler() {
+ onBlur(cm.getValue());
+ };
+ cm.on('blur', onBlurHandler);
+ return function () {
+ cm.off('blur', onBlurHandler);
+ };
+ }
+ }, [cm, onBlur]);
+ (0,react.useEffect)(function () {
+ if (cm) {
+ var onChangeHandler = function onChangeHandler(cm) {
+ var content = cm.getValue();
+ setValue(content);
+ setLastedUpdateTime(new Date().getTime());
+ cm.getScrollerElement().dispatchEvent(new CustomEvent('scroll'));
+ onChange && onChange(content);
+ };
+ cm.on('change', onChangeHandler);
+ return function () {
+ cm.off('change', onChangeHandler);
+ };
+ }
+ }, [cm, onChange]);
+ (0,react.useEffect)(function () {
+ if (cm) {
+ // isFocus && cm.focus()
+ if (defaultValue === null || defaultValue === undefined) {
+ cm.setValue('');
+ setValue('');
+ } else {
+ if (defaultValue !== cm.getValue()) {
+ cm.setValue(defaultValue);
+ setValue(defaultValue);
+ cm.setCursor(disabled ? 1 : cm.lineCount(), 0);
+ }
+ }
+ }
+ }, [cm, defaultValue]);
+ var onActionCallback = (0,react.useCallback)(function (actionName) {
+ var cursor = cm.getCursor();
+ var selection = cm.getSelection();
+ var selectionText = selection.split('\n');
+ switch (actionName) {
+ case 'bold':
+ cm.replaceSelection('**' + selection + '**');
+ if (selection === '') {
+ cm.setCursor(cursor.line, cursor.ch + 2);
+ }
+ return cm.focus();
+ case 'italic':
+ cm.replaceSelection('*' + selection + '*');
+ if (selection === '') {
+ cm.setCursor(cursor.line, cursor.ch + 1);
+ }
+ return cm.focus();
+ case 'code':
+ cm.replaceSelection('`' + selection + '`');
+ if (selection === '') {
+ cm.setCursor(cursor.line, cursor.ch + 1);
+ }
+ return cm.focus();
+ case 'inline-latex':
+ cm.replaceSelection('`$$' + selection + '$$`');
+ if (selection === '') {
+ cm.setCursor(cursor.line, cursor.ch + 3);
+ }
+ return cm.focus();
+ case 'latex':
+ cm.replaceSelection("```latex\n" + selection + "\n```");
+ cm.setCursor(cursor.line + 1, selection.length + 1);
+ return cm.focus();
+ case 'line-break':
+ cm.replaceSelection('
\n');
+ return cm.focus();
+ case 'list-ul':
+ if (selection === '') {
+ cm.replaceSelection('- ' + selection);
+ } else {
+ cm.replaceSelection(selectionText.map(function (item) {
+ return item === '' ? '' : "- ".concat(item);
+ }).join('\n'));
+ }
+ return cm.focus();
+ case 'list-ol':
+ if (selection === '') {
+ cm.replaceSelection('1. ' + selection);
+ } else {
+ cm.replaceSelection(selectionText.map(function (item, index) {
+ return item === '' ? '' : "".concat(index + 1, ". ").concat(item);
+ }).join('\n'));
+ }
+ return cm.focus();
+ case 'add-null-ch':
+ if (selection === '') {
+ cm.setCursor(cursor.line, cursor.ch);
+ }
+ cm.replaceSelection(NULL_CH);
+ return cm.focus();
+ case 'inster-template-1':
+ if (selection === '') {
+ cm.setCursor(cursor.line, cursor.ch);
+ }
+ cm.replaceSelection(TEMP1);
+ return cm.focus();
+ case 'eraser':
+ cm.setValue('');
+ return cm.focus();
+ case 'trigger-watch':
+ setPreview(!preview);
+ return cm.focus();
+ case 'trigger-full-screen':
+ setIsFull(!isFull);
+ return cm.focus();
+ case LINK:
+ setAction(LINK);
+ return;
+ case CODE_BLOCK:
+ setAction(CODE_BLOCK);
+ return;
+ case UPLOAD_IMAGE:
+ setAction(UPLOAD_IMAGE);
+ return;
+ case ADD_TABLE:
+ setAction(ADD_TABLE);
+ return;
+ default:
+ throw new Error();
+ }
+ }, [cm, preview, isFull]);
+ var ExecutePluginAction = (0,react.useCallback)(function (values) {
+ setAction('');
+ switch (action) {
+ case LINK:
+ var title = values.title,
+ link = values.link;
+ cm.replaceSelection("[".concat(title, "](").concat(link, ")"));
+ return cm.focus();
+ case CODE_BLOCK:
+ var language = values.language,
+ content = values.content;
+ cm.replaceSelection(['```' + language, content, '```'].join('\n'));
+ return cm.focus();
+ case UPLOAD_IMAGE:
+ var src = values.src,
+ alt = values.alt;
+ if (alt) {
+ cm.replaceSelection(".concat(src, " \"").concat(alt, "\" )"));
+ } else {
+ cm.replaceSelection(""));
+ }
+ return cm.focus();
+ case ADD_TABLE:
+ var row = values.row,
+ col = values.col,
+ align = values.align;
+ var table = '\n';
+ for (var r = 0; r < row; r++) {
+ var rows = [];
+ var heads = [];
+ for (var c = 0; c < col; c++) {
+ if (r === 1) {
+ heads.push(ALIGNSIGN[align]);
+ }
+ rows.push(' ');
+ }
+ if (r === 1) {
+ table += "| ".concat(heads.join(' | '), " |\n");
+ }
+ table += "| ".concat(rows.join(col === 1 ? '' : ' | '), " |\n");
+ }
+ cm.replaceSelection(table + '\n');
+ return cm.focus();
+ default:
+ throw new Error();
+ }
+ }, [cm, action]);
+ var PluginEl = (0,react.useMemo)(function () {
+ switch (action) {
+ case LINK:
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(markdown_editor_link, {
+ callback: ExecutePluginAction,
+ onCancel: onCancel
+ });
+ case CODE_BLOCK:
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(code_block/* default */.Z, {
+ callback: ExecutePluginAction,
+ onCancel: onCancel
+ });
+ case UPLOAD_IMAGE:
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(upload_image, {
+ callback: ExecutePluginAction,
+ onCancel: onCancel
+ });
+ case ADD_TABLE:
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(add_table_panel, {
+ callback: ExecutePluginAction,
+ onCancel: onCancel
+ });
+ default:
+ return null;
+ }
+ }, [action]);
+ function onCancel() {
+ setAction('');
+ }
+ (0,react.useEffect)(function () {
+ if (resizeBarEl.current) {
+ var onMouseDown = function onMouseDown(e) {
+ dragging = true;
+ startY = e.pageY;
+ };
+ var onMouseUp = function onMouseUp() {
+ dragging = false;
+ };
+ var onMouseMove = function onMouseMove(e) {
+ if (dragging) {
+ var delta = e.pageY - startY;
+ if (delta < 0) {
+ delta = 0;
+ }
+ if (delta > 300) {
+ delta = 300;
+ }
+ var resizeH = height + delta + 'px';
+ setH(resizeH);
+ }
+ };
+ var resizeBar = resizeBarEl.current;
+ var dragging = false;
+ var startY = 0;
+ resizeBar.addEventListener('mousedown', onMouseDown);
+ document.addEventListener('mousemove', onMouseMove);
+ document.addEventListener('mouseup', onMouseUp);
+ return function () {
+ resizeBar.removeEventListener('mousedown', onMouseDown);
+ document.removeEventListener('mousemove', onMouseMove);
+ document.removeEventListener('mouseup', onMouseUp);
+ };
+ }
+ }, [cm, resizeBarEl]);
+ (0,react.useEffect)(function () {
+ setH(height);
+ }, [height]);
+ var fixedWidth = processSize(width);
+ var fixedHeight = processSize(h);
+ var style = {
+ width: fixedWidth,
+ height: fixedHeight
+ };
+ var saveTime = (0,react.useMemo)(function () {
+ if (lastedUpdateTime) {
+ var d = new Date(lastedUpdateTime);
+ var _h = d.getHours();
+ var m = d.getMinutes();
+ var s = d.getSeconds();
+ _h = _h < 10 ? '0' + _h : _h;
+ m = m < 10 ? '0' + m : m;
+ s = s < 10 ? '0' + s : s;
+ return "".concat(_h, ":").concat(m, ":").concat(s);
+ }
+ return 0;
+ }, [lastedUpdateTime]);
+ function onCancelStorage() {
+ window.sessionStorage.removeItem(id);
+ setTip(false);
+ setLastedUpdateTime(0);
+ }
+ function onReset() {
+ setTip(false);
+ setLastedUpdateTime(0);
+ cm.setValue(window.sessionStorage.getItem(id));
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(react.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "markdown-editor-wrapper",
+ ref: containerEl,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "markdown-editor-container ".concat(className, " ").concat(preview ? 'on-preview' : '', " ").concat(miniToolbar ? 'mini' : '', " ").concat(isFull ? 'full-screen' : ''),
+ style: style,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(toolbar, {
+ insertTemp: insertTemp,
+ watch: preview,
+ fullScreen: isFull,
+ showNullButton: showNullButton,
+ onActionCallback: onActionCallback,
+ hidetoolBar: hidetoolBar
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "markdown-editor-body",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "codemirror-container",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("textarea", {
+ ref: cmEl,
+ placeholder: placeholder
+ })
+ }), preview ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ ref: previewEl,
+ className: "preview-container",
+ children: [mode === "stex" && /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml_stex, {
+ value: value
+ }), mode !== "stex" && /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, {
+ value: value
+ })]
+ }) : null]
+ })]
+ })
+ }), showResizeBar ? /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ ref: resizeBarEl,
+ className: "editor-resize"
+ }) : null, /*#__PURE__*/(0,jsx_runtime.jsx)(components_modal/* default */.Z, {
+ children: TitleDesc[action] ? /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ centered: true,
+ title: TitleDesc[action],
+ open: true,
+ onCancel: onCancel,
+ footer: null,
+ className: "markdown-popup-form",
+ children: PluginEl
+ }) : null
+ })]
+ });
+});
+
+/***/ }),
+
+/***/ 12264:
+/*!**********************************!*\
+ !*** ./src/components/modal.tsx ***!
+ \**********************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+/* harmony export */ __webpack_require__.d(__webpack_exports__, {
+/* harmony export */ "Z": function() { return /* binding */ Dialog; }
+/* harmony export */ });
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_classCallCheck_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/classCallCheck.js */ 56690);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_classCallCheck_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_classCallCheck_js__WEBPACK_IMPORTED_MODULE_0__);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createClass_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/createClass.js */ 89728);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createClass_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createClass_js__WEBPACK_IMPORTED_MODULE_1__);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_inherits_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/inherits.js */ 61655);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_inherits_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_inherits_js__WEBPACK_IMPORTED_MODULE_2__);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createSuper_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/createSuper.js */ 26389);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createSuper_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createSuper_js__WEBPACK_IMPORTED_MODULE_3__);
+/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! react */ 67294);
+/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! react-dom */ 73935);
+
+
+
+
+
+
+var Dialog = /*#__PURE__*/function (_React$Component) {
+ _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_inherits_js__WEBPACK_IMPORTED_MODULE_2___default()(Dialog, _React$Component);
+ var _super = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createSuper_js__WEBPACK_IMPORTED_MODULE_3___default()(Dialog);
+ function Dialog(props) {
+ var _this;
+ _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_classCallCheck_js__WEBPACK_IMPORTED_MODULE_0___default()(this, Dialog);
+ _this = _super.call(this, props);
+ var doc = window.document;
+ _this.node = doc.createElement('div');
+ doc.body.appendChild(_this.node);
+ return _this;
+ }
+ _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_createClass_js__WEBPACK_IMPORTED_MODULE_1___default()(Dialog, [{
+ key: "render",
+ value: function render() {
+ var children = this.props.children;
+ return /*#__PURE__*/(0,react_dom__WEBPACK_IMPORTED_MODULE_5__.createPortal)(children, this.node);
+ }
+ }, {
+ key: "componentWillUnmount",
+ value: function componentWillUnmount() {
+ window.document.body.removeChild(this.node);
+ }
+ }]);
+ return Dialog;
+}(react__WEBPACK_IMPORTED_MODULE_4__.Component);
+
+
+/***/ }),
+
+/***/ 85343:
+/*!****************************************************************!*\
+ !*** ./src/components/ui-customization/index.tsx + 33 modules ***!
+ \****************************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+
+// EXPORTS
+__webpack_require__.d(__webpack_exports__, {
+ "jL": function() { return /* reexport */ ui_customization_Banner; },
+ "w9": function() { return /* reexport */ Cards_ClassroomList; },
+ "QD": function() { return /* reexport */ ui_customization_ConfirmAndCancel; },
+ "cQ": function() { return /* reexport */ Cards_CourseList; },
+ "op": function() { return /* reexport */ ui_customization_CustomButton; },
+ "t7": function() { return /* reexport */ ui_customization_CustomInput; },
+ "Gi": function() { return /* reexport */ ui_customization_CustomTable; },
+ "YG": function() { return /* reexport */ ui_customization_CustomTabs; },
+ "qp": function() { return /* reexport */ ui_customization_CustomTags; },
+ "qE": function() { return /* reexport */ HeadBack; },
+ "Je": function() { return /* reexport */ QuickPager; },
+ "wb": function() { return /* reexport */ Cards_ShixunList; },
+ "cq": function() { return /* reexport */ ui_customization_SuperiorSort; },
+ "tp": function() { return /* reexport */ ui_customization_SuperiorTabs; }
+});
+
+// EXTERNAL MODULE: ./node_modules/react/index.js
+var react = __webpack_require__(67294);
+;// CONCATENATED MODULE: ./src/components/ui-customization/Banner/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var Bannermodules = ({"flex_box_center":"flex_box_center___NeSU8","flex_space_between":"flex_space_between___ImTGl","flex_box_vertical_center":"flex_box_vertical_center___BtRd9","flex_box_center_end":"flex_box_center_end___qcLe3","flex_box_column":"flex_box_column___Ze_3q","banner":"banner___PoUBO","content":"content___XoDjy","btns":"btns___Pb35j"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/Banner/robot.png
+var robot_namespaceObject = "data:image/png;base64,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";
+// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
+var jsx_runtime = __webpack_require__(85893);
+;// CONCATENATED MODULE: ./src/components/ui-customization/Banner/index.tsx
+
+
+
+
+
+var Banner = function Banner(_ref) {
+ var _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ img = _ref.img,
+ _ref$imgWidth = _ref.imgWidth,
+ imgWidth = _ref$imgWidth === void 0 ? 346 : _ref$imgWidth,
+ title = _ref.title,
+ sunTitle = _ref.sunTitle,
+ bannerExtraContent = _ref.bannerExtraContent;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Bannermodules.banner,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Bannermodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("aside", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("b", {
+ children: title
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: sunTitle
+ })]
+ }), dataSource.length > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Bannermodules.btns,
+ children: dataSource.map(function (e, i) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ onClick: e.click,
+ children: [e.name, e.sign ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: robot_namespaceObject,
+ width: 39
+ }) : null]
+ }, i);
+ })
+ }), bannerExtraContent]
+ }), img && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ style: {
+ marginTop: 33,
+ marginRight: 38
+ },
+ src: img,
+ width: imgWidth
+ })]
+ })
+ });
+};
+/* harmony default export */ var ui_customization_Banner = (Banner);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
+var slicedToArray = __webpack_require__(27424);
+var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomTags/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var CustomTagsmodules = ({"flex_box_center":"flex_box_center___hG6RI","flex_space_between":"flex_space_between___ss3Fh","flex_box_vertical_center":"flex_box_vertical_center___K80p9","flex_box_center_end":"flex_box_center_end___qmXX3","flex_box_column":"flex_box_column___GFV8F","row":"row___aXJjm","title":"title___HUKL0","tagsWrap":"tagsWrap___XB2W3","action":"action___VdHb1","bar":"bar___t1kKC","tag":"tag___V7Eft","name":"name___Hk1Ip","num":"num___xQpcH","active":"active___XryTX","tagsBorderWrap":"tagsBorderWrap___OMxjs"});
+// EXTERNAL MODULE: ./node_modules/classnames/index.js
+var classnames = __webpack_require__(94184);
+var classnames_default = /*#__PURE__*/__webpack_require__.n(classnames);
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomTags/index.tsx
+
+
+
+
+
+
+var CustomTags = function CustomTags(_ref) {
+ var _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ value = _ref.value,
+ onChange = _ref.onChange,
+ className = _ref.className,
+ title = _ref.title,
+ _ref$titleWidth = _ref.titleWidth,
+ titleWidth = _ref$titleWidth === void 0 ? 41 : _ref$titleWidth,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style,
+ _ref$fontColor = _ref.fontColor,
+ fontColor = _ref$fontColor === void 0 ? '#6A7283' : _ref$fontColor,
+ showCount = _ref.showCount;
+ var _useState = (0,react.useState)(0),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ show = _useState2[0],
+ setShow = _useState2[1];
+ var _useState3 = (0,react.useState)(false),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ showBorder = _useState4[0],
+ setShowBorder = _useState4[1];
+ var tagsRef = (0,react.useRef)(null);
+ var scrollRef = (0,react.useRef)(null);
+ (0,react.useEffect)(function () {
+ if (dataSource.length !== 0) {
+ var _tagsRef$current;
+ if ((tagsRef === null || tagsRef === void 0 ? void 0 : (_tagsRef$current = tagsRef.current) === null || _tagsRef$current === void 0 ? void 0 : _tagsRef$current.clientHeight) > 97) {
+ setShow(1);
+ } else {
+ setShow(0);
+ }
+ }
+ if (dataSource.length === 0) {
+ setShow(0);
+ }
+ setShowBorder(false);
+ }, [dataSource]);
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(CustomTagsmodules.row, className),
+ style: style,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ width: titleWidth,
+ marginTop: showBorder ? 12 : 4
+ },
+ className: CustomTagsmodules.title,
+ children: title
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: showBorder ? "".concat(CustomTagsmodules.tagsWrap, " ").concat(CustomTagsmodules.tagsBorderWrap) : CustomTagsmodules.tagsWrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CustomTagsmodules.bar,
+ ref: scrollRef,
+ style: show > 0 ? {
+ height: show === 1 ? 97 : 'auto',
+ overflow: show === 1 ? 'hidden' : 'auto',
+ paddingRight: 55
+ } : {
+ paddingRight: 0
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CustomTagsmodules.tag,
+ ref: tagsRef,
+ children: dataSource === null || dataSource === void 0 ? void 0 : dataSource.map(function (e) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ onClick: function onClick() {
+ return onChange(e.id);
+ },
+ style: {
+ color: fontColor
+ },
+ className: value === e.id ? CustomTagsmodules.active : '',
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ title: e.name,
+ className: CustomTagsmodules.name,
+ children: e.name
+ }), !!showCount && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: CustomTagsmodules.num,
+ children: e.count
+ })]
+ }, e.id);
+ })
+ })
+ }), !!show && /*#__PURE__*/(0,jsx_runtime.jsx)(react.Fragment, {
+ children: show === 1 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ onClick: function onClick() {
+ var _tagsRef$current2;
+ setShow(2);
+ if ((tagsRef === null || tagsRef === void 0 ? void 0 : (_tagsRef$current2 = tagsRef.current) === null || _tagsRef$current2 === void 0 ? void 0 : _tagsRef$current2.clientHeight) > 245) {
+ setShowBorder(true);
+ } else {
+ setShowBorder(false);
+ }
+ },
+ className: CustomTagsmodules.action,
+ children: ["\u5C55\u5F00", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ style: {
+ transform: 'translateY(1px) scale(0.6)'
+ },
+ className: "iconfont icon-zhankai4"
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ onClick: function onClick() {
+ scrollRef.current.scrollTop = 0;
+ setShow(1);
+ setShowBorder(false);
+ },
+ className: CustomTagsmodules.action,
+ children: ["\u6536\u8D77", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ style: {
+ transform: 'translateY(0px) scale(0.6)'
+ },
+ className: "iconfont icon-shouqi3"
+ })]
+ })
+ })]
+ })]
+ });
+};
+/* harmony default export */ var ui_customization_CustomTags = (CustomTags);
+;// CONCATENATED MODULE: ./src/components/ui-customization/SuperiorTabs/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var SuperiorTabsmodules = ({"flex_box_center":"flex_box_center___aK2n3","flex_space_between":"flex_space_between___HX0Oh","flex_box_vertical_center":"flex_box_vertical_center___LJOJr","flex_box_center_end":"flex_box_center_end___SCakF","flex_box_column":"flex_box_column___AYv4m","tabs":"tabs___GTqPV","active":"active___F26E8"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/SuperiorTabs/index.tsx
+
+
+
+
+var SuperiorTabs = function SuperiorTabs(_ref) {
+ var _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ value = _ref.value,
+ onChange = _ref.onChange,
+ className = _ref.className,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: style,
+ className: classnames_default()(SuperiorTabsmodules.tabs, className),
+ children: dataSource.map(function (e) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return onChange(e.id);
+ },
+ className: value === e.id ? SuperiorTabsmodules.active : '',
+ children: e.name
+ }, e.id);
+ })
+ });
+};
+/* harmony default export */ var ui_customization_SuperiorTabs = (SuperiorTabs);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules
+var style = __webpack_require__(69463);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules
+var input = __webpack_require__(75008);
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomInput/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var CustomInputmodules = ({"flex_box_center":"flex_box_center___yX6Oa","flex_space_between":"flex_space_between___t7oqF","flex_box_vertical_center":"flex_box_vertical_center___dEIHy","flex_box_center_end":"flex_box_center_end___taQDF","flex_box_column":"flex_box_column___xY_Lr","input":"input___PW2zI","dropdown":"dropdown___vSy8B","menu":"menu___NiyBu","text":"text___Grueu","b1":"b1___ZKryM","b2":"b2___aKyGa"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomInput/index.tsx
+
+
+
+
+
+
+
+
+var CustomInput = function CustomInput(_ref) {
+ var _dataSource$find;
+ var _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ value = _ref.value,
+ onChange = _ref.onChange,
+ className = _ref.className,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style,
+ placeholder = _ref.placeholder;
+ var _useState = (0,react.useState)(''),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ dropValue = _useState2[0],
+ setDropValue = _useState2[1];
+ var _useState3 = (0,react.useState)(''),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ inputValue = _useState4[0],
+ setInputValue = _useState4[1];
+ (0,react.useEffect)(function () {
+ var _JSON$stringify;
+ if ((_JSON$stringify = JSON.stringify(value)) !== null && _JSON$stringify !== void 0 && _JSON$stringify.includes('{')) {
+ setDropValue(value.id);
+ setInputValue(value.value);
+ } else {
+ setInputValue(value);
+ }
+ }, [value]);
+ var handleChange = function handleChange() {
+ onChange(inputValue, dropValue || null);
+ };
+ var handleDropValue = function handleDropValue(id) {
+ if (id === dropValue) return;
+ setDropValue(id);
+ onChange(inputValue, id);
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(CustomInputmodules.input, className),
+ style: style,
+ children: [!!dataSource.length && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: CustomInputmodules.dropdown,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: CustomInputmodules.text,
+ children: [(_dataSource$find = dataSource.find(function (e) {
+ return e.id === dropValue;
+ })) === null || _dataSource$find === void 0 ? void 0 : _dataSource$find.name, /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-zhankai4"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("b", {
+ className: CustomInputmodules.b1
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("b", {
+ className: CustomInputmodules.b2
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CustomInputmodules.menu,
+ children: dataSource.map(function (e, i) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ onClick: function onClick() {
+ return handleDropValue(e.id);
+ },
+ children: e.name
+ }, i);
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ onPressEnter: handleChange,
+ value: decodeURIComponent(inputValue || ""),
+ onChange: function onChange(e) {
+ return setInputValue(e.target.value);
+ },
+ bordered: false,
+ placeholder: placeholder
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ onClick: handleChange,
+ className: "iconfont icon-sousuo9 font14 pl10 current"
+ })]
+ });
+};
+/* harmony default export */ var ui_customization_CustomInput = (CustomInput);
+;// CONCATENATED MODULE: ./src/components/ui-customization/QuickPager/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var QuickPagermodules = ({"flex_box_center":"flex_box_center___tol8o","flex_space_between":"flex_space_between___Z235C","flex_box_vertical_center":"flex_box_vertical_center___Wq1sZ","flex_box_center_end":"flex_box_center_end___LLxom","flex_box_column":"flex_box_column___DbMSN","quickPager":"quickPager___GM30J","disabled":"disabled___Ozc8I"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/QuickPager/index.tsx
+
+
+
+
+
+
+var QuickPager_SuperiorTabs = function SuperiorTabs(_ref) {
+ var value = _ref.value,
+ onChange = _ref.onChange,
+ className = _ref.className,
+ total = _ref.total,
+ pageSize = _ref.pageSize,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style;
+ var prevPageDisabled = value < 2;
+ var nextPageDisabled = value >= Math.ceil(total / pageSize);
+ if (total <= pageSize) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(jsx_runtime.Fragment, {});
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(QuickPagermodules.quickPager, className),
+ style: style,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ onClick: function onClick() {
+ if (!prevPageDisabled) {
+ onChange(value - 1, 'prev');
+ }
+ },
+ className: prevPageDisabled ? QuickPagermodules.disabled : '',
+ children: "\u4E0A\u4E00\u9875"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ onClick: function onClick() {
+ if (!nextPageDisabled) {
+ onChange(value + 1, 'next');
+ }
+ },
+ className: nextPageDisabled ? QuickPagermodules.disabled : '',
+ children: "\u4E0B\u4E00\u9875"
+ })]
+ });
+};
+/* harmony default export */ var QuickPager = (QuickPager_SuperiorTabs);
+// EXTERNAL MODULE: ./node_modules/antd/es/spin/style/index.js + 1 modules
+var spin_style = __webpack_require__(22536);
+// EXTERNAL MODULE: ./node_modules/antd/es/spin/index.js
+var spin = __webpack_require__(11382);
+// EXTERNAL MODULE: ./node_modules/antd/es/rate/style/index.js + 1 modules
+var rate_style = __webpack_require__(50936);
+// EXTERNAL MODULE: ./node_modules/antd/es/rate/index.js + 6 modules
+var rate = __webpack_require__(61460);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules
+var tooltip_style = __webpack_require__(38390);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules
+var tooltip = __webpack_require__(84908);
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/ShixunList/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var ShixunListmodules = ({"flex_box_center":"flex_box_center___FO7TP","flex_space_between":"flex_space_between___LotYx","flex_box_vertical_center":"flex_box_vertical_center___bWdaw","flex_box_center_end":"flex_box_center_end___mVJ1o","flex_box_column":"flex_box_column___M83Mm","list":"list___oOsiS","wrap":"wrap___G6T7F","lockWrap":"lockWrap___Rl79E","li":"li___oZZ7l","cover":"cover___b2bYW","img":"img___IQX7w","sign":"sign___HkT6C","name":"name___SsJx8","e":"e___TMqq0","tags":"tags___bcjyo","rate":"rate___YACg7"});
+// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
+var env = __webpack_require__(59758);
+// EXTERNAL MODULE: ./src/utils/util.tsx
+var util = __webpack_require__(29427);
+// EXTERNAL MODULE: ./src/components/ui-customization/Cards/ShixunList/img/Jupyter.png
+var Jupyter = __webpack_require__(96908);
+// EXTERNAL MODULE: ./src/components/ui-customization/Cards/ShixunList/img/JupyterLab.png
+var JupyterLab = __webpack_require__(57177);
+// EXTERNAL MODULE: ./src/components/ui-customization/Cards/ShixunList/img/unity.png
+var unity = __webpack_require__(81378);
+// EXTERNAL MODULE: ./src/components/NoData/index.tsx
+var NoData = __webpack_require__(82982);
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/ShixunList/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var ShixunList = function ShixunList(_ref) {
+ var className = _ref.className,
+ _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ _ref$col = _ref.col,
+ col = _ref$col === void 0 ? 4 : _ref$col,
+ right = _ref.right,
+ _ref$bottom = _ref.bottom,
+ bottom = _ref$bottom === void 0 ? 23 : _ref$bottom,
+ _ref$precision = _ref.precision,
+ precision = _ref$precision === void 0 ? 0 : _ref$precision,
+ _ref$wrapWidth = _ref.wrapWidth,
+ wrapWidth = _ref$wrapWidth === void 0 ? 1200 : _ref$wrapWidth,
+ trackEventItems = _ref.trackEventItems,
+ loading = _ref.loading;
+ var width = Math.floor((wrapWidth - (col - 1) * right) / col);
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: loading,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(ShixunListmodules.list, className),
+ children: [!!dataSource.length && dataSource.map(function (item, index) {
+ var name = item.name,
+ id = item.id,
+ identifier = item.identifier,
+ power = item.power,
+ cover_image_id = item.cover_image_id,
+ pic = item.pic;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ShixunListmodules.wrap,
+ style: {
+ width: width,
+ marginRight: (1 + index) % col === 0 ? 0 : right + precision,
+ marginBottom: bottom
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ target: "_blank",
+ href: "/shixuns/".concat(identifier, "/challenges"),
+ className: ShixunListmodules.li,
+ onClick: function onClick(e) {
+ e.preventDefault();
+ if (trackEventItems) {
+ (0,util/* trackEvent */.L9)([trackEventItems]);
+ }
+ power && (0,util/* openNewWindow */.xg)("/shixuns/".concat(identifier, "/challenges"));
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ShixunListmodules.img,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: ShixunListmodules.cover,
+ src: cover_image_id ? "".concat(env/* default.API_SERVER */.Z.API_SERVER, "/api/attachments/").concat(cover_image_id) : "".concat(env/* default.IMG_SERVER */.Z.IMG_SERVER, "/").concat(pic)
+ }), item.is_jupyter && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: ShixunListmodules.sign,
+ src: Jupyter
+ }), item.is_jupyter_lab && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: ShixunListmodules.sign,
+ src: JupyterLab
+ }), item.is_unity_3d && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: ShixunListmodules.sign,
+ src: unity
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ShixunListmodules.name,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: name || '实践项目名称-未填写',
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: ShixunListmodules.e,
+ children: name || '实践项目名称-未填写'
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ShixunListmodules.tags,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: "\u5173\u5361\u6570",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-shixunguanqia font14 mr2"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.challenges_count
+ })]
+ })
+ }), !!item.myshixuns_count && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: "\u5B66\u4E60\u4EBA\u6570",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-chengyuan font14 mr2"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.myshixuns_count
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: "\u96BE\u5EA6\u7B49\u7EA7",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.level
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ShixunListmodules.rate,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(rate/* default */.Z, {
+ allowHalf: true,
+ disabled: true,
+ defaultValue: item.score_info
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: ["\xA0", item.score_info ? "".concat(item.score_info, "\u5206") : '5分']
+ })]
+ })]
+ })]
+ }), !power && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ShixunListmodules.lockWrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: "".concat(env/* default.IMG_SERVER */.Z.IMG_SERVER, "/images/educoder/icon/lockclose.svg")
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "mt15 font16 c-white",
+ children: "\u5B9A\u5411\u5F00\u653E\u5185\u5BB9\uFF0C\u9700\u8981\u6388\u6743"
+ })]
+ })]
+ }, id);
+ }), !dataSource.length && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {})]
+ })
+ });
+};
+/* harmony default export */ var Cards_ShixunList = (ShixunList);
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/CourseList/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var CourseListmodules = ({"flex_box_center":"flex_box_center___AQ53o","flex_space_between":"flex_space_between___i2aIa","flex_box_vertical_center":"flex_box_vertical_center___sPEKB","flex_box_center_end":"flex_box_center_end___GhSSH","flex_box_column":"flex_box_column___R9_Hb","list":"list___jb2Ay","wrap":"wrap___VsQDr","lockWrap":"lockWrap___g1k1T","li":"li___IxCLC","cover":"cover___Mu8wr","img":"img___IpFLA","sign":"sign___DXJ4d","name":"name___l7FoJ","e":"e___pXQUG","unit":"unit___wCIFR","tags":"tags___w_Mil","tag":"tag___y1ZGO"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/CourseList/img/gg.png
+var gg_namespaceObject = "data:image/png;base64,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";
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/CourseList/img/sg.png
+var sg_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJgAAAA4CAYAAAAB3jHPAAAAAXNSR0IArs4c6QAAIABJREFUeF7VXQm4VVXZfvc+5yKzMqiAgpggqGihoBI4Zz+iQA7VX2Fa+GeFmjnmjAZmDlnmDGaDY5KzJmmWAiKIoCihmAN/ySTDvRcF4e691v+s4VvrW2vvcwFB8r/lcy/n7LP32nu9+/3e7/2+tU+CLfwjpaw0NmJfIcRBSYK+Uoq+QNIdEu0AtJMSLaSUABJzZPWn+iUlEiRQb6l37MvsfbOdfs+9qf5htnav6ffsvoP9+mPSsej4+iM0Jr5vPR4aIF0o9po6ziccPx1GnbWQZvzqNfef/rd9j7+uXhPmIqn36XN6H+rf+n/+dTV+2o/6kNq/39YfT72m3le7Vj/Cnq76tx4TGx9tS2Olz5RByc/EZgBNSlm3enU+TAiMkhJHSshtHULchKkrok5WnUY8SQxwNNf2hAmMRWD5ARMG9H4tWAxQ/XHoPQ5kt4cAVBZrHgF2Mw/kePwBYC2ozUDo+OoTFosMr24y7eTpCbY3SzzBZvLN9TMAor/55DMAWYAawHkwanAkBkgejAROvy8POPOe+r/+DL8R2N+14LNZAJNStmpoEGcikWdLKTvpiTbjt0zkJ5z4J5hgDjhiEY01zwyOXAL2spNtZ8GAx5wtAdgxEk14xJh6v3qGOdvFLGlhwW4SN/4YyHRw4lkGWn8DEPsyINkhqG2ILYhBPBNZkEjzOQNcYiILngCYFoAJ387MhQZm8Lq5ERzg1DW078cMZdjPMxyBrTlu+kQAU2GwYXV+shS4HJA7xUwQhjB+J9vwVRIiOZB8fCSgxmGxVriii2+ugmeamD1jINn9EbtE4GiWcdm5hGHa7LOMMQtA4myjgMNkgLmHolDpmMO8Xgh9jOk8Y9kwrMFTZCweBl1YJEC60OrBpc8tlislSNtkgDU0ZEcJyGshsSftj3RTyDY8DHqQ0WT5z/gwYmck0Gc018EkW6qOgU0hyQQkAiVjKQ6gCBh0IYJwG9wpZpyffPwsvBCI7CxpQLEJKw2DFmQObIEmsmAmIKoIYNkmABPTUoEOY4Ar01c0Bxx4zekujrONBpiUMmlYnY2TAhcWgUoXn7NVOCFmxi2DWZo3UcVPWnPC338+DIMUEnniwIFg1bANoYkN3z6hKN4kHvDhfuz4Kf5bgV82fv45SlzcHR8JZhNmiInY30onCQpnkoXPKEzaa8kBw/WT0Vs8iSiGT7eNvTEJSGXsSMB101nCWpsMMCll2/rG/C5IObJ0fyWhhYtcg2LOVDrQM3CVZYf2rmThylxLC1wmjHkmZ47EjhUzldWHPAz7z7OzY+cUjJ8BrBD+SliRk6AGkxXLjmFi9rLb+OyQ2I2HNgMYCp8UqoIkwF7dECTm/Hxm6PUY6asCW0Xj4aF0A9iys76BrVatlT2xLnsUwN5lmxb1lmUp+0aYzTGms0K+jHn03UFnGv12IcwCLdZrBl5G+xj28rosAB7p9xjAdFk2afz+BgrDM7G2DY8MXJQJhnrHgsnpJBLVnuGcfrPMRKHKC/DYiiDbwtsVOiu0VgQPobXA6DJIpsk2BlwUr2puq8CVrM9nSCl3qLmRmyDLGnzCYpvATToPjc2xBhf3BJaIDaOEgbJJCrfcQii7GYpa0CcWnnUjVqwh3mNPjN8onCE4CxBTkYfFAVfbmvDivuBpSRNODdN7z8sDisS5YS8OUGLF5kAXTO9GoKymBtNhsSF7oRZz6X2T2CaTx56YeZ1pKworLMTpKbPbkS2hJ5v8VzKC7ElocOj3ufnJw6yJmep9PTRrQXiNZGmxhgXiVLb+eKI/7w1fm4UGx4+Z0t805vj+6rsQZl8KssiCkekZiMJZoKMYu3EDlYdH87nQYCV/zYGWrAhrW5BN4TPSyGB1IXkjUMU2KQWYEvT1jflDNTVXs5NOe+ci36KxTBgrUcKse5/FhWGSxDyZtT5jbJ7ROIvEZm1pxhgxctGi2FBiYs6fH4tsB+e0Ry49N1hdNunMVHMdvV0RG6TceCU7g7JIprGYliL7j0BIQA6YtcTzcopjEzBWCrD6xqbx5dmiDR8MEH4CS7LGguC2zGbvHjdOJ6iL2R0HErGYByTZEVEm6mKhf59nk5p7GNebzb0+5KG0zEujffnxxzovZK8yc5JPJoU0o4GYCLcOPL3uhT1tw4BEmShljZqwrQPvslFrtFpfi8Acu/Y+bJvLxLXZJmDL3WjBZ7TPJeWTNXfEtHPsTbl7l4Q1p48S9gpSeDvhzbEM2RpcvLvXLEj0GALw2AHTCTkwc13FP8MSg3j8gfYKb4aAee0YYkbwQtyK94KFELIRTa4BAnPimScWbxOzkQuNTpOZC0EVgbJaowdeWBraVHARk7MbUVbqG7O53EQNdhqAi9XsotQ9ZCYSVZy9aEf+tTKroCDACSuMccxJGEFrwBXXO0krkX/WXHUgMocj0BY8L+bjheMPC85xCOSMRTmKYTnmWZVlnAQ0MkZZ6ORsZBiIFb6t/OSuvjkWD7dec3HwEdkHCdImIC0IkfWN2Wgp5MTm2ctncz5k+QzS1QV5GHJWga9TEtOQsHf74gdnnRLhfhlAuVHLAeHxFjAakVLIlLwo7uuFjg0dI0ch3NU+mS3C2Ysm1o4lAFHg3PtSkGEXA7ZiVhdZDsyOCQvhvjLw8cdAUxPQqq1zbJgPxrsmmi8fbQKmgk0dwFThur4hfyuoLbJNiU3M1Na2JEJR7N1773f5SVKvzZ4JTLxVYP9BCU4+JQ3EcZ4DaWozx6A2wZnGhzTuef36VwJ990hw8CEpttnGZHUkHeMwzNlHZ6n8WPqE7Ws1XXwm6tVwBCv92EvAOyeK7jrP2JjnRX6gdfXfe0eiW/cElbpY+JtZ8cxjwDJ3Zo6/PJCj5+4pRo6uOFarxV5e/IcZ5CcFVxAi6+vzCyTElbV25sNV5E3RHattCSILJqKd5lHuc4L6lUCHjl4XvThN4pZfCQwakuDU01J3+OeelXj8YYHvn57ic7txUe6TCdrYsJ/f57zXJa67Ose22wJXX1tFtc68ffcfBJYuZQItYMvimQ/6YooD91dn1Uy9lJ2/895cOch3TVAI4zqMd0sEhmuUQartXpmV4+F7BXbomuCEkyrYrpPVZA7AFmT29BQLrl8H3D6uSf/+zgVVtN2WWyD+8/rYrMuCj/WThka6mprBVD9XQ2O+WLXc1Ear94LcNoFg9njVbEU6yTfQ4De3CsyaIXHWT1Ls1tuEgBkveIB9/zR1l5nP3jlBQIGsWgW+/s0UXxqaGn1FfV52O8dLOpyanxt+meOV2RLHfzXFUUcrTjXvXTE2x8L3agCs5MSPO66CoUOpUGR1novpTMtZkCmCM5PlGcx7XrU6Ivj2UT+XJWc14iWLgT/+tgkrlgHbtEpw/EkV9FTXEAnynIU3GzYpHD/3eIY5UwUOPLKK/Q5PSzspFBgTe2/rsLwRfV4by2r66jU2ZiNzIR/eMHsxK8Ig00x4oWzDpJ29O/5wh8QzT0m0aw9cNLaCrjubC/viCxK3EoONSakMrn9PnyLxuzsE1q0DBgxM8N3vVdCylTRmKpm0etD+3x8sBy44J8c2LYFrf1FFq1YeCMuWAuvXS+QiwRVjM7RsBfzkJ5WwAVICkyYJvD5PYsyYKr7w+Zi9yOTyuotCriNS3hHq2IwVsq0Ad2Ak8zSoL/pEgfwqdR0euz/DvFcEKpUEI0dV0LlLgtt/3rSx811zu+9c3gKpZnrfkLjZO6W+mPr6bJKEPL5sh1x7ufTfkYANipY9uM4iBssyibvvlPjrZIk2bYELxqbYuTtxCjCdA0yFSCI/e4w3/iFxzZUCQgA77Zzg7PMr2K6DVYLRtmr8990t8JfJAkcNS3HC19QdyxILu08len9waobWrYEbfl01p22L7+r3pZc2YfFi4Oc/r0OH7QygQ1amYFg0g4m9uJ5Ruy+tOQadqWUMZ/UYszOUfpv8cIaZzwv0H1TBoMMr+NPvsmDqPl4j0LASqNsmQYfO5gY0p+5lBP2LPjji1CqS6pbTXrTfRDUP1jfkK6DanEsR5jYNCshuqK6rwTKJupK2XLN8KXDjLwTe+adEq9bA+Zek2NXqKTITlAa79QavwQjQWZbg6acEHnlQ4OO1QMuWgMqIOnUCzjqviq7dCOWeYVYuBy48P0OaAFddW0X79uaaNjYA7ZX+sILiww+BM8/I9Pu/uL7KevwTrFsnccbpBnzX/6LOnXPRn2OTxa6BBxJ1P1C4jOqHzfZzmWvp22xIL3lWe/N1gV57mRAZ1w4fnJjjvQUCXzqhij0HmthH2k/9XrUMaL+9Gb953bZFsxthS7CXPouGBrm/kNmMmuxVs72lhotuNcCcl4DbbxRY8xHQc9cEY85KsMOO9BnPANMJYIONyFeJwMsvCTxwr8DSJUDrNsCxx6cYcmiCCTcJzH5Zok0b4MxzKtitV9gtcdstEjNfFFp7DTvasNf6JuCi8zNUqsAll1XRpjXwwVLgggsydOoIXHV1NWjvefddiSuvzLDXXgl+dEbFsleYRIRt0+bKFboanI9lgKKth6Bdx/hUResiBOIG+7ksKxFI5r4o8PSfMnTdJcVXf1gpFL2nPJLjtek5Dv9aFb36m2ukW4i0EPMMtsUAtqoxPwtCXFdrhy57DPqvLOE6wW0/zcT93FckrhsvcMR/JfjGSSmqFX8El5lIYHUjsHiR2d+CN4Hn/irwwTJDgocenuLYryZo184AM88kJtwq8cocgXPOUwCzrAngnXckxo3N0a0bMPanVVTs8R55SODRRwQOOTTFid9Wd3OChQsFfnp5js6dgauuqvPGv5T4+98E7r5HYMTICoZrkIZMpXFC5ElJTuBphWGmEBpLWnH04gvbb28uoTdJqUwzf67Ex+sE9hlQYauCQkO3foXE767PkGXAN8+oolOXotm6cIHEk3dm+vqM+EEVnbqR4eqTjS0FLj079fXZBAl5SmGnPENkHQzerih6YZThmUmQWPR+gm7Use/2Z/UTEqxfJ6E01rTnJWbNlPrCpBXgC/0TjDw+QY8elCz45EJ1eS5ZBHTdyQv7rCnB1VflePufEudfWMHuuydYtRJYvFjixl/l2qYY/7Mq2lqzccEbEtdck+tTvu46G0otcCZOFJg5U+DHP65gj74KkBZgZLba307Ys1BHbEBi3/+u3c8VZ5yG6EI9tmwJcPt1TRA5cOBhKQ4ZVkGSWmDYysXatQkeuK0Jy96XOPiYKvofZBKm4vIziVnPSMz6a4b2HROMHFOHOpsIkWzZogBb1dD0PCQO4jstgEi/WezHCgrBtAPWqkNAcwFRAh98AMydLfHqHAMulRmpn+23Bw4+PMVBhyTav3KekvXXyNl243QTDvzxXoHJTwnU1UGz0vLlxr2mnxNPSnHIIRVHPXPmADfdaITxySenGDzY0+u55zahvj68xHv3S3D6aUYBE58Ri2kQsUzxk/ZzqSOargvWz6VeU4VqAHNmSvz5gUyHsr5fqGD4N1IkFWOdrFkDPHB7hmXvC+y8W4pDh6f46KMEa1ZLfPSRxNrV0FJlzYf27w8lPqw3d3zvfSs46ARlD3F/c8tBTDHYuxKyZ7jLks4Cd3Fru+jETQSstR8n+N93BN57N8G7b0u8+0+p/Rz+Q8Dacy8TFn1HKIlQ3ymxQ5cEbVoz595OyLSpEr+ZIDRTbd8Z2H6HRIdepacUm533EwUuAkeCaVNz3Hmnubf33TfBD36gwCOx+kPglpsNs6mjf7haYslS4KAhKUZ9S4Gw2O1RKzvknRHBmsLSfi6+ZC0U3q7TARIL35KY9Nsc6z6W2OMLFQz7ptKIEk/cIzB/jhn3hn6q1QSt2gOt2yVYuViiab3El0+qQ7fdSxtrNrS7Db6f1DdkywODlfRFjGj9epmwt6+zkKrM04fuFxpMTq9scCgb3mDMGRXsNzAU9mpM69cbLdexoxmhuqMvvTjTgBl7eRVduviSlQLJI48IPPaoAZjKTn/5yzpUnNHoNdefHswxebLA/5xSwYD9Urfec9EiiVWruGaxWicyKJ0k5fVFtwo9XOhB4Ym6H7brkKLjjlxjmb///a7E/ROatGYbdUYVHXdM8MYrArOnCrRsDbRsnWCbVkDLVgnq1L9bAa3aJWjd1gCrrqUddwLMmy4w/dEMHbumGKEY+lP4UQBbJ6VsYVjH1+tI+SpGUXcR4TsUuEXAKc/og6US554utNnZ83MJeu4KvDpbaTLg4MMSdIzqBaTdvAbg3keC2S9J/OtfEgpg+w6wtVAFdwZqHcFVF2qSYMJtAi9OFzj+hBTDhhlRzMd/469zvPqqxF79Eqiy0tlnVdB3j9R9njyvSy/P9E1y3TVVtGvrFxHfdY/AlKlRy+0WnpyBB6UY+pWKaWtmq4vUtVr4tmHY7ruFpR/fPm2SBgrfngVtScjaE7kAZjyeY++DK2hdblJt9lkFADMCI2IIx2glYHJL9dUJm3yXPq7u8A7beQa7ZrzAvLkSF12eoncfqi0aozYAbVxQllIDZvpUidMswKg2aAxQVwDVF2P2LImbbszRp0+iM01P/H78552baQa6bGwVP78qw/4DU4w60WSYJN6VVrzo4iZ03znBxRcpK8P8qOM986zAa6+bvN7cFPY9/Yv3k7FwEJmdwWIXtg/ypvrunWK/wanzwniPPVkXpsBtxrRymcQDt2bYvluCEaOreo8v/DnHgjkC+x1RQd+BRvS/+GSOt+cKDD62ip13N9ePj3KzERXtoBAigwkLwMXqgC5196+5i8ysCr7g4moLsG+PTtG9h5kIqjsWWnHouDYsP/awwGuvSYw5PcV+6kIpRnLg8iFNsdxV43Mt9pXn1bGDme81axIsWSSw6+cSrF4NnPXjTJeQbrihirvuEpgyReCSS6rYeSefGT/9jMQDk3J8+cgUJxxfCYDsskVbtyONpc6KazLvjfHuB7ZSyN5csS3BM0u3Asgu4FDgWrNGQmXOrduZG5tC56RbmtCjT4rh31F6McHfHszwj5kCXzymin6Djef1/IM53pyV44hRdeixBzn8WxpWfn9O5BOLhI71hjPHwiJXfZuzAds7hBhsc07ltNMr2Hcgay5kx1qxAvjZuAwNjcD3Tq3oNp8Fb0osWCDxr/+V6N4jwSWXVDDvdaW5MsNw51S1JzZuXI7evROce46ZGNV9cMllTZrlzj27il7K0GXHKvO2KNvTIHOMFrvxcT8XsXf0YJPoCTnxQtrpzwpMeyrHoSMr2GeQ6fZ463WBJ36foU//Cr70dZMV/v2hHP+YkeOLR1fRb4hiQ2AKA1j3PT4dYc/nONE2hTA2hdZCwaod2pRljiT2g85Rq93MDhzAOGiJwYaNSLBjl7AnngDpLIAw5mDKc1J7XApg/ZUGi9hrxXJg7KWZFvfKR1N+Ef0ooO3SM8HAAQmO/HKKhx8SeOIJgWOOSTFihOo/S3DDrzPNkKNHpzhg/woefSTH408K7LVngjNON+GRziXomeIemLMqavRz0fMiyEh13ai+wTDsjQ+7LHg2+ZtrMh0S/3tMFV12Mcw07yWBZyZl2GdwBUOGW4A9mGH+TIFBCmCDTVlJMdiCWTkO/1Ydeuy5FQBGRqtuyHOEZYvYpCeoEMy6Fny5mrSJhUcU0GliuAbr1dtoNfNsL/KRjAXgmgapaUHCajChAaYZjOqd9lgKUKp+uHYN0KED0LVbgu7dE/Tpk2L33iaj0vU6qbonMqxcAVx6WVXrKwVu1YEx9rImXS8980dV/OxnGbIcuOTiKrp19ezlRbMntNIFtAxspk5IPfjq9Cxb6UN7DRSwFFuU4XvmDfstWihx941N2LZTgu+eb6oQ6rxmPJPjxadzHKDaco4weksx2PwZuQbYXipEwjDYVgWYKhXJ3JSKaLUNFYWJ1eg9/7p10Ws8VyKwJiwIVEeEEvnDj03QRZUwainLEoD+/VnDYGMUwAaQkPYspfa1eBGw3XYJWrfyz2HgzKPObd48geuvz7Wpe+V4I4TJLH7iSWVf5FqbrV3LvC+nN2t1RNTo5yqUj4pdqAawvijuRTurUbo0wjj3f5mUYe4MgUFHVnHAkYa9VEh+7LcZ3psvcNSoOvTsZ/b53EMC82dagA0x2075U44FL29FBmtokAOFyGbWzOSsmekqoa50Qv1QNEmeySiEEQ+qjxDANleD9R/AFnFYMAa6MYizvoapQufttwm89JLA0KEpjj9OCXdCc4KsCTj/giadBLRoAYy/ok5XFPQWcTko6ufiRqrXX56hqF/eACju8zI3DPlfHnSG4DWALMjVGG++okkbrd85vwXadzTsqEA68YomrP1I4qQL69C6vQHj84rBZuY4kDHY1BKAvfOqQPe+Keq22ZzZKf+sadepV+062NZdcNuVSXos6MGnh4840zUU9Jz1uDDWIfI1iVEnp9jJPVGMheIAyH7i1ZiefFxqv0plkfsOMD1j7of9zW+SNWuhi+Ivz5JQvf2jR1dw7rmZnrBxP62ic2ff2aFC7B/uzjFtmve2hg1VGs3bHJ+sn6u4PM0/ycYCK3hWlwFfuIDDP2Fn/hyBJ+7J0XWXBF8fY8KjGteSf0k8cGMT2nVIMEqFTctqCmBvWIDt+UUTIqc+mOOtiMHuGdeENtsmGHn6ljdb9VVetSqbJKVqOCxmjWYiPWsQaMIuA28VeGHPS0qewS66vIJevcNMs/iZUPdMVD7YNGFDJBW5aWTmLv9oDfDO2yaUqv/eessUz9VP//4JWrVO8MI0gSFDUpz0bWKvRPeY3XJrhvnzDVIP2D/FrJeFBuU++yQYfXJVG8Y8lHldZLDOWYtbEw4oUYcE1RvjEBn0dkXspbZV9caFbwkcflwV/Q4w2aN6/cHbm/D+2xL9D67ggKMUkMz1e84C7ABiMFkOsN9f1oQOOyYY/sNPCWCNjXJk1pQ9bNIlW4e0K2nK2qFDH8p6izZJ0AxGCYP2Is2V0iHyNYljv5qiqyrdEHlRbhCHO3uB1WZ/fUZqy2HMaUqDGf1mkgQDrl9en+P110LxppoJBwxUWWGKxkaJm27KdYY5flwdOnU0PtqcVyT+eH+G5Sug21e+fWIFgw5MMWeOxO0TMw2yLl2BH55ah07bWwnger8+nX4udRTnyLOFGI31EhOubEKaJjjl4ipatjFh8I3ZAk/fn+ny0LfOa4EWrXxv2vMPZXhjpoACGDHYNMtgh32rDrvsmWDdGuDe8evRZdcUQ0/5lACmFn3U14vFUghbxGG990zkugyP5rKGLcFDo94ElsEiEGxqxCeAOVvDAu3663LdD6ay0969EuzeJ0HPngkqqTJWJS4bm+mu1mOOTjFyZEUXsO+7L8O8eeZEVPfq90+tog8r+KpS0sQ7Mt2wqN4fPbqqvTPz/FKWGZKYL31aNO9qZY2Etv+LTFIyVkOtZq4OgW3GswJT/5yhV78UR59oEpS35wk8eXcOmUsMGV5FPxsGKbOc8rAJkRxgL0/O8drzObr1StFn/wreXyB0VtmrfwVDTmBNe5s6OTW2d0bIypX5BVKIK023M1voYAEWG6qOgOxTdIwQprwsbspLcM2VuWawI45M0Hn7Ev8lzh6ZTTFjusTChYbB+u9HIdtXApQwb6d6vVw53ofnV+ZI3Hxzjt12U0ZqVXcfzJgpcMcdJrANHpziuK9U7OfD8f/7fYkJd2RYsgQ44MAUJ46qmNKMlQ2+pdmGSnsOcT8XD33uORO1njzI2phJ/Kvfj92VYcGrQoNrt35GT02+J8eCV3N8fnAFg44xK7K4868A9ubMHPtbBlPDXrlI4tGb4kUiCQ77ZhW77LXlfTG3R7XwdtVK8ZaUwkpwq7vIWWSt0y5rc2miha8NWR7M5FkB9/3eaKOTvptg5x683GP9LzIzLVBd246QmPyUxD/mSQwfkWqWotDofTsDOvO6TxDMOCXmzJbo0TM1pSMdw4F778tx4IEpdt2FXdRo/GpPaz8G/vxUjqFDK6hrYT07FiZj1vH9XEa3mUK1GV9BvEf99CTa4x570lrvL5TYYafEmMkSaFoPvPqCQP9DDeA8E5rTbFgBfNgo0bZjgjZqfYL9Wb0K+PebAmtXS70EbsddEnTuvuXBZWfFH7h+RTZaSOhHBzgRTwxmc/W4yZBCIKXzZm8+WXBR1Chat0ranA5fEkYNWxwoJMRKQOXCtMOM3n+4pM1/njokfKXCH8fUQml8Roe6fi57ecqzSPZYb9ZSboDCDVZfMuJZZCDqo+dMBDqMWqhtskC2hTuOe9aXtTZKwOZneev+FcBWWRYrV9qHn9jnQjhmYCHLWWGW3RyTxGGO2n/c62xVAVuiX9YVYUDuGcddFm6hUMrGqMwbuKwxkbGift+inh5SFzBhwfOyXhTdEDUWajhd5sbNPS/vVxkLwYTigP3ouPEjxtli3rBx0fpjKimzp+oYMDJ5ty6kwqMVeLFhpTwqyzP7+CbrFdk+Kzc5rAmGgMDNTj/J1oTVpR2f9fnISvaHueClhXOdlfLFtvHlKvkcH4Dabzz+kqcc8vHHK5u5LcF73A3pUenHHMc8ltI38fgwGQr+sjComSnQZlG/l40spvvCh2ueJBjg+vf+k+AqhEgazMrl+XgppX5cOQ8tpH0cqAg0FF6C8GjeNKAku4Jub2aF8IyUmbcOhO7zHqD+ooWh2JxQWIaqOX5b5iKX3mWmLLxwRgjARNvYjLK8D58/z4u5+oy9eGnIEGsZG1Hpi/YXeW/sixsC0PEI8B9EWamyU4/QXLU8f0hIOdL3yDNwBOEy7KDgIKTzIt1m9JrJ/uLqALceyA7heWFxvwZc5qYPWYyySTqeC7cUGtkXbzlTzQK9Occ+YK/gKc/hMjNiFJrwWODHXRMOaPaGdmslLRiL4p+Vm2gby1qfJfaqyWCWudqu+kC8ICH3DrQQN0i9nAkeemuA5QviBjyR4LbvF/SQswH8Hy6RKGkncgAjPeYcXN42ZCHnkGelm2E6AAAD+0lEQVRGSOzKH1qiXo+deQ0Yp3N4qAsfM24AxdYiukm3mivQXoZpm9VjkZYKWoVKmJYCCQH8P0hc7tDN5qarVsme+fp8RgLsEJSG2OTwk3AMRYhk4t7oK+Ik3zlqxBlNeLhqh3bD9ZEHL3XTel/KG8H2wPYXz3w5u3mmtJqFgGSf7+U9L/7lBfRlUdTxsBH9XLavPmh1LnxzWvH5XqTTNOi5+Heds+HCW34jfBbA1SyD0QAVyMR68aiU0n0RA4GNWw3crqAJDSaWDFnSdTxRcP5V6EkZmmFs44BIsLTbB59nbBVkogQtb8HQ0TST1GgeNKuuoy5V620V+7lIXId9XoEdET1Ul8KotyWYeGcsFQAsAhuNn7du/78BmJ7jZbLtCqm+SgYjOZBo8t1vJ9L9SgLanr4CxoVLF6O8KOfCnodFfSfU/GYPHlNt1utiBLMqXBZrWTICLw9vG6vDnKhmHliweJYW01rJ4Jz/Gs+6D8AWe16u+G2g4x+NXgTkZwVcG8VgLHwlqz4Q4/JcXrjhDI9NrGUsvqCWjM3Q/CSghAzkcGgnKQhrBCT2RQ/m074gHlsr8Q2i3yevKXqIietWdRgmC8LqJ7Ijyso+Ud8XufFkRRjWKfpjhrCN1UD3QHENAPWJ+c4l2uazBK5NAhgNfOUyeZTIxbVSyj1rtvcUtBdv3YnB51UYTyYCrRSFRseKhUdbUjilAYQt2AqcBRuDhyEunEmg22PzCfR/M8DZG0n7Xny1kOuI8N/XGDrxJUCyxjB5bKGdUe6BGZvjswYvrrA3YWza8V+anyzz5HIJuZMX4xGQ7IUOrA57W9I6SnObcn1kB1X21ES7HW/pdnVJe+c7fchqp56Frd/L2CHUV/wxTNED4aLnpjbbgOj67X3rs7YaeFYYfWmoL1KzgnWUKRJhUxh2hqtXJJswi1tn082qcKoC+YrF4kzI5GwhTatPmbCn9Y/mlLxnRdiKs8TAlmB1OKJcl60ycFIVwLxEYbYo7F3csZPtPKc4q3PPzOJLz7jeKa6q5mHQCfvIjCVPzGSUZqy+Bah8nzGg4vAZ9IluHdxs9FE2C2CeGWTdikUYJmR+YiKTL0lg29AyiA7jMsNIcFO9O8j+yNWNDFq2AolAEyxKYUzpFrMwg1gzCmeyWo+5dNmlLYAHX9VCvhfvnbflo9jzYiHUM5H1x+w4wkyRHHuzDWfaoKOWNyFv9LRvvQ23CMD4cFX4XLEE+8lcDIHEHlLKPkDaXUrZDkjaSSlaGJ4jozNkmbJw6r6ElAGPVweIGXmo5fZGWTHbuevMniAjM+jnonbnuMmwpExEwAn6vwrmKhP2hcdXhv1cpKvCLzEtbrP14LLpR/o/JBqhquSiLD0AAAAASUVORK5CYII=";
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/CourseList/img/jg.png
+var jg_namespaceObject = "data:image/png;base64,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";
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/CourseList/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var CourseList = function CourseList(_ref) {
+ var className = _ref.className,
+ _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ _ref$col = _ref.col,
+ col = _ref$col === void 0 ? 4 : _ref$col,
+ right = _ref.right,
+ _ref$bottom = _ref.bottom,
+ bottom = _ref$bottom === void 0 ? 23 : _ref$bottom,
+ _ref$precision = _ref.precision,
+ precision = _ref$precision === void 0 ? 0 : _ref$precision,
+ _ref$wrapWidth = _ref.wrapWidth,
+ wrapWidth = _ref$wrapWidth === void 0 ? 1200 : _ref$wrapWidth,
+ trackEventItems = _ref.trackEventItems,
+ loading = _ref.loading;
+ var width = Math.floor((wrapWidth - (col - 1) * right) / col);
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: loading,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(CourseListmodules.list, className),
+ children: [!!dataSource.length && dataSource.map(function (item, index) {
+ var name = item.name,
+ id = item.id,
+ identifier = item.identifier,
+ featured = item.featured,
+ school_name = item.school_name,
+ image_url = item.image_url,
+ excellent = item.excellent;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CourseListmodules.wrap,
+ style: {
+ width: width,
+ marginRight: (1 + index) % col === 0 ? 0 : right + precision,
+ marginBottom: bottom
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ target: "_blank",
+ href: "/paths/".concat(identifier),
+ className: CourseListmodules.li,
+ onClick: function onClick(e) {
+ e.preventDefault();
+ if (trackEventItems) {
+ (0,util/* trackEvent */.L9)([trackEventItems]);
+ }
+ (0,util/* openNewWindow */.xg)("/paths/".concat(identifier));
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: CourseListmodules.img,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: CourseListmodules.cover,
+ src: "".concat(env/* default.IMG_SERVER */.Z.IMG_SERVER, "/").concat(image_url)
+ }), featured === 1 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: CourseListmodules.sign,
+ src: gg_namespaceObject
+ }), featured === 2 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: CourseListmodules.sign,
+ src: ''
+ }), featured === 3 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: CourseListmodules.sign,
+ src: sg_namespaceObject
+ }), featured === 4 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: CourseListmodules.sign,
+ src: ''
+ }), featured === 5 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: CourseListmodules.sign,
+ src: jg_namespaceObject
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CourseListmodules.name,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: name,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: CourseListmodules.e,
+ children: name
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: "\u53D1\u5E03\u5355\u4F4D\uFF1A".concat(school_name),
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: CourseListmodules.unit,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danwei1 font14 mr3"
+ }), school_name]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: CourseListmodules.tags,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: "\u7AE0\u8282\u6570",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-zhangjie1 font14 mr3"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.stages_count
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: "\u5B66\u4E60\u4EBA\u6570",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-chengyuan font14 mr3"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.members_count
+ })]
+ })
+ }), excellent && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CourseListmodules.tag,
+ children: "\u5F00\u653E\u8BFE\u7A0B"
+ })]
+ })]
+ })
+ }, id);
+ }), !dataSource.length && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {})]
+ })
+ });
+};
+/* harmony default export */ var Cards_CourseList = (CourseList);
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/ClassroomList/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var ClassroomListmodules = ({"flex_box_center":"flex_box_center___eMcr7","flex_space_between":"flex_space_between___HcNca","flex_box_vertical_center":"flex_box_vertical_center___ZnvVN","flex_box_center_end":"flex_box_center_end___fdgDf","flex_box_column":"flex_box_column___SEKvd","list":"list___L1hmU","wrap":"wrap___pKgcW","lockWrap":"lockWrap___SMhkK","top":"top___udHSB","sign":"sign___uwRpq","name":"name___Fpf90","img":"img___AMLhL","text":"text___KiTb7","btns":"btns___i6IuZ","bottom":"bottom____k2sh"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/ClassroomList/img/privately.png
+var privately_namespaceObject = "data:image/png;base64,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";
+;// CONCATENATED MODULE: ./src/components/ui-customization/Cards/ClassroomList/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+var ClassroomList = function ClassroomList(_ref) {
+ var className = _ref.className,
+ _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ _ref$col = _ref.col,
+ col = _ref$col === void 0 ? 4 : _ref$col,
+ right = _ref.right,
+ _ref$bottom = _ref.bottom,
+ bottom = _ref$bottom === void 0 ? 23 : _ref$bottom,
+ _ref$precision = _ref.precision,
+ precision = _ref$precision === void 0 ? 0 : _ref$precision,
+ _ref$wrapWidth = _ref.wrapWidth,
+ wrapWidth = _ref$wrapWidth === void 0 ? 1200 : _ref$wrapWidth,
+ trackEventItems = _ref.trackEventItems,
+ loading = _ref.loading;
+ var width = Math.floor((wrapWidth - (col - 1) * right) / col);
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: loading,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(ClassroomListmodules.list, className),
+ children: [!!dataSource.length && dataSource.map(function (item, index) {
+ var subject_identifier = item.subject_identifier,
+ id = item.id,
+ identifier = item.identifier,
+ power = item.power;
+ var is_public = item.is_public != 0 && item.is_public;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ClassroomListmodules.wrap,
+ style: {
+ width: width,
+ marginRight: (1 + index) % col === 0 ? 0 : right + precision,
+ marginBottom: bottom
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ className: ClassroomListmodules.li,
+ onClick: function onClick(e) {
+ e.preventDefault();
+ if (trackEventItems) {
+ (0,util/* trackEvent */.L9)([trackEventItems]);
+ }
+ (0,util/* openNewWindow */.xg)(item.first_category_url);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ClassroomListmodules.top,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: item.name,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ClassroomListmodules.name,
+ children: item.name
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: ClassroomListmodules.img,
+ src: true ? env/* default.IMG_SERVER */.Z.IMG_SERVER + '/images/' + item.avatar_url : 0
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ClassroomListmodules.text,
+ title: item.creator,
+ children: item.creator
+ }), subject_identifier && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ClassroomListmodules.btns,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: "\u5F00\u653E\u8BFE\u7A0B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("aside", {
+ children: "\u5F00\u653E\u8BFE\u5802"
+ })]
+ }), is_public && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: ClassroomListmodules.sign,
+ children: "\u516C\u5F00"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ClassroomListmodules.bottom,
+ children: [item.visits > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: "\u8BBF\u95EE\u91CF",
+ placement: "bottom",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-liulanyan"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.visits
+ })]
+ })
+ }), item.course_members_count > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: "\u6210\u5458",
+ placement: "bottom",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-chengyuan"
+ }), item.course_members_count]
+ })
+ }), item.tasks_count > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: "\u4F5C\u4E1A",
+ placement: "bottom",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-zuoye"
+ }), item.tasks_count]
+ })
+ }), item.is_end ? /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ color: '#6B758B'
+ },
+ children: "\u5DF2\u7ED3\u675F"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ color: '#00B187'
+ },
+ children: "\u8FDB\u884C\u4E2D"
+ })]
+ })]
+ }), !item.is_accessible && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: ClassroomListmodules.lockWrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: "".concat(env/* default.IMG_SERVER */.Z.IMG_SERVER, "/images/educoder/icon/lockclose.svg")
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "mt15 font16 c-white",
+ children: "\u975E\u8BFE\u5802\u6210\u5458\u4E0D\u53EF\u8FDB\u5165"
+ })]
+ })]
+ }, id);
+ }), !dataSource.length && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {})]
+ })
+ });
+};
+/* harmony default export */ var Cards_ClassroomList = (ClassroomList);
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomTabs/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var CustomTabsmodules = ({"flex_box_center":"flex_box_center___d27mZ","flex_space_between":"flex_space_between___qfRU9","flex_box_vertical_center":"flex_box_vertical_center___fCRld","flex_box_center_end":"flex_box_center_end___ORMV8","flex_box_column":"flex_box_column___PNKtZ","tabs":"tabs___alpa7","tabsWrap":"tabsWrap___aCQjw","tab":"tab___MKLr4","active":"active___nl_4v"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomTabs/index.tsx
+
+
+
+
+
+var CustomTabs = function CustomTabs(_ref) {
+ var _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
+ value = _ref.value,
+ onChange = _ref.onChange,
+ className = _ref.className,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style,
+ tabBarExtraContent = _ref.tabBarExtraContent;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(CustomTabsmodules.tabs, className),
+ style: style,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CustomTabsmodules.tabsWrap,
+ children: dataSource.map(function (item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("aside", {
+ className: CustomTabsmodules.tab,
+ onClick: function onClick() {
+ onChange(item.id);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: value === item.id ? CustomTabsmodules.active : '',
+ children: item.name
+ }), (item === null || item === void 0 ? void 0 : item.total) !== undefined && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: ["\uFF08", item === null || item === void 0 ? void 0 : item.total, "\uFF09"]
+ })]
+ }, index);
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: CustomTabsmodules.tabBar,
+ children: tabBarExtraContent
+ })]
+ });
+};
+/* harmony default export */ var ui_customization_CustomTabs = (CustomTabs);
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomTable/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var CustomTablemodules = ({"flex_box_center":"flex_box_center___nD617","flex_space_between":"flex_space_between___a7tc2","flex_box_vertical_center":"flex_box_vertical_center___Ii5kH","flex_box_center_end":"flex_box_center_end___tc9kq","flex_box_column":"flex_box_column___x1Zlj","table":"table___zOWN7"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomTable/index.tsx
+
+
+
+
+var CustomTable = function CustomTable(_ref) {
+ var className = _ref.className,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style,
+ children = _ref.children;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: classnames_default()(CustomTablemodules.table, className),
+ style: style,
+ children: children
+ });
+};
+/* harmony default export */ var ui_customization_CustomTable = (CustomTable);
+// EXTERNAL MODULE: ./node_modules/antd/es/dropdown/style/index.js + 1 modules
+var dropdown_style = __webpack_require__(68018);
+// EXTERNAL MODULE: ./node_modules/antd/es/dropdown/index.js
+var dropdown = __webpack_require__(13013);
+// EXTERNAL MODULE: ./node_modules/antd/es/menu/style/index.js + 1 modules
+var menu_style = __webpack_require__(83736);
+// EXTERNAL MODULE: ./node_modules/antd/es/menu/index.js + 5 modules
+var menu = __webpack_require__(66516);
+;// CONCATENATED MODULE: ./src/components/ui-customization/SuperiorSort/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var SuperiorSortmodules = ({"flex_box_center":"flex_box_center___e6HxQ","flex_space_between":"flex_space_between___RnXYe","flex_box_vertical_center":"flex_box_vertical_center___lVxPk","flex_box_center_end":"flex_box_center_end___bu8yv","flex_box_column":"flex_box_column___JczGj","orderWrap":"orderWrap___ZfyGX","orderIconWrap":"orderIconWrap___XTB_O","orderAsc":"orderAsc___KWHmA","orderDesc":"orderDesc___rHdbB","active":"active___a7eSP","cursorPointer":"cursorPointer___gs9kL","orderTextWrap":"orderTextWrap___teAKn"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/SuperiorSort/index.tsx
+
+
+
+
+
+
+
+
+
+var dropItem = [{
+ id: 'updated_at',
+ name: '最新动态'
+}, {
+ id: 'created_at',
+ name: '最新创建'
+}, {
+ id: 'name',
+ name: '名称排序'
+}];
+var SuperiorSort = function SuperiorSort(_ref) {
+ var _dataSource$find;
+ var sortValue = _ref.sortValue,
+ dropValue = _ref.dropValue,
+ className = _ref.className,
+ onSort = _ref.onSort,
+ onDrop = _ref.onDrop,
+ _ref$dataSource = _ref.dataSource,
+ dataSource = _ref$dataSource === void 0 ? dropItem : _ref$dataSource;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(SuperiorSortmodules.orderWrap, className),
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(dropdown/* default */.Z, {
+ dropdownRender: function dropdownRender() {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default */.Z, {
+ children: dataSource.map(function (e, i) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default.Item */.Z.Item, {
+ onClick: function onClick() {
+ return onDrop(e.id);
+ },
+ children: e.name
+ }, i);
+ })
+ });
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: SuperiorSortmodules.orderTextWrap,
+ children: (_dataSource$find = dataSource.find(function (e) {
+ return dropValue === e.id;
+ })) === null || _dataSource$find === void 0 ? void 0 : _dataSource$find.name
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: SuperiorSortmodules.orderIconWrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: SuperiorSortmodules.orderAsc,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: sortValue === 'asc' ? "iconfont icon-sanjiaoxing-up font12 ".concat(SuperiorSortmodules.cursorPointer, " ").concat(SuperiorSortmodules.active) : "iconfont icon-sanjiaoxing-up font12 ".concat(SuperiorSortmodules.cursorPointer),
+ onClick: function onClick() {
+ return onSort(sortValue === 'asc' ? 'desc' : 'asc');
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: SuperiorSortmodules.orderDesc,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: sortValue === 'desc' ? "iconfont icon-sanjiaoxing-down font12 ".concat(SuperiorSortmodules.cursorPointer, " ").concat(SuperiorSortmodules.active) : "iconfont icon-sanjiaoxing-down font12 ".concat(SuperiorSortmodules.cursorPointer),
+ onClick: function onClick() {
+ return onSort(sortValue === 'asc' ? 'desc' : 'asc');
+ }
+ })
+ })]
+ })]
+ });
+};
+/* harmony default export */ var ui_customization_SuperiorSort = (SuperiorSort);
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomButton/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var CustomButtonmodules = ({"flex_box_center":"flex_box_center___LCi0B","flex_space_between":"flex_space_between___hzONe","flex_box_vertical_center":"flex_box_vertical_center___ZyQRE","flex_box_center_end":"flex_box_center_end___XKM74","flex_box_column":"flex_box_column___p8LCU","btn":"btn___In02G"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/CustomButton/index.tsx
+
+
+
+
+var CustomButton = function CustomButton(_ref) {
+ var className = _ref.className,
+ style = _ref.style,
+ children = _ref.children,
+ onClick = _ref.onClick;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ onClick: onClick,
+ className: classnames_default()(CustomButtonmodules.btn, className),
+ style: style,
+ children: children
+ });
+};
+/* harmony default export */ var ui_customization_CustomButton = (CustomButton);
+;// CONCATENATED MODULE: ./src/components/ui-customization/HeadBack/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var HeadBackmodules = ({"flex_box_center":"flex_box_center___TB7bQ","flex_space_between":"flex_space_between___oBlTb","flex_box_vertical_center":"flex_box_vertical_center___b5XbB","flex_box_center_end":"flex_box_center_end___CNhe7","flex_box_column":"flex_box_column___yHXKW","head":"head___ghH72","node":"node___mjPEy"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/HeadBack/index.tsx
+
+
+
+
+
+var HeadBack_CustomButton = function CustomButton(_ref) {
+ var className = _ref.className,
+ style = _ref.style,
+ _ref$children = _ref.children,
+ children = _ref$children === void 0 ? null : _ref$children,
+ onClick = _ref.onClick,
+ title = _ref.title;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(HeadBackmodules.head, className),
+ style: style,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: "primary-hover",
+ onClick: onClick,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-fanhui2 font12"
+ }), "\u8FD4\u56DE"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("b", {
+ title: title,
+ children: title
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: HeadBackmodules.node,
+ children: children
+ })]
+ });
+};
+/* harmony default export */ var HeadBack = (HeadBack_CustomButton);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules
+var button_style = __webpack_require__(29913);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js
+var es_button = __webpack_require__(71577);
+;// CONCATENATED MODULE: ./src/components/ui-customization/ConfirmAndCancel/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var ConfirmAndCancelmodules = ({"flex_box_center":"flex_box_center___AlHuF","flex_space_between":"flex_space_between___vN2LW","flex_box_vertical_center":"flex_box_vertical_center___Ac7D2","flex_box_center_end":"flex_box_center_end___y38I7","flex_box_column":"flex_box_column___iQE6P","btns":"btns___sNgTb","confirm":"confirm___Ozirl","cancel":"cancel___aiq1I"});
+;// CONCATENATED MODULE: ./src/components/ui-customization/ConfirmAndCancel/index.tsx
+
+
+
+
+
+
+
+var ConfirmAndCancel = function ConfirmAndCancel(_ref) {
+ var _ref$confirmShow = _ref.confirmShow,
+ confirmShow = _ref$confirmShow === void 0 ? true : _ref$confirmShow,
+ confirmTitle = _ref.confirmTitle,
+ confirmClick = _ref.confirmClick,
+ _ref$cancelShow = _ref.cancelShow,
+ cancelShow = _ref$cancelShow === void 0 ? true : _ref$cancelShow,
+ cancelTitle = _ref.cancelTitle,
+ cancelClick = _ref.cancelClick,
+ className = _ref.className,
+ style = _ref.style,
+ _ref$confirmLoading = _ref.confirmLoading,
+ confirmLoading = _ref$confirmLoading === void 0 ? false : _ref$confirmLoading;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: classnames_default()(ConfirmAndCancelmodules.btns, className),
+ style: style,
+ children: [confirmShow && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: confirmLoading,
+ onClick: confirmClick,
+ type: "primary",
+ className: ConfirmAndCancelmodules.confirm,
+ children: confirmTitle
+ }), cancelShow && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ onClick: cancelClick,
+ className: ConfirmAndCancelmodules.cancel,
+ children: cancelTitle
+ })]
+ });
+};
+/* harmony default export */ var ui_customization_ConfirmAndCancel = (ConfirmAndCancel);
+;// CONCATENATED MODULE: ./src/components/ui-customization/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+/***/ }),
+
+/***/ 61891:
+/*!****************************************!*\
+ !*** ./src/components/useInterval.tsx ***!
+ \****************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+/* harmony export */ __webpack_require__.d(__webpack_exports__, {
+/* harmony export */ "Z": function() { return /* binding */ useInterval; }
+/* harmony export */ });
+/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294);
+
+function useInterval(callback, delay) {
+ var savedCallback = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)();
+
+ // 保存新回调
+ (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(function () {
+ savedCallback.current = callback;
+ });
+
+ // 建立 interval
+ (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(function () {
+ function tick() {
+ savedCallback.current();
+ }
+ if (delay !== null) {
+ var id = setInterval(tick, delay);
+ return function () {
+ return clearInterval(id);
+ };
+ }
+ }, [delay]);
+}
+
+/***/ }),
+
+/***/ 61612:
+/*!*****************************************************************!*\
+ !*** ./src/pages/Competitions/Detail/AwardPdf.tsx + 12 modules ***!
+ \*****************************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+
+// EXPORTS
+__webpack_require__.d(__webpack_exports__, {
+ "Z": function() { return /* binding */ AwardPdf; }
+});
+
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js
+var objectDestructuringEmpty = __webpack_require__(13012);
+var objectDestructuringEmpty_default = /*#__PURE__*/__webpack_require__.n(objectDestructuringEmpty);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/style/index.js + 1 modules
+var style = __webpack_require__(83822);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/index.js + 4 modules
+var es_radio = __webpack_require__(29924);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
+var slicedToArray = __webpack_require__(27424);
+var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
+// EXTERNAL MODULE: ./node_modules/react/index.js
+var react = __webpack_require__(67294);
+// EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules
+var _umi_production_exports = __webpack_require__(89214);
+// EXTERNAL MODULE: ./node_modules/antd/es/row/style/index.js
+var row_style = __webpack_require__(13062);
+// EXTERNAL MODULE: ./node_modules/antd/es/row/index.js
+var row = __webpack_require__(71230);
+// EXTERNAL MODULE: ./node_modules/antd/es/col/style/index.js
+var col_style = __webpack_require__(89032);
+// EXTERNAL MODULE: ./node_modules/antd/es/col/index.js
+var col = __webpack_require__(15746);
+// EXTERNAL MODULE: ./node_modules/antd/es/table/style/index.js + 1 modules
+var table_style = __webpack_require__(71854);
+// EXTERNAL MODULE: ./node_modules/antd/es/table/index.js + 58 modules
+var table = __webpack_require__(67250);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules
+var tooltip_style = __webpack_require__(38390);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules
+var tooltip = __webpack_require__(84908);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
+var regeneratorRuntime = __webpack_require__(17061);
+var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js
+var asyncToGenerator = __webpack_require__(17156);
+var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
+// EXTERNAL MODULE: ./src/pages/Competitions/Detail/index.less?modules
+var Detailmodules = __webpack_require__(16455);
+// EXTERNAL MODULE: ./src/service/competitions.ts
+var competitions = __webpack_require__(80185);
+// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
+var env = __webpack_require__(59758);
+// EXTERNAL MODULE: ./src/components/AsyncButton/index.tsx
+var AsyncButton = __webpack_require__(48559);
+// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
+var jsx_runtime = __webpack_require__(85893);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Downloadpdf.tsx
+
+
+
+
+
+
+
+
+
+
+
+//下载页
+
+
+
+
+
+
+
+
+
+function downpdf(_ref) {
+ var _Prize$personal_certi, _Prize$personal_certi2, _Prize$team_certifica, _Prize$team_certifica2, _Prize$teams, _Prize$teams$4, _Prize$teams$5;
+ var Prize = _ref.Prize;
+ var params = (0,_umi_production_exports.useParams)();
+ var _useState = (0,react.useState)([{
+ type: 1,
+ name: "团体奖证书"
+ }, {
+ type: 2,
+ name: "个人奖证书"
+ }, {
+ type: 3,
+ name: "优秀指导教师证书"
+ }]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ certData = _useState2[0],
+ setCertData = _useState2[1];
+ var handleClick = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(item) {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return (0,competitions/* getCertificateInfo */.Ju)({
+ type: item.type,
+ id: params.identifier
+ });
+ case 2:
+ res = _context.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) location.href = "/competitions/exports?id=".concat(params.identifier, "&type=").concat(item.type);
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function handleClick(_x) {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ var columns = [{
+ title: "角色",
+ dataIndex: "role",
+ align: 'center',
+ width: 80,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text,
+ children: text || "--"
+ });
+ }
+ }, {
+ title: "姓名",
+ dataIndex: "name",
+ width: 100,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text,
+ children: text || "--"
+ });
+ }
+ }, {
+ title: "实名认证",
+ width: 100,
+ dataIndex: "real_name_auth",
+ render: function render(text) {
+ return text === "authed" ? '已认证' : text === "authing" ? '待审核' : '未认证';
+ }
+ }, {
+ title: "职业认证",
+ width: 100,
+ dataIndex: "professional_auth",
+ render: function render(text) {
+ return text === "authed" ? '已认证' : text === "authing" ? '待审核' : '未认证';
+ }
+ }, {
+ title: "手机号",
+ dataIndex: "phone_binded",
+ width: 100,
+ render: function render(text) {
+ return text ? '已绑定' : '未绑定';
+ }
+ }, {
+ title: "邮箱号",
+ dataIndex: "email_binded",
+ width: 100,
+ render: function render(text) {
+ return text ? '已绑定' : '未绑定';
+ }
+ }, {
+ title: "开户行及银行卡号信息(队长填写)",
+ dataIndex: "role",
+ align: 'center',
+ render: function render(text, _render) {
+ var _Prize$teams$, _Prize$teams$$bank_ac, _Prize$teams$2, _Prize$teams$2$bank_a, _Prize$teams$3, _Prize$teams$3$bank_a;
+ return (_render === null || _render === void 0 ? void 0 : _render.role) === '队长' ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ width: '50%',
+ textAlign: 'center'
+ },
+ children: [(Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$ = Prize.teams[0]) === null || _Prize$teams$ === void 0 ? void 0 : (_Prize$teams$$bank_ac = _Prize$teams$.bank_account) === null || _Prize$teams$$bank_ac === void 0 ? void 0 : _Prize$teams$$bank_ac.bank), (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$2 = Prize.teams[0]) === null || _Prize$teams$2 === void 0 ? void 0 : (_Prize$teams$2$bank_a = _Prize$teams$2.bank_account) === null || _Prize$teams$2$bank_a === void 0 ? void 0 : _Prize$teams$2$bank_a.second_bank), (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$3 = Prize.teams[0]) === null || _Prize$teams$3 === void 0 ? void 0 : (_Prize$teams$3$bank_a = _Prize$teams$3.bank_account) === null || _Prize$teams$3$bank_a === void 0 ? void 0 : _Prize$teams$3$bank_a.card_no)]
+ }) : "--";
+ }
+ }];
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: Detailmodules/* default.downloadpdf */.Z.downloadpdf,
+ children: "\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u7684\u4E2A\u4EBA\u4FE1\u606F\u7ECF\u5BA1\u6279\u540E\uFF0C\u5C06\u63D0\u4F9B\u4E2A\u4EBA\u83B7\u5956\u8BC1\u4E66\u4E0B\u8F7D\uFF1B\u56E2\u961F\u961F\u5458\u4FE1\u606F\u5168\u90E8\u5BA1\u6279\u540E\uFF0C\u5C06\u63D0\u4F9B\u56E2\u961F\u83B7\u5956\u8BC1\u4E66\u4E0B\u8F7D\u3002"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ style: {
+ marginTop: '30px',
+ fontSize: '14px',
+ color: '#232B40',
+ fontWeight: "600"
+ },
+ children: "\u8BC1\u4E66\u60C5\u51B5"
+ }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$personal_certi = Prize.personal_certifications) === null || _Prize$personal_certi === void 0 ? void 0 : _Prize$personal_certi.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u4E2A\u4EBA\u8BC1\u4E66\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/pdfs.png"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ style: {
+ marginLeft: '5px'
+ },
+ href: env/* default.API_SERVER */.Z.API_SERVER + "".concat(Prize === null || Prize === void 0 ? void 0 : (_Prize$personal_certi2 = Prize.personal_certifications[0]) === null || _Prize$personal_certi2 === void 0 ? void 0 : _Prize$personal_certi2.url),
+ children: "\u7ACB\u5373\u4E0B\u8F7D"
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: ["\u4E2A\u4EBA\u8BC1\u4E66\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000'
+ },
+ children: "\u6682\u672A\u751F\u6210"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "c-red",
+ style: {
+ marginLeft: '20px'
+ },
+ children: "\u539F\u56E0\uFF1A\u7EC4\u59D4\u4F1A\u672A\u5B8C\u6210\u8BC1\u4E66\u5BA1\u6279\uFF0C\u8BF7\u7A0D\u540E"
+ })]
+ }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$team_certifica = Prize.team_certifications) === null || _Prize$team_certifica === void 0 ? void 0 : _Prize$team_certifica.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u56E2\u961F\u8BC1\u4E66\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/educoder/pdfs.png"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ style: {
+ marginLeft: '5px'
+ },
+ href: env/* default.API_SERVER */.Z.API_SERVER + "".concat(Prize === null || Prize === void 0 ? void 0 : (_Prize$team_certifica2 = Prize.team_certifications[0]) === null || _Prize$team_certifica2 === void 0 ? void 0 : _Prize$team_certifica2.url),
+ children: "\u7ACB\u5373\u4E0B\u8F7D"
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: ["\u56E2\u961F\u8BC1\u4E66\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000'
+ },
+ children: "\u6682\u672A\u751F\u6210"
+ })]
+ })
+ }), (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams = Prize.teams) === null || _Prize$teams === void 0 ? void 0 : _Prize$teams.length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ children: [(Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$4 = Prize.teams[0]) === null || _Prize$teams$4 === void 0 ? void 0 : _Prize$teams$4.name), "\u6218\u961F\u4FE1\u606F\u586B\u62A5\u6982\u51B5"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ columns: columns,
+ dataSource: Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$5 = Prize.teams[0]) === null || _Prize$teams$5 === void 0 ? void 0 : _Prize$teams$5.team_members,
+ pagination: false
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(row/* default */.Z, {
+ style: {
+ marginTop: "20px"
+ },
+ gutter: [20, 20],
+ children: certData.map(function (item, key) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(AsyncButton/* AsyncButton */.Z, {
+ icon: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xiazai5",
+ style: {
+ marginRight: "6px"
+ }
+ }),
+ className: Detailmodules/* default.pdfBut */.Z.pdfBut,
+ onClick: /*#__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 handleClick(item);
+ case 2:
+ return _context2.abrupt("return", _context2.sent);
+ case 3:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ children: item.name
+ })
+ }, key);
+ })
+ })]
+ });
+}
+/* harmony default export */ var Downloadpdf = (downpdf);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules
+var message_style = __webpack_require__(14934);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules
+var message = __webpack_require__(12461);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules
+var button_style = __webpack_require__(29913);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js
+var es_button = __webpack_require__(71577);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
+var modal_style = __webpack_require__(35611);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
+var modal = __webpack_require__(85402);
+// EXTERNAL MODULE: ./node_modules/antd/es/spin/style/index.js + 1 modules
+var spin_style = __webpack_require__(22536);
+// EXTERNAL MODULE: ./node_modules/antd/es/spin/index.js
+var spin = __webpack_require__(11382);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules
+var input_style = __webpack_require__(69463);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules
+var input = __webpack_require__(75008);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
+var objectSpread2 = __webpack_require__(42122);
+var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules
+var form_style = __webpack_require__(75627);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules
+var es_form = __webpack_require__(51018);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js
+var objectWithoutProperties = __webpack_require__(70215);
+var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties);
+// EXTERNAL MODULE: ./node_modules/antd/es/upload/style/index.js + 1 modules
+var upload_style = __webpack_require__(13759);
+// EXTERNAL MODULE: ./node_modules/antd/es/upload/index.js + 20 modules
+var upload = __webpack_require__(7426);
+// EXTERNAL MODULE: ./src/utils/util.tsx
+var util = __webpack_require__(29427);
+// EXTERNAL MODULE: ./src/assets/images/account/auth.png
+var auth = __webpack_require__(98814);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var componentmodules = ({"modal":"modal___A9Ovz","colorBlue":"colorBlue___XSmR5","formWrap":"formWrap___wRvaA","flexRow":"flexRow___C40dc","flexColumn":"flexColumn___LkZfj","example":"example___bz7Hw","exampleImg":"exampleImg___gNkC_","colorOrange":"colorOrange___Ka6zf","uploader":"uploader___plQRr","uploadImg":"uploadImg___cjOpL","imageTip":"imageTip___p1_lZ","uploadTipIcon":"uploadTipIcon___SpsS2","uploadTip":"uploadTip___e9JlL","color05101a":"color05101a___CDEUv","viewLargerImg":"viewLargerImg___IclRX","footerWrap":"footerWrap___beWC6","note":"note___CXi9y","schoolHintWrap":"schoolHintWrap___Ma6ly","colorCDCDCD":"colorCDCDCD___D0UWo","color0152d9":"color0152d9___hF3Bb"});
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/RealNameAuthModal.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var _excluded = ["user", "account", "globalSetting", "loading", "dispatch"];
+
+
+
+
+
+
+
+
+var Dragger = upload/* default.Dragger */.Z.Dragger;
+var MAX_NAME_LENGTH = 10;
+var RealNameAuthModal = function RealNameAuthModal(_ref) {
+ var user = _ref.user,
+ account = _ref.account,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ props = objectWithoutProperties_default()(_ref, _excluded);
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState = (0,react.useState)({}),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ formValue = _useState2[0],
+ setFormValue = _useState2[1];
+ var _useState3 = (0,react.useState)(true),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ showRealName = _useState4[0],
+ setShowRealName = _useState4[1];
+ var _useState5 = (0,react.useState)(),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ realName = _useState6[0],
+ setRealName = _useState6[1];
+ var _useState7 = (0,react.useState)(),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ image = _useState8[0],
+ setImage = _useState8[1];
+ var _useState9 = (0,react.useState)(),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ fileId = _useState10[0],
+ setFileId = _useState10[1];
+ var _useState11 = (0,react.useState)(),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ isLoading = _useState12[0],
+ setIsLoading = _useState12[1];
+ (0,react.useEffect)(function () {
+ if (!account.basicInfo) {
+ return;
+ }
+ var basicInfo = account.basicInfo;
+ var formData = {
+ name: basicInfo.show_realname ? basicInfo.name : (0,util/* getHiddenName */.YA)(basicInfo.name),
+ gender: basicInfo.gender
+ };
+ setRealName(basicInfo.name);
+ setShowRealName(basicInfo.show_realname);
+ form.setFieldsValue(formData);
+ setFormValue(formData);
+ }, [account.basicInfo]);
+ var handleUploadChange = function handleUploadChange(info) {
+ if (info.file.status === 'uploading') {
+ setIsLoading(true);
+ return;
+ }
+ if (info.file.status === 'done') {
+ var _info$file$response;
+ console.log(info.file, info.file.response);
+ setFileId((_info$file$response = info.file.response) === null || _info$file$response === void 0 ? void 0 : _info$file$response.id);
+ (0,util/* getBase64 */.y3)(info.file.originFileObj, function (base64Img) {
+ setImage(base64Img);
+ setIsLoading(false);
+ });
+ }
+ };
+ var handleValuesChange = function handleValuesChange(changedValues) {
+ setFormValue(objectSpread2_default()({}, form.getFieldsValue()));
+ if ('name' in changedValues) {
+ setRealName(changedValues.name);
+ }
+ };
+ var handleSetShowRealName = function handleSetShowRealName() {
+ var nextRealNameStatus = !showRealName;
+ setShowRealName(nextRealNameStatus);
+ var nextName = nextRealNameStatus ? realName : (0,util/* getHiddenName */.YA)(realName);
+ form.setFieldsValue({
+ name: nextName
+ });
+ };
+ var handleFinish = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) {
+ var _account$basicInfo, _user$userInfo;
+ var _ref3, name, gender, id_number, res, _user$userInfo2;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _ref3 = values || {}, name = _ref3.name, gender = _ref3.gender, id_number = _ref3.idNumber;
+ if (image) {
+ _context.next = 4;
+ break;
+ }
+ message/* default.info */.ZP.info('请先上传照片!');
+ return _context.abrupt("return");
+ case 4:
+ _context.next = 6;
+ return dispatch({
+ type: 'account/applyRealNameAuth',
+ payload: {
+ id: ((_account$basicInfo = account.basicInfo) === null || _account$basicInfo === void 0 ? void 0 : _account$basicInfo.id) || ((_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login),
+ name: name,
+ gender: gender,
+ id_number: id_number,
+ show_realname: showRealName,
+ attachment_ids: [fileId]
+ }
+ });
+ case 6:
+ res = _context.sent;
+ handleClose();
+ if (res) {
+ message/* default.info */.ZP.info("申请已提交,请等待审核!");
+ dispatch({
+ type: 'account/getBasicInfo',
+ payload: {
+ login: (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.login
+ }
+ });
+ }
+ case 9:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function handleFinish(_x) {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ var handleClose = function handleClose() {
+ dispatch({
+ type: 'account/setActionTabs',
+ payload: {}
+ });
+ };
+ var uploadProps = {
+ data: {
+ type: "real_name"
+ },
+ multiple: true,
+ showUploadList: false,
+ action: "".concat(env/* default.API_SERVER */.Z.API_SERVER, "/api/attachments.json"),
+ className: componentmodules.uploader,
+ onChange: handleUploadChange,
+ beforeUpload: function beforeUpload(file) {
+ var isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/jpg' || file.type === 'image/bmp';
+ if (!isJpgOrPng) {
+ message/* default.info */.ZP.info('请上传正确文件格式');
+ }
+ return isJpgOrPng;
+ }
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ centered: true,
+ keyboard: false,
+ closable: false,
+ destroyOnClose: true,
+ open: account.actionTabs.key === 'Account-RealNameAuth',
+ title: "\u4FEE\u6539\u5B9E\u540D\u4FE1\u606F",
+ width: "600px",
+ footer: null,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: !!isLoading,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ className: componentmodules.formWrap,
+ form: form,
+ layout: "horizontal",
+ onValuesChange: handleValuesChange,
+ onFinish: handleFinish,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u59D3\u540D",
+ name: "name",
+ labelCol: {
+ span: 3
+ },
+ wrapperCol: {
+ span: 12
+ },
+ rules: [{
+ required: true,
+ message: "\u8BF7\u8F93\u5165\u771F\u5B9E\u59D3\u540D\uFF0C\u6700\u5927\u9650\u5236".concat(MAX_NAME_LENGTH, "\u4E2A\u5B57\u7B26")
+ }, {
+ validator: util/* handleValidatorName */.HJ
+ }],
+ extra: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: showRealName ? '(显示:平台将显示您的真实姓名)' : '(隐藏:平台将显示你的昵称)'
+ }),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ disabled: !showRealName,
+ placeholder: "\u8BF7\u8F93\u5165\u771F\u5B9E\u59D3\u540D\uFF0C\u6700\u5927\u9650\u5236".concat(MAX_NAME_LENGTH, "\u4E2A\u5B57\u7B26"),
+ maxLength: MAX_NAME_LENGTH,
+ addonAfter: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont ".concat(showRealName ? 'icon-xianshi' : 'icon-yincang', " font18 ").concat(componentmodules.color0152d9),
+ onClick: handleSetShowRealName
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u6027\u522B\uFF1A",
+ name: "gender",
+ labelCol: {
+ span: 3
+ },
+ wrapperCol: {
+ span: 12
+ },
+ rules: [{
+ required: true,
+ message: '请选择性别'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ children: "\u7537"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ children: "\u5973"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u8BC1\u4EF6\u53F7\uFF1A",
+ labelCol: {
+ span: 3
+ },
+ name: "idNumber",
+ rules: [{
+ required: true,
+ message: '请输入证件号'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ placeholder: "\u8BF7\u8F93\u5165\u8BC1\u4EF6\u53F7"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u8EAB\u4EFD\u8BC1\u4E0A\u4F20",
+ labelCol: {
+ span: 3
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.flexRow,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "".concat(componentmodules.flexColumn, " ").concat(componentmodules.example),
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: componentmodules.exampleImg,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: auth
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: "tc",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "\u793A\u4F8B\u56FE\u7247"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: "".concat(componentmodules.colorOrange, " font12"),
+ children: "\uFF08png/jpg/bmp\u683C\u5F0F\uFF0C\u4E0D\u8D85\u8FC72MB\uFF09"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.flexColumn,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Dragger, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, {
+ accept: ".png,.jpg,.bmp,.jpeg",
+ children: image ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: image,
+ className: componentmodules.uploadImg
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.imageTip,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-cuban2shangchuanyunduan ".concat(componentmodules.uploadTipIcon)
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: componentmodules.uploadTip,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ className: componentmodules.color05101a,
+ children: "\u70B9\u51FB\u6216\u62D6\u62FD\u4E0A\u4F20\u56FE\u7247"
+ })
+ })]
+ })
+ })), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "tc",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: componentmodules.viewLargerImg,
+ children: "\u67E5\u770B\u5927\u56FE"
+ })
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: componentmodules.footerWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: "mr5",
+ size: "large",
+ onClick: handleClose,
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ size: "large",
+ type: "primary",
+ htmlType: "submit",
+ loading: loading['account/applyRealNameAuth'],
+ children: "\u4FDD\u5B58"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.note,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "\u8BA4\u8BC1\u987B\u77E5\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "1.\u4F60\u9700\u8981\u51C6\u5907\u6709\u6548\u7684\u8EAB\u4EFD\u8BC1\u6B63\u9762\uFF08\u4EBA\u50CF\u9762\uFF09\u7684\u8BC1\u4EF6\u7167\u7167\u7247\uFF0C\u8BF7\u786E\u4FDD\u8BC1\u4EF6\u7167\u7247\u6E05\u6670\u53EF\u89C1\uFF0C\u4E25\u7981PS\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "2.\u6211\u4EEC\u5C06\u5728\u4F60\u63D0\u4EA4\u8BA4\u8BC1\u4FE1\u606F\u540E\u768424\u5C0F\u65F6\uFF08\u4E0D\u5305\u542B\u8282\u5047\u65E5\uFF09\u5185\u5B8C\u6210\u5BA1\u6838\uFF0C\u5BA1\u6838\u7ED3\u679C\u5C06\u4F1A\u4EE5\u7CFB\u7EDF\u6D88\u606F\u7684\u5F62\u5F0F\u53D1\u9001\u7ED9\u4F60\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "3.\u5B9E\u540D\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u65E0\u6CD5\u5220\u9664\uFF0C\u8BF7\u8C28\u614E\u586B\u5199\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "4.\u5B9E\u540D\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u7CFB\u7EDF\u5C06\u81EA\u52A8\u53D1\u653E500\u4E2A\u91D1\u5E01\u4F5C\u4E3A\u5956\u52B1\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "5.\u6211\u4EEC\u4F1A\u786E\u4FDD\u4F60\u6240\u63D0\u4F9B\u7684\u4FE1\u606F\u5747\u5904\u4E8E\u4E25\u683C\u7684\u4FDD\u5BC6\u72B6\u6001\uFF0C\u4E0D\u4F1A\u6CC4\u9732\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "6.\u5982\u5B58\u5728\u6076\u610F\u4E71\u586B\u5199\u59D3\u540D\uFF0C\u8BC1\u4EF6\u53F7\uFF0C\u53CA\u4E0A\u4F20\u4E0E\u5B9E\u540D\u8BA4\u8BC1\u8BC1\u4EF6\u65E0\u5173\u56FE\u7247\u8005\uFF0C\u4E00\u7ECF\u53D1\u73B0\u5C06\u51BB\u7ED3EduCoder\u8D26\u53F7\u3002"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "7.\u63D0\u4EA4\u5B9E\u540D\u8BA4\u8BC1\u540E\u7CFB\u7EDF\u4F1A\u81EA\u52A8\u5C06\u72B6\u6001\u6539\u4E3A\u5DF2\u8BA4\u8BC1\uFF0C\u4F60\u5C06\u53EF\u4EE5\u4F53\u9A8C\u5E73\u53F0\u9700\u8981\u5B9E\u540D\u8BA4\u8BC1\u7684\u529F\u80FD\uFF1B\u5982\u679C\u5728\u8BA4\u8BC1\u540E\u7684\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u672A\u901A\u8FC7\u5BA1\u6838\uFF0C\u4F60\u5C06\u4E0D\u80FD\u7EE7\u7EED\u4F53\u9A8C\u9700\u8981\u8BA4\u8BC1\u7684\u529F\u80FD\u3002"
+ })]
+ })]
+ })
+ })
+ });
+};
+/* harmony default export */ var component_RealNameAuthModal = ((0,_umi_production_exports.connect)(function (_ref4) {
+ var user = _ref4.user,
+ account = _ref4.account,
+ loading = _ref4.loading,
+ globalSetting = _ref4.globalSetting;
+ return {
+ user: user,
+ account: account,
+ globalSetting: globalSetting,
+ loading: loading.effects
+ };
+})(RealNameAuthModal));
+// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/style/index.js + 1 modules
+var auto_complete_style = __webpack_require__(19070);
+// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/index.js
+var auto_complete = __webpack_require__(49288);
+// EXTERNAL MODULE: ./node_modules/antd/es/select/style/index.js + 1 modules
+var select_style = __webpack_require__(95985);
+// EXTERNAL MODULE: ./node_modules/antd/es/select/index.js
+var es_select = __webpack_require__(34041);
+// EXTERNAL MODULE: ./src/assets/images/account/job.png
+var job = __webpack_require__(51941);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplyDepartmentModal/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var AppplyDepartmentModalmodules = ({"flexRow":"flexRow___LQKDI","flexColumn":"flexColumn___NLClE","formWrap":"formWrap___mGWio","example":"example___gPghw","footerWrap":"footerWrap___qcHQ4"});
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplyDepartmentModal/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var AppplyDepartmentModal_excluded = ["account", "globalSetting", "loading", "dispatch", "schoolName", "departmentName", "visible", "onClose", "onSuccess"];
+
+
+
+
+
+var TextArea = input/* default.TextArea */.Z.TextArea;
+var AppplyDepartmentModal = function AppplyDepartmentModal(_ref) {
+ var account = _ref.account,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ schoolName = _ref.schoolName,
+ departmentName = _ref.departmentName,
+ visible = _ref.visible,
+ _ref$onClose = _ref.onClose,
+ onClose = _ref$onClose === void 0 ? function () {} : _ref$onClose,
+ _ref$onSuccess = _ref.onSuccess,
+ onSuccess = _ref$onSuccess === void 0 ? function () {} : _ref$onSuccess,
+ props = objectWithoutProperties_default()(_ref, AppplyDepartmentModal_excluded);
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var schoolId = (0,react.useRef)();
+ (0,react.useEffect)(function () {
+ schoolId.current = props.schoolId;
+ }, [props.schoolId]);
+ (0,react.useEffect)(function () {
+ form.setFieldsValue({
+ department: departmentName
+ });
+ }, [departmentName]);
+ var handleFinish = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) {
+ var _ref3, department, remarks, res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _ref3 = values || {}, department = _ref3.department, remarks = _ref3.remarks;
+ _context.next = 3;
+ return dispatch({
+ type: 'account/appplyDepartment',
+ payload: {
+ school_id: schoolId.current,
+ name: department,
+ remarks: remarks
+ }
+ });
+ case 3:
+ res = _context.sent;
+ onClose();
+ if (res) {
+ message/* default.success */.ZP.success("新增院系/部门成功!");
+ onSuccess(department);
+ }
+ case 6:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function handleFinish(_x) {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ centered: true,
+ keyboard: false,
+ closable: false,
+ destroyOnClose: true,
+ open: visible,
+ title: "\u7533\u8BF7\u6DFB\u52A0\u5B50\u5355\u4F4D\u540D\u79F0",
+ width: "600px",
+ footer: null,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ className: AppplyDepartmentModalmodules.formWrap,
+ form: form,
+ labelCol: {
+ span: 4
+ },
+ wrapperCol: {
+ span: 20
+ },
+ onFinish: handleFinish,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u5355\u4F4D\u540D\u79F0\uFF1A",
+ children: schoolName
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u90E8\u95E8\u540D\u79F0\uFF1A",
+ name: "department",
+ rules: [{
+ required: true,
+ message: '请输入部门或者学院名称'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ placeholder: "\u8BF7\u8F93\u5165\u90E8\u95E8\u6216\u8005\u5B66\u9662\u540D\u79F0"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u8BF4\u660E\uFF1A",
+ name: "remarks",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(TextArea, {
+ placeholder: "\u518D\u6B21\u8BF4\u660E\u7279\u522B\u60C5\u51B5\uFF08\u9009\u586B\uFF09"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: AppplyDepartmentModalmodules.footerWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: "mr5",
+ size: "large",
+ onClick: function onClick() {
+ onClose();
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ size: "large",
+ type: "primary",
+ htmlType: "submit",
+ loading: loading['account/appplyDepartment'],
+ children: "\u4FDD\u5B58"
+ })]
+ })
+ })]
+ })
+ });
+};
+/* harmony default export */ var components_AppplyDepartmentModal = ((0,_umi_production_exports.connect)(function (_ref4) {
+ var account = _ref4.account,
+ loading = _ref4.loading,
+ globalSetting = _ref4.globalSetting;
+ return {
+ account: account,
+ globalSetting: globalSetting,
+ loading: loading.effects
+ };
+})(AppplyDepartmentModal));
+// EXTERNAL MODULE: ./node_modules/antd/es/cascader/style/index.js + 1 modules
+var cascader_style = __webpack_require__(95847);
+// EXTERNAL MODULE: ./node_modules/antd/es/cascader/index.js + 17 modules
+var cascader = __webpack_require__(45239);
+// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js
+var CheckCircleFilled = __webpack_require__(50675);
+// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js
+var CloseCircleFilled = __webpack_require__(38900);
+// EXTERNAL MODULE: ./src/utils/cityData.ts
+var cityData = __webpack_require__(12325);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplySchoolModal/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var AppplySchoolModalmodules = ({"flexRow":"flexRow___jGYtM","flexColumn":"flexColumn___NPMB3","formWrap":"formWrap___vwH9N","example":"example____BmJC","footerWrap":"footerWrap___lp1L0"});
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/components/AppplySchoolModal/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var AppplySchoolModal_excluded = ["account", "globalSetting", "loading", "dispatch", "schoolName", "visible", "onClose", "onSuccess"];
+
+
+
+
+
+
+
+var filter = function filter(inputValue, path) {
+ return path.some(function (option) {
+ return option.label.toLowerCase().indexOf(inputValue.toLowerCase()) > -1;
+ });
+};
+var AppplySchoolModal_TextArea = input/* default.TextArea */.Z.TextArea;
+var AppplySchoolModal = function AppplySchoolModal(_ref) {
+ var account = _ref.account,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ schoolName = _ref.schoolName,
+ visible = _ref.visible,
+ _ref$onClose = _ref.onClose,
+ onClose = _ref$onClose === void 0 ? function () {} : _ref$onClose,
+ _ref$onSuccess = _ref.onSuccess,
+ onSuccess = _ref$onSuccess === void 0 ? function () {} : _ref$onSuccess,
+ props = objectWithoutProperties_default()(_ref, AppplySchoolModal_excluded);
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ (0,react.useEffect)(function () {
+ form.setFieldsValue({
+ name: schoolName
+ });
+ }, [schoolName]);
+ var handleFinish = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) {
+ var _ref3, name, _ref3$city, city, address, remarks, res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _ref3 = values || {}, name = _ref3.name, _ref3$city = _ref3.city, city = _ref3$city === void 0 ? [] : _ref3$city, address = _ref3.address, remarks = _ref3.remarks;
+ _context.next = 3;
+ return dispatch({
+ type: 'account/appplySchool',
+ payload: {
+ name: name,
+ province: city[0],
+ city: city[1],
+ address: address,
+ remarks: remarks
+ }
+ });
+ case 3:
+ res = _context.sent;
+ onClose();
+ if (res) {
+ message/* default.success */.ZP.success("新增学校/单位成功!");
+ onSuccess(name);
+ }
+ case 6:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function handleFinish(_x) {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ centered: true,
+ keyboard: false,
+ closable: false,
+ destroyOnClose: true,
+ open: visible,
+ title: "\u7533\u8BF7\u6DFB\u52A0\u5355\u4F4D\u540D\u79F0",
+ width: "600px",
+ footer: null,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ className: AppplySchoolModalmodules.formWrap,
+ form: form,
+ labelCol: {
+ span: 4
+ },
+ wrapperCol: {
+ span: 20
+ },
+ onFinish: handleFinish,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u5355\u4F4D\u5168\u79F0\uFF1A",
+ name: "name",
+ rules: [{
+ required: true,
+ message: '请输入学校或工作单位'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ placeholder: "\u5B66\u6821\u6216\u5DE5\u4F5C\u5355\u4F4D"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "".concat(AppplySchoolModalmodules.flexRow, " ").concat(AppplySchoolModalmodules.example),
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: "\u793A\u4F8B\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: AppplySchoolModalmodules.flexColumn,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(CheckCircleFilled/* default */.Z, {
+ style: {
+ color: "rgb(82, 196, 26)"
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "font14 ml5",
+ children: "\u6B63\u786E\u793A\u4F8B\uFF1A\u6570\u636E\u7ED3\u6784"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(CloseCircleFilled/* default */.Z, {
+ style: {
+ color: "red"
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "font14 ml5",
+ children: "\u9519\u8BEF\u793A\u4F8B\uFF1A\u6570\u636E\u7ED3\u67842019\u6625"
+ })]
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u5730\u533A\uFF1A",
+ name: "city",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(cascader/* default */.Z, {
+ allowClear: true,
+ size: "large",
+ options: cityData/* CityData */.P,
+ placeholder: "\u8BF7\u9009\u62E9\u6240\u5728\u5730",
+ showSearch: {
+ matchInputWidth: true,
+ filter: filter
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u8BE6\u7EC6\u5730\u5740\uFF1A",
+ name: "address",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ placeholder: "\u8BF7\u586B\u5199\u5B8C\u6574\u7684\u5730\u5740\u4FE1\u606F"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u8BF4\u660E\uFF1A",
+ name: "remarks",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(AppplySchoolModal_TextArea, {
+ placeholder: "\u518D\u6B21\u8BF4\u660E\u7279\u522B\u60C5\u51B5\uFF08\u9009\u586B\uFF09"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: AppplySchoolModalmodules.footerWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: "mr5",
+ size: "large",
+ onClick: function onClick() {
+ onClose();
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ size: "large",
+ type: "primary",
+ htmlType: "submit",
+ loading: loading['account/appplySchool'],
+ children: "\u4FDD\u5B58"
+ })]
+ })
+ })]
+ })
+ });
+};
+/* harmony default export */ var components_AppplySchoolModal = ((0,_umi_production_exports.connect)(function (_ref4) {
+ var account = _ref4.account,
+ loading = _ref4.loading,
+ globalSetting = _ref4.globalSetting;
+ return {
+ account: account,
+ globalSetting: globalSetting,
+ loading: loading.effects
+ };
+})(AppplySchoolModal));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/component/ProfessionalAuthModal.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var ProfessionalAuthModal_excluded = ["user", "account", "globalSetting", "loading", "dispatch", "Scoid"];
+
+
+
+
+
+
+
+
+
+
+var Option = es_select/* default.Option */.Z.Option;
+var ProfessionalAuthModal_Dragger = upload/* default.Dragger */.Z.Dragger;
+var ProfessionalAuthModal = function ProfessionalAuthModal(_ref) {
+ var _globalSetting$settin, _schoolList$find3;
+ var user = _ref.user,
+ account = _ref.account,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ Scoid = _ref.Scoid,
+ props = objectWithoutProperties_default()(_ref, ProfessionalAuthModal_excluded);
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState = (0,react.useState)({}),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ formValue = _useState2[0],
+ setFormValue = _useState2[1];
+ var _useState3 = (0,react.useState)([]),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ schoolList = _useState4[0],
+ setSchoolList = _useState4[1];
+ var _useState5 = (0,react.useState)([]),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ filterSchoolList = _useState6[0],
+ setFilterSchoolList = _useState6[1];
+ var _useState7 = (0,react.useState)([]),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ departmentList = _useState8[0],
+ setDepartmentList = _useState8[1];
+ var _useState9 = (0,react.useState)([]),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ filterDepartmentList = _useState10[0],
+ setFilterDepartmentList = _useState10[1];
+ var _useState11 = (0,react.useState)(),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ image = _useState12[0],
+ setImage = _useState12[1];
+ var _useState13 = (0,react.useState)(),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ fileId = _useState14[0],
+ setFileId = _useState14[1];
+ var _useState15 = (0,react.useState)(),
+ _useState16 = slicedToArray_default()(_useState15, 2),
+ isLoading = _useState16[0],
+ setIsLoading = _useState16[1];
+ var _useState17 = (0,react.useState)(),
+ _useState18 = slicedToArray_default()(_useState17, 2),
+ visibleAppplySchool = _useState18[0],
+ setVisibleAppplySchool = _useState18[1];
+ var _useState19 = (0,react.useState)(),
+ _useState20 = slicedToArray_default()(_useState19, 2),
+ visibleAppplyDepartment = _useState20[0],
+ setVisibleAppplyDepartment = _useState20[1];
+ ;
+ (0,react.useEffect)(function () {
+ getSchoolOption();
+ }, []);
+ (0,react.useEffect)(function () {
+ asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ if (Scoid) {
+ _context.next = 2;
+ break;
+ }
+ return _context.abrupt("return");
+ case 2:
+ _context.next = 4;
+ return getDepartmentOption(Scoid);
+ case 4:
+ res = _context.sent;
+ setDepartmentList(res === null || res === void 0 ? void 0 : res.departments);
+ case 6:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }))();
+ }, [Scoid]);
+ var getSchoolOption = /*#__PURE__*/function () {
+ var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return dispatch({
+ type: 'account/getSchoolOption'
+ });
+ case 2:
+ res = _context2.sent;
+ setSchoolList(res === null || res === void 0 ? void 0 : res.schools);
+ case 4:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return function getSchoolOption() {
+ return _ref3.apply(this, arguments);
+ };
+ }();
+ var getDepartmentOption = function getDepartmentOption(schoolId) {
+ return dispatch({
+ type: 'account/getDepartmentOption',
+ payload: {
+ id: schoolId
+ }
+ });
+ };
+ (0,react.useEffect)(function () {
+ if (!account.basicInfo) {
+ return;
+ }
+ var basicInfo = account.basicInfo;
+ var formData = {
+ identity: basicInfo.identity,
+ school: basicInfo.school_name,
+ department: basicInfo.department_name,
+ studentNo: basicInfo.student_id,
+ jobTitle: basicInfo.identity == "teacher" ? basicInfo.technical_title : "教授",
+ manager: basicInfo.identity == "professional" ? basicInfo.technical_title : "企业管理者"
+ };
+ form.setFieldsValue(formData);
+ setFormValue(formData);
+ }, [account.basicInfo]);
+ var handleApplySchool = function handleApplySchool() {
+ setVisibleAppplySchool(true);
+ };
+ var handleApplyDepartment = function handleApplyDepartment() {
+ if (!schoolList.find(function (item) {
+ return item.name === formValue.school;
+ })) {
+ message/* default.info */.ZP.info('请先选择正确的单位或者学校!');
+ return;
+ }
+ setVisibleAppplyDepartment(true);
+ };
+ var handleValuesChange = function handleValuesChange(changedValues) {
+ setFormValue(objectSpread2_default()({}, form.getFieldsValue()));
+ if ('school' in changedValues) {
+ setFilterSchoolList(schoolList.filter(function (item) {
+ return item.name.includes(changedValues.school);
+ }));
+ var findSchoolId = (schoolList.find(function (item) {
+ return item.name === changedValues.school;
+ }) || {}).id;
+ if (findSchoolId) {
+ handleSetDepartment(changedValues.school);
+ } else {
+ form.setFieldsValue({
+ department: ''
+ });
+ setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), {
+ school: changedValues.school,
+ department: ''
+ }));
+ }
+ }
+ };
+ var handleSetDepartment = /*#__PURE__*/function () {
+ var _ref4 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3(school, departmentName) {
+ var _schoolList$find, _res$departments, _res$departments$;
+ var findSchoolId, res, name;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ findSchoolId = (_schoolList$find = schoolList.find(function (item) {
+ return item.name === school;
+ })) === null || _schoolList$find === void 0 ? void 0 : _schoolList$find.id;
+ _context3.next = 3;
+ return getDepartmentOption(findSchoolId);
+ case 3:
+ _context3.t0 = _context3.sent;
+ if (_context3.t0) {
+ _context3.next = 6;
+ break;
+ }
+ _context3.t0 = {};
+ case 6:
+ res = _context3.t0;
+ setDepartmentList(res === null || res === void 0 ? void 0 : res.departments);
+ name = departmentName || (res === null || res === void 0 ? void 0 : (_res$departments = res.departments) === null || _res$departments === void 0 ? void 0 : (_res$departments$ = _res$departments[0]) === null || _res$departments$ === void 0 ? void 0 : _res$departments$.name);
+ form.setFieldsValue({
+ department: name
+ });
+ setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), {
+ school: school,
+ department: name
+ }));
+ case 11:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ return function handleSetDepartment(_x, _x2) {
+ return _ref4.apply(this, arguments);
+ };
+ }();
+ var handleSchoolSuccess = /*#__PURE__*/function () {
+ var _ref5 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4(schoolName) {
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ _context4.next = 2;
+ return getSchoolOption();
+ case 2:
+ form.setFieldsValue({
+ school: schoolName,
+ department: ''
+ });
+ setFormValue(objectSpread2_default()(objectSpread2_default()({}, formValue), {
+ school: schoolName,
+ department: ''
+ }));
+ case 4:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ }));
+ return function handleSchoolSuccess(_x3) {
+ return _ref5.apply(this, arguments);
+ };
+ }();
+ var handleUploadChange = function handleUploadChange(info) {
+ if (info.file.status === 'uploading') {
+ setIsLoading(true);
+ return;
+ }
+ if (info.file.status === 'done') {
+ var _info$file$response;
+ console.log(info.file, info.file.response);
+ setFileId((_info$file$response = info.file.response) === null || _info$file$response === void 0 ? void 0 : _info$file$response.id);
+ (0,util/* getBase64 */.y3)(info.file.originFileObj, function (base64Img) {
+ setImage(base64Img);
+ setIsLoading(false);
+ });
+ }
+ };
+ var handleFinish = /*#__PURE__*/function () {
+ var _ref6 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5(values) {
+ var _schoolList$find2, _departmentList$find, _account$basicInfo, _user$userInfo;
+ var _ref7, school, department, identity, studentNo, jobTitle, manager, school_id, department_id, extra, res, _user$userInfo2;
+ return regeneratorRuntime_default()().wrap(function _callee5$(_context5) {
+ while (1) switch (_context5.prev = _context5.next) {
+ case 0:
+ _ref7 = values || {}, school = _ref7.school, department = _ref7.department, identity = _ref7.identity, studentNo = _ref7.studentNo, jobTitle = _ref7.jobTitle, manager = _ref7.manager;
+ if (image) {
+ _context5.next = 4;
+ break;
+ }
+ message/* default.info */.ZP.info('请先上传照片!');
+ return _context5.abrupt("return");
+ case 4:
+ school_id = (_schoolList$find2 = schoolList.find(function (item) {
+ return item.name === school;
+ })) === null || _schoolList$find2 === void 0 ? void 0 : _schoolList$find2.id;
+ department_id = (_departmentList$find = departmentList.find(function (item) {
+ return item.name === department;
+ })) === null || _departmentList$find === void 0 ? void 0 : _departmentList$find.id;
+ if (identity === 'student') {
+ extra = studentNo;
+ } else if (identity === 'teacher') {
+ extra = jobTitle;
+ } else {
+ extra = manager;
+ }
+ _context5.next = 9;
+ return dispatch({
+ type: 'account/applyProfessionalAuth',
+ payload: {
+ id: ((_account$basicInfo = account.basicInfo) === null || _account$basicInfo === void 0 ? void 0 : _account$basicInfo.id) || ((_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login),
+ school_id: school_id,
+ department_id: department_id,
+ identity: identity,
+ extra: extra,
+ attachment_ids: [fileId]
+ }
+ });
+ case 9:
+ res = _context5.sent;
+ handleClose();
+ if (res) {
+ message/* default.info */.ZP.info("申请已提交,请等待审核!");
+ dispatch({
+ type: 'account/getBasicInfo',
+ payload: {
+ login: (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.login
+ }
+ });
+ }
+ case 12:
+ case "end":
+ return _context5.stop();
+ }
+ }, _callee5);
+ }));
+ return function handleFinish(_x4) {
+ return _ref6.apply(this, arguments);
+ };
+ }();
+ var handleClose = function handleClose() {
+ dispatch({
+ type: 'account/setActionTabs',
+ payload: {}
+ });
+ };
+ var uploadProps = {
+ data: {
+ type: "professional"
+ },
+ multiple: true,
+ showUploadList: false,
+ action: "".concat(env/* default.API_SERVER */.Z.API_SERVER, "/api/attachments.json"),
+ className: componentmodules.uploader,
+ onChange: handleUploadChange,
+ beforeUpload: function beforeUpload(file) {
+ var isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/jpg' || file.type === 'image/bmp';
+ if (!isJpgOrPng) {
+ message/* default.info */.ZP.info('请上传正确文件格式');
+ }
+ return isJpgOrPng;
+ }
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ centered: true,
+ keyboard: false,
+ closable: false,
+ destroyOnClose: true,
+ className: componentmodules.modal,
+ open: account.actionTabs.key === 'Account-ProfessionalAuth',
+ title: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ style: {
+ padding: "25px"
+ },
+ align: "middle",
+ justify: "space-between",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ children: "\u804C\u4E1A\u8BA4\u8BC1"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-guanbi11",
+ style: {
+ color: "#979797",
+ cursor: "pointer"
+ },
+ onClick: handleClose
+ })
+ })]
+ }),
+ width: "660px",
+ footer: null,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: !!isLoading,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ className: componentmodules.formWrap,
+ form: form,
+ colon: false,
+ onValuesChange: handleValuesChange,
+ onFinish: handleFinish,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ gutter: [10, 0],
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: '300px',
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u804C\u4E1A",
+ name: "identity",
+ rules: [{
+ required: true,
+ message: '请先选择职业'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "teacher",
+ children: "\u6559\u5E08"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "student",
+ children: "\u5B66\u751F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "professional",
+ children: "\u4E13\u4E1A\u4EBA\u58EB"
+ })]
+ })
+ })
+ }), formValue.identity === 'student' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: '200px',
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ initialValue: formValue.studentNo,
+ name: "studentNo",
+ rules: [{
+ required: true,
+ message: '请先输入学号'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ type: "text",
+ placeholder: "\u8BF7\u8F93\u5165\u5B66\u53F7"
+ })
+ })
+ }), formValue.identity === 'teacher' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: '200px',
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ initialValue: formValue.jobTitle,
+ name: "jobTitle",
+ rules: [{
+ required: true,
+ message: '请先选择职称'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u6559\u6388",
+ children: "\u6559\u6388"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u526F\u6559\u6388",
+ children: "\u526F\u6559\u6388"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u8BB2\u5E08",
+ children: "\u8BB2\u5E08"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u52A9\u6559",
+ children: "\u52A9\u6559"
+ })]
+ })
+ })
+ }), formValue.identity === 'professional' && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: '200px',
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ initialValue: formValue.manager,
+ name: "manager",
+ rules: [{
+ required: true,
+ message: '请先选择职称'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u4F01\u4E1A\u7BA1\u7406\u8005",
+ children: "\u4F01\u4E1A\u7BA1\u7406\u8005"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u90E8\u95E8\u7BA1\u7406\u8005",
+ children: "\u90E8\u95E8\u7BA1\u7406\u8005"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u9AD8\u7EA7\u5DE5\u7A0B\u5E08",
+ children: "\u9AD8\u7EA7\u5DE5\u7A0B\u5E08"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u5DE5\u7A0B\u5E08",
+ children: "\u5DE5\u7A0B\u5E08"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Option, {
+ value: "\u52A9\u7406\u5DE5\u7A0B\u5E08",
+ children: "\u52A9\u7406\u5DE5\u7A0B\u5E08"
+ })]
+ })
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u5B66\u6821/\u5355\u4F4D",
+ name: "school",
+ extra: formValue.school && !(schoolList !== null && schoolList !== void 0 && schoolList.find(function (item) {
+ return item.name === formValue.school;
+ })) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.schoolHintWrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: componentmodules.colorCDCDCD,
+ children: ["\u672A\u627E\u5230\u5305\u542B\u201C", formValue.school, "\u201D\u7684\u9AD8\u6821\uFF0C"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "".concat(componentmodules.color0152d9, " current"),
+ onClick: handleApplySchool,
+ children: "\u7533\u8BF7\u65B0\u589E"
+ })]
+ }),
+ rules: [{
+ required: true,
+ message: '请先选择学校/单位'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(auto_complete/* default */.Z, {
+ showSearch: true,
+ options: filterSchoolList === null || filterSchoolList === void 0 ? void 0 : filterSchoolList.map(function (item) {
+ return {
+ value: item.name
+ };
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u9662\u7CFB/\u90E8\u95E8",
+ name: "department",
+ extra: formValue.department && !(departmentList !== null && departmentList !== void 0 && departmentList.find(function (item) {
+ return item.name === formValue.department;
+ })) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.schoolHintWrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: componentmodules.colorCDCDCD,
+ children: formValue.department ? "\u672A\u627E\u5230\u5305\u542B\u201C".concat(formValue.department, "\u201D\u7684\u9AD8\u6821\uFF0C") : '未找到院系,'
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "".concat(componentmodules.color0152d9, " current"),
+ onClick: handleApplyDepartment,
+ children: "\u7533\u8BF7\u65B0\u589E"
+ })]
+ }),
+ rules: [{
+ required: true,
+ message: '请先选择院系/部门'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(auto_complete/* default */.Z, {
+ showSearch: true,
+ onChange: function onChange(value) {
+ return setFilterDepartmentList(departmentList.filter(function (item) {
+ return item.name.includes(value);
+ }));
+ },
+ options: filterDepartmentList === null || filterDepartmentList === void 0 ? void 0 : filterDepartmentList.map(function (item) {
+ return {
+ value: item.name
+ };
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u804C\u4E1A\u8BC1\u4E0A\u4F20",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.flexRow,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.flexColumn,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ProfessionalAuthModal_Dragger, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, {
+ accept: ".png,.jpg,.bmp,.jpeg",
+ children: image ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: image,
+ className: componentmodules.uploadImg
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.imageTip,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-cuban2shangchuanyunduan ".concat(componentmodules.uploadTipIcon)
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: componentmodules.uploadTip,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ className: componentmodules.color05101a,
+ children: "\u70B9\u51FB\u6216\u62D6\u62FD\u4E0A\u4F20\u56FE\u7247"
+ })
+ })]
+ })
+ })), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "tc",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: componentmodules.viewLargerImg,
+ children: "\u67E5\u770B\u5927\u56FE"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "".concat(componentmodules.flexColumn, " ").concat(componentmodules.example),
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: componentmodules.exampleImg,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: job
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: "tc",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "\u793A\u4F8B\u56FE\u7247"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: "".concat(componentmodules.colorOrange, " font12"),
+ children: "\uFF08png/jpg/bmp\u683C\u5F0F\uFF0C\u4E0D\u8D85\u8FC72MB\uFF09"
+ })]
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: componentmodules.footerWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: "mr5",
+ size: "large",
+ onClick: handleClose,
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ size: "large",
+ type: "primary",
+ htmlType: "submit",
+ loading: loading['account/applyProfessionalAuth'],
+ children: "\u4FDD\u5B58"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: componentmodules.note,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "\u8BA4\u8BC1\u987B\u77E5\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "1.\u6839\u636E\u804C\u4E1A\u4E0A\u4F20\u76F8\u5E94\u7684\u8BC1\u4EF6\u7167\uFF1A\u6559\u5E08\uFF08\u6559\u5E08\u8BC1\uFF09\uFF0C\u4E13\u4E1A\u4EBA\u58EB\uFF08\u5458\u5DE5\u8BC1\uFF09\u3001\u5B66\u751F\uFF08\u5B66\u751F\u8BC1\uFF09\uFF0C\u8BF7\u786E\u4FDD\u8BC1\u4EF6\u7167\u5185\u5BB9\u5B8C\u6574\u5E76\u4E14\u6E05\u6670\u53EF\u89C1\uFF0C\u4E25\u7981PS\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "2.\u6211\u4EEC\u5C06\u5728\u4F60\u63D0\u4EA4\u804C\u4E1A\u8BC1\u4FE1\u606F\u540E\u768424\u5C0F\u65F6\uFF08\u4E0D\u5305\u542B\u8282\u5047\u65E5\uFF09\u5185\u5B8C\u6210\u5BA1\u6838\uFF0C\u5BA1\u6838\u7ED3\u679C\u5C06\u4F1A\u4EE5\u7CFB\u7EDF\u6D88\u606F\u7684\u5F62\u5F0F\u53D1\u9001\u7ED9\u4F60\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "3.\u804C\u4E1A\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u65E0\u6CD5\u5220\u9664\uFF0C\u8BF7\u8C28\u614E\u586B\u5199\uFF1B\u804C\u4E1A\u53D8\u66F4\u8BF7\u9009\u62E9\u91CD\u65B0\u8BA4\u8BC1\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "4.\u804C\u4E1A\u8BA4\u8BC1\u5BA1\u6838\u5B8C\u6210\u540E\uFF0C\u7CFB\u7EDF\u5C06\u81EA\u52A8\u53D1\u653E500\u4E2A\u91D1\u5E01\u4F5C\u4E3A\u5956\u52B1\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "5.\u6211\u4EEC\u4F1A\u786E\u4FDD\u4F60\u6240\u63D0\u4F9B\u7684\u4FE1\u606F\u5747\u5904\u4E8E\u4E25\u683C\u7684\u4FDD\u5BC6\u72B6\u6001\uFF0C\u4E0D\u4F1A\u6CC4\u9732\uFF1B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ children: ["6.\u5982\u5B58\u5728\u6076\u610F\u4E71\u586B\u5199\u59D3\u540D\uFF0C\u5B66\u53F7\uFF0C\u53CA\u4E0A\u4F20\u4E0E\u804C\u4E1A\u8BC1\u4EF6\u65E0\u5173\u56FE\u7247\u8005\uFF0C\u4E00\u7ECF\u53D1\u73B0\u5C06\u51BB\u7ED3", !(globalSetting !== null && globalSetting !== void 0 && (_globalSetting$settin = globalSetting.setting) !== null && _globalSetting$settin !== void 0 && _globalSetting$settin.is_local) && 'EduCoder', "\u8D26\u53F7\u3002"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: "7.\u975E\u8001\u5E08\u8EAB\u4EFD\u63D0\u4EA4\u804C\u4E1A\u8BA4\u8BC1\u540E\u7CFB\u7EDF\u4F1A\u81EA\u52A8\u5C06\u72B6\u6001\u6539\u4E3A\u5DF2\u8BA4\u8BC1\uFF0C\u4F60\u5C06\u53EF\u4EE5\u4F53\u9A8C\u5E73\u53F0\u9700\u8981\u804C\u4E1A\u8BA4\u8BC1\u7684\u529F\u80FD\uFF1B\u5982\u679C\u5728\u8BA4\u8BC1\u540E\u7684\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u672A\u901A\u8FC7\u5BA1\u6838\uFF0C\u4F60\u5C06\u4E0D\u80FD\u7EE7\u7EED\u4F53\u9A8C\u9700\u8981\u8BA4\u8BC1\u7684\u529F\u80FD\u3002"
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(components_AppplySchoolModal, {
+ visible: visibleAppplySchool,
+ onClose: function onClose() {
+ return setVisibleAppplySchool(false);
+ },
+ schoolName: formValue.school,
+ onSuccess: handleSchoolSuccess
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(components_AppplyDepartmentModal, {
+ visible: visibleAppplyDepartment,
+ onClose: function onClose() {
+ return setVisibleAppplyDepartment(false);
+ },
+ schoolId: (_schoolList$find3 = schoolList.find(function (item) {
+ return item.name === formValue.school;
+ })) === null || _schoolList$find3 === void 0 ? void 0 : _schoolList$find3.id,
+ schoolName: formValue.school,
+ departmentName: formValue.department,
+ onSuccess: function onSuccess(departmentName) {
+ return handleSetDepartment(formValue.school, departmentName);
+ }
+ })]
+ });
+};
+/* harmony default export */ var component_ProfessionalAuthModal = ((0,_umi_production_exports.connect)(function (_ref8) {
+ var user = _ref8.user,
+ account = _ref8.account,
+ loading = _ref8.loading,
+ globalSetting = _ref8.globalSetting;
+ return {
+ user: user,
+ account: account,
+ globalSetting: globalSetting,
+ loading: loading.effects
+ };
+})(ProfessionalAuthModal));
+// EXTERNAL MODULE: ./node_modules/md5/md5.js
+var md5 = __webpack_require__(2568);
+var md5_default = /*#__PURE__*/__webpack_require__.n(md5);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/UpdataPhone.tsx
+
+
+
+
+
+
+
+
+
+//修改手机号or邮箱地址
+
+
+
+
+//type 3 手机 4邮箱
+function UpdataPhone(_ref) {
+ var type = _ref.type,
+ dispatch = _ref.dispatch,
+ userid = _ref.userid,
+ isshow = _ref.isshow,
+ setPhoneshow = _ref.setPhoneshow,
+ setEmailshow = _ref.setEmailshow;
+ var opens = "79e33abd4b6588941ab7622aed1e67e8";
+ var _useState = (0,react.useState)(''),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ login = _useState2[0],
+ setLogin = _useState2[1];
+ var _useState3 = (0,react.useState)('获取验证码'),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ yzm = _useState4[0],
+ setYzm = _useState4[1];
+ var _useState5 = (0,react.useState)(60),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ seconds = _useState6[0],
+ setseconds = _useState6[1];
+ var _useState7 = (0,react.useState)(false),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ secondsFlag = _useState8[0],
+ setsecondsFlag = _useState8[1];
+ var _useState9 = (0,react.useState)(''),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ code = _useState10[0],
+ setCode = _useState10[1];
+ //获取验证码
+ function getversion() {
+ return _getversion.apply(this, arguments);
+ } // 获取验证码倒计时
+ function _getversion() {
+ _getversion = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ if (login) {
+ _context.next = 3;
+ break;
+ }
+ if (type === 3) {
+ message/* default.info */.ZP.info('手机号不能为空');
+ } else {
+ message/* default.info */.ZP.info('邮箱地址不能为空');
+ }
+ return _context.abrupt("return");
+ case 3:
+ _context.next = 5;
+ return dispatch({
+ type: 'competitions/getVerification',
+ payload: {
+ type: type,
+ login: login,
+ smscode: md5_default()(opens + login)
+ //user_id:39416
+ }
+ });
+ case 5:
+ data = _context.sent;
+ if (data.status === 1) {
+ message/* default.info */.ZP.info('获取验证码成功');
+ remainTime();
+ setsecondsFlag(true);
+ }
+ case 7:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return _getversion.apply(this, arguments);
+ }
+ function remainTime() {
+ setseconds(60);
+ var aa = setInterval(function () {
+ --seconds;
+ if (seconds > -1) {
+ setseconds(seconds);
+ } else {
+ clearInterval(aa);
+ setsecondsFlag(false);
+ }
+ }, 1000);
+ }
+ //绑定手机号
+ function PhoneBind() {
+ return _PhoneBind.apply(this, arguments);
+ } //绑定邮箱
+ function _PhoneBind() {
+ _PhoneBind = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return dispatch({
+ type: 'competitions/PhoneBind',
+ payload: {
+ userid: userid,
+ code: code,
+ phone: login
+ }
+ });
+ case 2:
+ data = _context2.sent;
+ if (data.status === 0) {
+ message/* default.info */.ZP.info('绑定成功');
+ setPhoneshow("none");
+ }
+ case 4:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return _PhoneBind.apply(this, arguments);
+ }
+ function EmailBind() {
+ return _EmailBind.apply(this, arguments);
+ }
+ function _EmailBind() {
+ _EmailBind = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ _context3.next = 2;
+ return dispatch({
+ type: 'competitions/EmailBind',
+ payload: {
+ userid: userid,
+ code: code,
+ email: login
+ }
+ });
+ case 2:
+ data = _context3.sent;
+ if (data.status === 0) {
+ message/* default.info */.ZP.info('绑定成功');
+ setEmailshow('none');
+ }
+ case 4:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ return _EmailBind.apply(this, arguments);
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: isshow
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ value: login,
+ onChange: function onChange(e) {
+ return setLogin(e.target.value);
+ },
+ placeholder: type === 3 ? '请输入手机号' : '请输入邮箱地址',
+ style: {
+ width: '370px'
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ value: code,
+ onChange: function onChange(e) {
+ return setCode(e.target.value);
+ },
+ placeholder: type === 3 ? '请输入手机获取的验证码' : '请输入邮箱获取的验证码',
+ style: {
+ width: '250px'
+ }
+ })
+ }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ disabled: secondsFlag,
+ onClick: function onClick() {
+ return getversion();
+ },
+ type: "primary",
+ style: {
+ marginLeft: '20px',
+ width: '100px'
+ },
+ children: secondsFlag ? "\u91CD\u65B0\u53D1\u9001".concat(seconds, "s") : yzm
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ style: {
+ marginTop: '30px',
+ width: '370px',
+ textAlign: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ style: {
+ marginRight: '15px'
+ },
+ onClick: function onClick() {
+ if (!code) {
+ message/* default.info */.ZP.info('验证码不能为空');
+ return;
+ }
+ if (type === 3) {
+ PhoneBind();
+ } else {
+ EmailBind();
+ }
+ },
+ children: "\u786E\u8BA4"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ style: {
+ marginLeft: '20px'
+ },
+ onClick: function onClick() {
+ if (type === 3) {
+ setPhoneshow("none");
+ } else {
+ setEmailshow('none');
+ }
+ },
+ children: "\u53D6\u6D88"
+ })]
+ })]
+ });
+}
+/* harmony default export */ var Detail_UpdataPhone = (UpdataPhone);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Addleader.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+//填写银行卡号等信息
+
+
+
+
+function Addleader(_ref) {
+ var dispatch = _ref.dispatch,
+ userid = _ref.userid;
+ var tailLayout = {
+ wrapperCol: {
+ offset: 3,
+ span: 21
+ }
+ };
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ width: '500px'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ form: form,
+ name: "basic",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, {
+ label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ width: "30px"
+ },
+ children: "\u5F00\u6237\u884C"
+ }),
+ name: "bank",
+ rules: [{
+ required: true,
+ message: '请输入开户行'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {})
+ })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, {
+ label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ width: "30px"
+ },
+ children: "\u652F\u884C"
+ }),
+ name: "second_bank",
+ rules: [{
+ required: true,
+ message: '请输入支行'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {})
+ })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, objectSpread2_default()(objectSpread2_default()({}, tailLayout), {}, {
+ label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ width: "30px"
+ },
+ children: "\u8D26\u53F7"
+ }),
+ name: "card_no",
+ rules: [{
+ required: true,
+ message: '请输入账号'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {})
+ })), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ htmlType: "submit",
+ onClick: /*#__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:
+ form.validateFields().then( /*#__PURE__*/function () {
+ var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(vaule) {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return dispatch({
+ type: 'competitions/setleader',
+ payload: objectSpread2_default()({
+ identifier: identifier,
+ user_id: userid
+ }, vaule)
+ });
+ case 2:
+ data = _context.sent;
+ if (data.status === 0) {
+ message/* default.info */.ZP.info('提交成功');
+ }
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function (_x) {
+ return _ref3.apply(this, arguments);
+ };
+ }());
+ case 1:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ children: "\u63D0\u4EA4"
+ })
+ })]
+ })
+ });
+}
+/* harmony default export */ var Detail_Addleader = (Addleader);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/PerfectuserInfon.tsx
+
+
+
+
+
+
+
+
+
+
+
+//完善个人信息
+
+
+
+
+
+
+
+
+var identityMap = {
+ "teacher": "教师",
+ "student": "学生",
+ "professional": "专业人士"
+};
+function PerfectUser(_ref) {
+ var _Prize$teams$, _Prize$teams$$bank_ac, _Prize$teams$2, _Prize$teams$2$bank_a, _Prize$teams$3, _Prize$teams$3$bank_a, _Prize$teams$4, _Prize$teams$4$bank_a;
+ var Prize = _ref.Prize,
+ Accounts = _ref.Accounts,
+ dispatch = _ref.dispatch,
+ userid = _ref.userid;
+ var _useState = (0,react.useState)('none'),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ phoneshow = _useState2[0],
+ setPhoneshow = _useState2[1];
+ var _useState3 = (0,react.useState)('none'),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ emailshow = _useState4[0],
+ setEmailshow = _useState4[1];
+ function update(_x) {
+ return _update.apply(this, arguments);
+ }
+ function _update() {
+ _update = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(type) {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ if (!(type === "1")) {
+ _context.next = 6;
+ break;
+ }
+ _context.next = 3;
+ return dispatch({
+ type: 'competitions/Authentication'
+ });
+ case 3:
+ data = _context.sent;
+ _context.next = 9;
+ break;
+ case 6:
+ _context.next = 8;
+ return dispatch({
+ type: 'competitions/Professional'
+ });
+ case 8:
+ data = _context.sent;
+ case 9:
+ if (data.status === 0) {
+ message/* default.info */.ZP.info('撤销成功');
+ }
+ case 10:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return _update.apply(this, arguments);
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "c-red",
+ children: "*"
+ }), "\u5B9E\u540D\u4FE1\u606F"]
+ }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: 1,
+ className: "ml20",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ justify: "space-between",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ style: {
+ marginLeft: '20px'
+ },
+ children: "\u901A\u8FC7\u5B9E\u540D\u8BA4\u8BC1\u540E\u624D\u80FD\u83B7\u5F97\u8BC1\u4E66"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Detailmodules/* default.PerfectBut */.Z.PerfectBut,
+ onClick: function onClick() {
+ dispatch({
+ type: 'account/setActionTabs',
+ payload: {
+ key: 'Account-RealNameAuth'
+ }
+ });
+ },
+ children: "\u7ACB\u5373\u8BA4\u8BC1"
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Detailmodules/* default.PerfectCent */.Z.PerfectCent,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u59D3\u540D"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, {
+ className: "ml20",
+ children: [Accounts === null || Accounts === void 0 ? void 0 : Accounts.name, (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? null : (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "applying" ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u5F85\u5BA1\u6838"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ onClick: function onClick() {
+ return update("1");
+ },
+ ghost: true,
+ style: {
+ marginLeft: '20px'
+ },
+ children: "\u64A4\u9500\u8BA4\u8BC1"
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#6ec76e'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-wancheng font-14"
+ }), " \u5DF2\u8BA4\u8BC1"]
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ className: "mt20",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u6027\u522B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.gender) === 0 ? '男' : '女'
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "c-red",
+ children: "*"
+ }), "\u804C\u4E1A\u4FE1\u606F"]
+ }), (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" && /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: 1,
+ className: "ml20",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ justify: "space-between",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ style: {
+ marginLeft: '20px'
+ },
+ children: "\u901A\u8FC7\u5B9E\u540D\u8BA4\u8BC1\u540E\u624D\u80FD\u83B7\u5F97\u8BC1\u4E66"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Detailmodules/* default.PerfectBut */.Z.PerfectBut,
+ onClick: function onClick() {
+ dispatch({
+ type: 'account/setActionTabs',
+ payload: {
+ key: 'Account-ProfessionalAuth'
+ }
+ });
+ },
+ children: "\u7ACB\u5373\u8BA4\u8BC1"
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Detailmodules/* default.PerfectCent */.Z.PerfectCent,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u804C\u4E1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, {
+ className: "ml20",
+ children: [Accounts && Accounts.identity && identityMap[Accounts.identity], (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "uncertified" ? null : (Accounts === null || Accounts === void 0 ? void 0 : Accounts.authentication) === "applying" ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u5F85\u5BA1\u6838"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ onClick: function onClick() {
+ return update("2");
+ },
+ ghost: true,
+ style: {
+ marginLeft: '20px'
+ },
+ children: "\u64A4\u9500\u8BA4\u8BC1"
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#6ec76e'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-wancheng font-14"
+ }), " \u5DF2\u8BA4\u8BC1", /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "primary",
+ onClick: function onClick() {
+ dispatch({
+ type: 'account/setActionTabs',
+ payload: {
+ key: 'Account-ProfessionalAuth'
+ }
+ });
+ },
+ ghost: true,
+ style: {
+ marginLeft: '20px'
+ },
+ children: "\u91CD\u65B0\u8BA4\u8BC1"
+ })]
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ className: "mt20",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u5B66\u53F7"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.student_id) || '--'
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ className: "mt20",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u5B66\u6821"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.school_name) || '--'
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ className: "mt20",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u9662\u7CFB"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.department_name) || '--'
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "c-red",
+ children: "*"
+ }), "\u8054\u7CFB\u65B9\u5F0F"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Detailmodules/* default.PerfectCent */.Z.PerfectCent,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u624B\u673A\u53F7"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ style: {
+ width: '150px'
+ },
+ children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.phone) || '--'
+ }), phoneshow === 'none' && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "link",
+ className: "ml20",
+ style: {
+ color: '#165DFF'
+ },
+ onClick: function onClick() {
+ setPhoneshow('block');
+ },
+ children: "\u66F4\u6362"
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "mt10",
+ style: {
+ marginLeft: "74px"
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_UpdataPhone, {
+ type: 3,
+ dispatch: dispatch,
+ userid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.id,
+ isshow: phoneshow,
+ setPhoneshow: setPhoneshow,
+ setEmailshow: setEmailshow
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ className: "mt20",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "Email"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ style: {
+ width: '150px'
+ },
+ children: (Accounts === null || Accounts === void 0 ? void 0 : Accounts.mail) || '--'
+ }), emailshow === 'none' && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ type: "link",
+ className: "ml20",
+ style: {
+ color: '#165DFF'
+ },
+ onClick: function onClick() {
+ setEmailshow('block');
+ },
+ children: "\u66F4\u6362"
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "mt10",
+ style: {
+ marginLeft: "74px"
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_UpdataPhone, {
+ type: 4,
+ dispatch: dispatch,
+ userid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.id,
+ isshow: emailshow,
+ setEmailshow: setEmailshow,
+ setPhoneshow: setPhoneshow
+ })
+ })]
+ }), Prize !== null && Prize !== void 0 && Prize.leader && Prize !== null && Prize !== void 0 && Prize.teams && Prize !== null && Prize !== void 0 && (_Prize$teams$ = Prize.teams[0]) !== null && _Prize$teams$ !== void 0 && (_Prize$teams$$bank_ac = _Prize$teams$.bank_account) !== null && _Prize$teams$$bank_ac !== void 0 && _Prize$teams$$bank_ac.bank ? /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ children: "\u7B7E/\u9886/\u5F00\u6237\u884C\u53CA\u94F6\u884C\u5361\u53F7"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ style: {
+ fontSize: '12px'
+ },
+ children: "\u4E3A\u4FDD\u969C\u5956\u91D1\u7684\u53CA\u65F6\u53D1\u653E\uFF0C\u8BF7\u961F\u957F\u5982\u5B9E\u586B\u5199\u4F60\u540D\u4E0B\u7684\u94F6\u884C\u5361\u4FE1\u606F"
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ children: "\u7B7E/\u9886/\u5F00\u6237\u884C\u53CA\u94F6\u884C\u5361\u53F7"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ style: {
+ fontSize: '12px'
+ },
+ children: "\u4E3A\u4FDD\u969C\u5956\u91D1\u7684\u53CA\u65F6\u53D1\u653E\uFF0C\u8BF7\u961F\u957F\u5982\u5B9E\u586B\u5199\u4F60\u540D\u4E0B\u7684\u94F6\u884C\u5361\u4FE1\u606F"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(Detail_Addleader, {
+ dispatch: dispatch,
+ userid: userid
+ })]
+ }), (Prize === null || Prize === void 0 ? void 0 : Prize.leader) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Detailmodules/* default.PerfectCent */.Z.PerfectCent,
+ style: {
+ border: 0
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u5F00\u6237\u884C"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$2 = Prize.teams[0]) === null || _Prize$teams$2 === void 0 ? void 0 : (_Prize$teams$2$bank_a = _Prize$teams$2.bank_account) === null || _Prize$teams$2$bank_a === void 0 ? void 0 : _Prize$teams$2$bank_a.bank) || '--'
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ className: "mt20",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u652F\u884C"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$3 = Prize.teams[0]) === null || _Prize$teams$3 === void 0 ? void 0 : (_Prize$teams$3$bank_a = _Prize$teams$3.bank_account) === null || _Prize$teams$3$bank_a === void 0 ? void 0 : _Prize$teams$3$bank_a.second_bank) || '--'
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ className: "mt20",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: Detailmodules/* default.PerfectCentName */.Z.PerfectCentName,
+ children: "\u8D26\u53F7"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "ml20",
+ children: (Prize === null || Prize === void 0 ? void 0 : Prize.teams) && (Prize === null || Prize === void 0 ? void 0 : (_Prize$teams$4 = Prize.teams[0]) === null || _Prize$teams$4 === void 0 ? void 0 : (_Prize$teams$4$bank_a = _Prize$teams$4.bank_account) === null || _Prize$teams$4$bank_a === void 0 ? void 0 : _Prize$teams$4$bank_a.card_no) || '--'
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(component_ProfessionalAuthModal, {
+ Scoid: Accounts === null || Accounts === void 0 ? void 0 : Accounts.school_id
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(component_RealNameAuthModal, {})]
+ });
+}
+/* harmony default export */ var PerfectuserInfon = (PerfectUser);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/AwardPdf.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var AwardPdfmodules = ({"scoreByBlankRadio":"scoreByBlankRadio____FOPE"});
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/AwardPdf.tsx
+
+
+
+
+//获奖证书
+
+
+
+
+
+
+
+var Awardpdf = function Awardpdf(_ref) {
+ var Prize = _ref.Prize,
+ Accounts = _ref.Accounts,
+ getAccounts = _ref.getAccounts,
+ dispatch = _ref.dispatch,
+ userid = _ref.userid;
+ var _useState = (0,react.useState)("DownPdf"),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ meuType = _useState2[0],
+ setMeutype = _useState2[1];
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ margin: "15px 0"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default.Group */.ZP.Group, {
+ optionType: "button",
+ className: AwardPdfmodules.scoreByBlankRadio,
+ options: [{
+ label: '获奖证书下载',
+ value: 'DownPdf'
+ }, {
+ label: '完善个人信息',
+ value: 'Perfect'
+ }],
+ value: meuType,
+ onChange: function onChange(e) {
+ setMeutype(e.target.value);
+ }
+ }), meuType == "DownPdf" && /*#__PURE__*/(0,jsx_runtime.jsx)(Downloadpdf, {
+ Prize: Prize
+ }), meuType == "Perfect" && /*#__PURE__*/(0,jsx_runtime.jsx)(PerfectuserInfon, {
+ userid: userid,
+ dispatch: dispatch,
+ Prize: Prize,
+ Accounts: Accounts
+ })]
+ });
+};
+/* harmony default export */ var AwardPdf = ((0,_umi_production_exports.connect)(function (_ref2) {
+ objectDestructuringEmpty_default()(_ref2);
+ return {};
+})(Awardpdf));
+
+/***/ }),
+
+/***/ 75725:
+/*!******************************************************************!*\
+ !*** ./src/pages/Competitions/Detail/Challitems.tsx + 1 modules ***!
+ \******************************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+
+// EXPORTS
+__webpack_require__.d(__webpack_exports__, {
+ "Z": function() { return /* binding */ Challitems; }
+});
+
+// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules
+var style = __webpack_require__(29913);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js
+var es_button = __webpack_require__(71577);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules
+var tooltip_style = __webpack_require__(38390);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules
+var tooltip = __webpack_require__(84908);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
+var regeneratorRuntime = __webpack_require__(17061);
+var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules
+var message_style = __webpack_require__(14934);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules
+var message = __webpack_require__(12461);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js
+var asyncToGenerator = __webpack_require__(17156);
+var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
+var modal_style = __webpack_require__(35611);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
+var modal = __webpack_require__(85402);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
+var slicedToArray = __webpack_require__(27424);
+var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
+// EXTERNAL MODULE: ./node_modules/react/index.js
+var react = __webpack_require__(67294);
+// EXTERNAL MODULE: ./src/pages/Competitions/Detail/index.less?modules
+var Detailmodules = __webpack_require__(16455);
+// EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules
+var _umi_production_exports = __webpack_require__(89214);
+// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
+var env = __webpack_require__(59758);
+// EXTERNAL MODULE: ./src/components/RenderHtml/index.tsx + 1 modules
+var RenderHtml = __webpack_require__(12768);
+// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules
+var verifyLogin = __webpack_require__(7303);
+// EXTERNAL MODULE: ./src/service/shixuns.ts
+var shixuns = __webpack_require__(56088);
+// EXTERNAL MODULE: ./src/utils/fetch.ts
+var fetch = __webpack_require__(84519);
+;// CONCATENATED MODULE: ./src/assets/images/jieduanguanka.svg
+function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
+function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
+function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
+var __defProp = Object.defineProperty;
+var __getOwnPropSymbols = Object.getOwnPropertySymbols;
+var __hasOwnProp = Object.prototype.hasOwnProperty;
+var __propIsEnum = Object.prototype.propertyIsEnumerable;
+var __defNormalProp = function __defNormalProp(obj, key, value) {
+ return key in obj ? __defProp(obj, key, {
+ enumerable: true,
+ configurable: true,
+ writable: true,
+ value: value
+ }) : obj[key] = value;
+};
+var __spreadValues = function __spreadValues(a, b) {
+ for (var prop in b || (b = {})) if (__hasOwnProp.call(b, prop)) __defNormalProp(a, prop, b[prop]);
+ if (__getOwnPropSymbols) {
+ var _iterator = _createForOfIteratorHelper(__getOwnPropSymbols(b)),
+ _step;
+ try {
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
+ var prop = _step.value;
+ if (__propIsEnum.call(b, prop)) __defNormalProp(a, prop, b[prop]);
+ }
+ } catch (err) {
+ _iterator.e(err);
+ } finally {
+ _iterator.f();
+ }
+ }
+ return a;
+};
+
+var SvgJieduanguanka = function SvgJieduanguanka(props) {
+ return /* @__PURE__ */React.createElement("svg", __spreadValues({
+ className: "jieduanguanka_svg__icon",
+ viewBox: "0 0 1024 1024",
+ xmlns: "http://www.w3.org/2000/svg",
+ width: 20,
+ height: 20
+ }, props), /* @__PURE__ */React.createElement("path", {
+ d: "M128 0h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128H128A128.358 128.358 0 0 1 0 896V128C0 57.6 57.6 0 128 0z",
+ fill: "#165DFF",
+ fillOpacity: 0.14
+ }), /* @__PURE__ */React.createElement("path", {
+ d: "M294.4 377.6 160 480c-6.4 6.4-12.8 12.8-12.8 25.6v57.6c0 12.8 6.4 19.2 19.2 32l134.4 96c12.8 12.8 38.4 12.8 51.2 0l6.4-6.4c6.4-6.4 12.8-19.2 6.4-32s-6.4-25.6-19.2-32l-115.2-83.2 121.6-96c6.4-6.4 12.8-19.2 12.8-25.6 0-12.8 0-19.2-6.4-32-19.2-19.2-44.8-25.6-64-6.4zm275.2-12.8c-12.8 6.4-19.2 12.8-25.6 19.2L409.6 633.6a40.806 40.806 0 0 0 0 38.4c6.4 12.8 19.2 19.2 38.4 19.2 12.8 0 25.6-6.4 32-19.2l134.4-249.6c6.4-6.4 6.4-19.2 6.4-32s-12.8-19.2-19.2-25.6h-32zm128 0c-12.8 0-19.2 6.4-25.6 12.8-12.8 19.2-12.8 44.8 6.4 57.6l121.6 96-121.6 89.6c-19.2 12.8-19.2 38.4-12.8 51.2l6.4 6.4c12.8 19.2 38.4 19.2 57.6 6.4l134.4-96c6.4-6.4 12.8-19.2 19.2-25.6v-57.6c0-12.8-6.4-19.2-12.8-25.6L736 377.6c-19.2-12.8-32-12.8-38.4-12.8z",
+ fill: "#165DFF"
+ }));
+};
+
+/* harmony default export */ var jieduanguanka = ("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiPjxwYXRoIGQ9Ik0xMjggMGg3NjhjNzAuNCAwIDEyOCA1Ny42IDEyOCAxMjh2NzY4YzAgNzAuNC01Ny42IDEyOC0xMjggMTI4SDEyOEExMjguMzU4IDEyOC4zNTggMCAwIDEgMCA4OTZWMTI4QzAgNTcuNiA1Ny42IDAgMTI4IDB6IiBmaWxsPSIjMTY1REZGIiBmaWxsLW9wYWNpdHk9Ii4xNCIvPjxwYXRoIGQ9Ik0yOTQuNCAzNzcuNiAxNjAgNDgwYy02LjQgNi40LTEyLjggMTIuOC0xMi44IDI1LjZ2NTcuNmMwIDEyLjggNi40IDE5LjIgMTkuMiAzMmwxMzQuNCA5NmMxMi44IDEyLjggMzguNCAxMi44IDUxLjIgMGw2LjQtNi40YzYuNC02LjQgMTIuOC0xOS4yIDYuNC0zMnMtNi40LTI1LjYtMTkuMi0zMmwtMTE1LjItODMuMiAxMjEuNi05NmM2LjQtNi40IDEyLjgtMTkuMiAxMi44LTI1LjYgMC0xMi44IDAtMTkuMi02LjQtMzItMTkuMi0xOS4yLTQ0LjgtMjUuNi02NC02LjR6bTI3NS4yLTEyLjhjLTEyLjggNi40LTE5LjIgMTIuOC0yNS42IDE5LjJMNDA5LjYgNjMzLjZhNDAuODA2IDQwLjgwNiAwIDAgMCAwIDM4LjRjNi40IDEyLjggMTkuMiAxOS4yIDM4LjQgMTkuMiAxMi44IDAgMjUuNi02LjQgMzItMTkuMmwxMzQuNC0yNDkuNmM2LjQtNi40IDYuNC0xOS4yIDYuNC0zMnMtMTIuOC0xOS4yLTE5LjItMjUuNmgtMzJ6bTEyOCAwYy0xMi44IDAtMTkuMiA2LjQtMjUuNiAxMi44LTEyLjggMTkuMi0xMi44IDQ0LjggNi40IDU3LjZsMTIxLjYgOTYtMTIxLjYgODkuNmMtMTkuMiAxMi44LTE5LjIgMzguNC0xMi44IDUxLjJsNi40IDYuNGMxMi44IDE5LjIgMzguNCAxOS4yIDU3LjYgNi40bDEzNC40LTk2YzYuNC02LjQgMTIuOC0xOS4yIDE5LjItMjUuNnYtNTcuNmMwLTEyLjgtNi40LTE5LjItMTIuOC0yNS42TDczNiAzNzcuNmMtMTkuMi0xMi44LTMyLTEyLjgtMzguNC0xMi44eiIgZmlsbD0iIzE2NURGRiIvPjwvc3ZnPg==");
+// EXTERNAL MODULE: ./src/utils/authority.ts
+var authority = __webpack_require__(7);
+// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
+var jsx_runtime = __webpack_require__(85893);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Detail/Challitems.tsx
+
+
+
+
+
+
+
+
+
+
+
+//1 2 3 排名数据样式
+
+
+
+
+
+
+
+
+
+
+
+
+var toChinesNum = function toChinesNum(num) {
+ var changeNum = ['零', '一', '二', '三', '四', '五', '六', '七', '八', '九']; //changeNum[0] = "零"
+ var unit = ["", "十", "百", "千", "万"];
+ num = parseInt(num);
+ var getWan = function getWan(temp) {
+ var strArr = temp.toString().split("").reverse();
+ var newNum = "";
+ for (var i = 0; i < strArr.length; i++) {
+ newNum = (i == 0 && strArr[i] == 0 ? "" : i > 0 && strArr[i] == 0 && strArr[i - 1] == 0 ? "" : changeNum[strArr[i]] + (strArr[i] == 0 ? unit[0] : unit[i])) + newNum;
+ }
+ return newNum;
+ };
+ var overWan = Math.floor(num / 10000);
+ var noWan = num % 10000;
+ if (noWan.toString().length < 4) noWan = "0" + noWan;
+ return overWan ? getWan(overWan) + "万" + getWan(noWan) : getWan(num);
+};
+function RankingItem(_ref) {
+ var _item$shixun3, _item$shixun4, _item$shixun5, _item$challenges, _item$challenge_setti, _item$shixun6, _Header$permission;
+ var item = _ref.item,
+ Header = _ref.Header,
+ index = _ref.index,
+ StaffDetail = _ref.StaffDetail,
+ dispatch = _ref.dispatch;
+ var _useState = (0,react.useState)(true),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ content = _useState2[0],
+ setcontent = _useState2[1];
+ var _useState3 = (0,react.useState)(true),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ isopen = _useState4[0],
+ setisonen = _useState4[1];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ showMore = _useState6[0],
+ setShowMore = _useState6[1];
+ var divcontent = (0,react.useRef)();
+ var _useState7 = (0,react.useState)(false),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ showStatrButton = _useState8[0],
+ setShowStatrButton = _useState8[1];
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ (0,react.useEffect)(function () {
+ setTimeout(function () {
+ if (divcontent.current.children[0].clientHeight > 88) setShowMore(true);
+ }, 10);
+ }, []);
+ var handleStartGame = function handleStartGame(item) {
+ var _item$shixun2;
+ if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch, true)) {
+ return;
+ }
+ if ((item === null || item === void 0 ? void 0 : item.shixun_status) > 1) {
+ setShowStatrButton(true);
+ }
+ if (item !== null && item !== void 0 && item.is_jupyter || item !== null && item !== void 0 && item.is_jupyter_lab) {
+ var _item$shixun;
+ dispatch({
+ type: 'shixunsDetail/execJupyter',
+ payload: {
+ id: item === null || item === void 0 ? void 0 : (_item$shixun = item.shixun) === null || _item$shixun === void 0 ? void 0 : _item$shixun.identifier
+ }
+ }).then(function (response) {
+ setShowStatrButton(false);
+ if (response !== null && response !== void 0 && response.identifier) {
+ window.open("/tasks/".concat(response.identifier, "/jupyter?competition_entry_id=").concat(item === null || item === void 0 ? void 0 : item.id, "&type=competitions"));
+ // window.location.href = `/tasks/${response.identifier}/jupyter?competition_entry_id=${item?.id}&type=competitions`;
+ }
+ });
+
+ return;
+ }
+ dispatch({
+ type: 'shixunsDetail/execShixun',
+ payload: {
+ id: item === null || item === void 0 ? void 0 : (_item$shixun2 = item.shixun) === null || _item$shixun2 === void 0 ? void 0 : _item$shixun2.identifier
+ }
+ }).then(function (execRes) {
+ setShowStatrButton(false);
+ if (execRes !== null && execRes !== void 0 && execRes.game_identifier) {
+ window.open("/tasks/".concat(execRes.game_identifier, "?competition_entry_id=").concat(item === null || item === void 0 ? void 0 : item.id, "&type=competitions"));
+ return;
+ }
+ if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 2) {
+ handleResetGame(execRes === null || execRes === void 0 ? void 0 : execRes.message);
+ } else if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 3) {
+ handleInBeta(execRes === null || execRes === void 0 ? void 0 : execRes.message);
+ }
+ });
+ };
+ var handleResetGame = function handleResetGame(url) {
+ var _url;
+ url = (_url = url) !== null && _url !== void 0 && _url.includes('.json') ? url : "".concat(url, ".json");
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ title: '提示',
+ okText: '确定',
+ cancelText: '取消',
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "tc font16",
+ children: "\u5B9E\u8BAD\u5DF2\u7ECF\u66F4\u65B0\u4E86\uFF0C\u6B63\u5728\u4E3A\u60A8\u91CD\u7F6E!"
+ }),
+ onOk: function () {
+ var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var res, execRes;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return (0,shixuns/* resetMyGame */.$Q)({
+ url: url
+ });
+ case 2:
+ res = _context.sent;
+ if (res) {
+ _context.next = 5;
+ break;
+ }
+ return _context.abrupt("return");
+ case 5:
+ message/* default.success */.ZP.success('重置成功,正在进入实训!');
+ _context.next = 8;
+ return (0,shixuns/* execShixun */.Ir)({
+ id: res.shixun_identifier
+ });
+ case 8:
+ execRes = _context.sent;
+ if (!(execRes !== null && execRes !== void 0 && execRes.game_identifier)) {
+ _context.next = 12;
+ break;
+ }
+ window.open("/tasks/".concat(execRes.game_identifier));
+ // history?.push(`/tasks/${execRes.game_identifier}`);
+ return _context.abrupt("return");
+ case 12:
+ if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 2) {
+ handleResetGame(execRes === null || execRes === void 0 ? void 0 : execRes.message);
+ } else if ((execRes === null || execRes === void 0 ? void 0 : execRes.status) === 3) {
+ handleInBeta(execRes === null || execRes === void 0 ? void 0 : execRes.message);
+ }
+ case 13:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ function onOk() {
+ return _onOk.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ };
+ var handleInBeta = function handleInBeta(message) {
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ title: '提示',
+ okText: '确定',
+ cancelText: '取消',
+ content: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "tc font16",
+ children: ["\u76EE\u524D\u8BE5\u5B9E\u8DF5\u9879\u76EE\u5C1A\u5728\u5185\u6D4B\u4E2D\uFF0C\u5C06\u4E8E", message, "\u4E4B\u540E\u5F00\u653E\uFF0C\u8C22\u8C22\uFF01"]
+ })
+ });
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Detailmodules/* default.box */.Z.box,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ justifyContent: 'space-between',
+ display: 'flex',
+ padding: '0 10px'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: Detailmodules/* default.title_style */.Z.title_style,
+ style: {
+ color: '#333333',
+ fontWeight: 500,
+ fontSize: '14px'
+ },
+ children: [Header !== null && Header !== void 0 && Header.is_new ? '赛题' : '任务', index + 1]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#9096A3',
+ marginLeft: 'auto',
+ fontSize: '12px'
+ },
+ children: ["\u4F5C\u54C1\u63D0\u4EA4\u65F6\u95F4", /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#232B40',
+ marginLeft: 5
+ },
+ children: [Header === null || Header === void 0 ? void 0 : Header.start_time, "~", Header === null || Header === void 0 ? void 0 : Header.end_time]
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: 10,
+ display: 'flex',
+ position: 'relative'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + '/' + (item === null || item === void 0 ? void 0 : item.pic),
+ style: {
+ width: 220,
+ height: 130,
+ borderRadius: '4px'
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginLeft: 20,
+ width: '75%'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ justifyContent: 'space-between'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: (item === null || item === void 0 ? void 0 : item.name) || (item === null || item === void 0 ? void 0 : (_item$shixun3 = item.shixun) === null || _item$shixun3 === void 0 ? void 0 : _item$shixun3.name),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#333333',
+ fontWeight: '500',
+ fontSize: '14px'
+ },
+ children: (item === null || item === void 0 ? void 0 : item.name) || (item === null || item === void 0 ? void 0 : (_item$shixun4 = item.shixun) === null || _item$shixun4 === void 0 ? void 0 : _item$shixun4.name)
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#9096A3',
+ marginLeft: 40
+ },
+ children: ["\u5173\u5361", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#333333',
+ marginLeft: 5
+ },
+ children: (item === null || item === void 0 ? void 0 : item.challenges_count) || (item === null || item === void 0 ? void 0 : (_item$shixun5 = item.shixun) === null || _item$shixun5 === void 0 ? void 0 : _item$shixun5.challenges_count)
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ ref: divcontent,
+ style: {
+ maxHeight: content && 100,
+ position: "relative",
+ overflow: "hidden"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, {
+ style: {
+ fontSize: '14px',
+ color: '#9096A3',
+ marginTop: 20,
+ position: "relative"
+ },
+ value: (item === null || item === void 0 ? void 0 : item.description) || ''
+ }), showMore && content && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Detailmodules/* default.maskText */.Z.maskText
+ })]
+ }), showMore && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ textAlign: 'center',
+ color: '#145DFF',
+ cursor: 'pointer'
+ },
+ onClick: function onClick() {
+ setcontent(!content);
+ },
+ children: [content ? '阅读全文 ' : '收起全文 ', /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont font14 ".concat(content ? 'icon-jiantou9' : 'icon-changyongtubiao-xianxingdaochu-zhuanqu-')
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginTop: 14,
+ maxHeight: isopen && 58,
+ overflow: 'hidden'
+ },
+ children: [item === null || item === void 0 ? void 0 : (_item$challenges = item.challenges) === null || _item$challenges === void 0 ? void 0 : _item$challenges.map(function (items, j) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginTop: j === 0 ? 0 : 12
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: jieduanguanka,
+ style: {
+ width: 20,
+ height: 20
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ marginLeft: 10
+ },
+ children: ["\u7B2C", j + 1, "\u5173", items === null || items === void 0 ? void 0 : items.challenge_name]
+ })]
+ });
+ }), item === null || item === void 0 ? void 0 : (_item$challenge_setti = item.challenge_settings) === null || _item$challenge_setti === void 0 ? void 0 : _item$challenge_setti.map(function (items, j) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginTop: j === 0 ? 0 : 12
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: jieduanguanka,
+ style: {
+ width: 20,
+ height: 20
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ marginLeft: 10
+ },
+ children: ["\u7B2C", j + 1, "\u5173", items === null || items === void 0 ? void 0 : items.challenge_name]
+ })]
+ });
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ position: 'absolute',
+ bottom: 14,
+ right: 10,
+ color: '#145DFF',
+ cursor: 'pointer'
+ },
+ children: [((item === null || item === void 0 ? void 0 : item.challenges_count) || (item === null || item === void 0 ? void 0 : (_item$shixun6 = item.shixun) === null || _item$shixun6 === void 0 ? void 0 : _item$shixun6.challenges_count)) > 2 && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ onClick: function onClick() {
+ setisonen(!isopen);
+ },
+ children: [isopen ? '展开' : '收起', " ", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont font14 ".concat(isopen ? 'icon-jiantou9' : 'icon-changyongtubiao-xianxingdaochu-zhuanqu-')
+ })]
+ }), ((StaffDetail === null || StaffDetail === void 0 ? void 0 : StaffDetail.enrolled) && (Header === null || Header === void 0 ? void 0 : Header.competition_status) !== 'ended' || (0,authority/* isAdmins */.eB)() || ((_Header$permission = Header.permission) === null || _Header$permission === void 0 ? void 0 : _Header$permission.editable)) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: showStatrButton,
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res1, _item$shixun7, res, _item$shixun8;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ if (!(Header !== null && Header !== void 0 && Header.is_new)) {
+ _context2.next = 11;
+ break;
+ }
+ _context2.next = 3;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/check_team_member.json"), {
+ method: 'post'
+ });
+ case 3:
+ res1 = _context2.sent;
+ if (!((res1 === null || res1 === void 0 ? void 0 : res1.status) === 0)) {
+ _context2.next = 9;
+ break;
+ }
+ handleStartGame(item);
+ _context2.next = 8;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/enter_competition_question.json"), {
+ method: 'post',
+ body: {
+ competition_stage_id: item === null || item === void 0 ? void 0 : item.competition_stage_id,
+ competition_stage_section_id: item === null || item === void 0 ? void 0 : item.competition_stage_section_id,
+ competition_entry_id: item === null || item === void 0 ? void 0 : item.id,
+ shixun_id: item === null || item === void 0 ? void 0 : (_item$shixun7 = item.shixun) === null || _item$shixun7 === void 0 ? void 0 : _item$shixun7.id
+ }
+ });
+ case 8:
+ res = _context2.sent;
+ case 9:
+ _context2.next = 12;
+ break;
+ case 11:
+ window.open("/shixuns/".concat((item === null || item === void 0 ? void 0 : item.identifier) || (item === null || item === void 0 ? void 0 : (_item$shixun8 = item.shixun) === null || _item$shixun8 === void 0 ? void 0 : _item$shixun8.identifier), "/challenges"));
+ case 12:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ style: {
+ marginLeft: 30,
+ borderRadius: 14,
+ fontSize: 12,
+ width: 88
+ },
+ type: "primary",
+ children: "\u5F00\u542F\u6311\u6218"
+ })]
+ })]
+ })]
+ })]
+ });
+}
+/* harmony default export */ var Challitems = (RankingItem);
+
+/***/ }),
+
+/***/ 19174:
+/*!************************************************************!*\
+ !*** ./src/pages/Competitions/Edit/index.tsx + 37 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 */ Edit; }
+});
+
+// EXTERNAL MODULE: ./node_modules/antd/es/select/style/index.js + 1 modules
+var style = __webpack_require__(95985);
+// EXTERNAL MODULE: ./node_modules/antd/es/select/index.js
+var es_select = __webpack_require__(34041);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules
+var button_style = __webpack_require__(29913);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js
+var es_button = __webpack_require__(71577);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules
+var input_style = __webpack_require__(69463);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules
+var input = __webpack_require__(75008);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules
+var tooltip_style = __webpack_require__(38390);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules
+var tooltip = __webpack_require__(84908);
+// EXTERNAL MODULE: ./node_modules/antd/es/affix/style/index.js + 1 modules
+var affix_style = __webpack_require__(48283);
+// EXTERNAL MODULE: ./node_modules/antd/es/affix/index.js + 1 modules
+var affix = __webpack_require__(15771);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
+var regeneratorRuntime = __webpack_require__(17061);
+var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
+// EXTERNAL MODULE: ./node_modules/antd/es/breadcrumb/style/index.js + 1 modules
+var breadcrumb_style = __webpack_require__(63102);
+// EXTERNAL MODULE: ./node_modules/antd/es/breadcrumb/index.js + 3 modules
+var breadcrumb = __webpack_require__(58492);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
+var objectSpread2 = __webpack_require__(42122);
+var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules
+var message_style = __webpack_require__(14934);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules
+var message = __webpack_require__(12461);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js
+var asyncToGenerator = __webpack_require__(17156);
+var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
+var modal_style = __webpack_require__(35611);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
+var modal = __webpack_require__(85402);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules
+var form_style = __webpack_require__(75627);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules
+var es_form = __webpack_require__(51018);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
+var slicedToArray = __webpack_require__(27424);
+var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js
+var objectWithoutProperties = __webpack_require__(70215);
+var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties);
+// EXTERNAL MODULE: ./node_modules/react/index.js
+var react = __webpack_require__(67294);
+// EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules
+var _umi_production_exports = __webpack_require__(89214);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var Editmodules = ({"flex_box_center":"flex_box_center___Pwy41","flex_space_between":"flex_space_between___iGrQJ","flex_box_vertical_center":"flex_box_vertical_center___yCxnY","flex_box_center_end":"flex_box_center_end___WYWWp","flex_box_column":"flex_box_column___XMpFi","bg":"bg___WrQc9","top":"top___eHaMu","title":"title___ZzSKL","img":"img___TSo4p","span":"span___i1hTN","button":"button___M8rSK","content":"content___BOwAQ","Banner":"Banner___t6PnF","right":"right___x1tqT","titles":"titles___UHOD8","bonus":"bonus___l9Tlu","items":"items___CPICU","bottom":"bottom___HHYt7","tag":"tag___DBN6l","jsinput":"jsinput___oh61y","baseFormItem":"baseFormItem___t5ZrH","scoremodal":"scoremodal___yE6h8","yes":"yes___XyW4g","no":"no___kIYD7","bottoms":"bottoms___X64Ij","loaderimg":"loaderimg___w2vWU","enroll":"enroll___lbTQ5","publish":"publish___kDAkJ","ended":"ended___mycKl","form_item":"form_item___lsqU3","form_item_item":"form_item_item___Zdnul","form_item_item_select":"form_item_item_select____5lDo"});
+// EXTERNAL MODULE: ./src/components/ui-customization/index.tsx + 33 modules
+var ui_customization = __webpack_require__(85343);
+// EXTERNAL MODULE: ./node_modules/antd/es/spin/style/index.js + 1 modules
+var spin_style = __webpack_require__(22536);
+// EXTERNAL MODULE: ./node_modules/antd/es/spin/index.js
+var spin = __webpack_require__(11382);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var Settingmodules = ({"flex_box_center":"flex_box_center___XJhZ_","flex_space_between":"flex_space_between___QP4ke","flex_box_vertical_center":"flex_box_vertical_center___QxAqn","flex_box_center_end":"flex_box_center_end___idxMG","flex_box_column":"flex_box_column___FtSbq","all":"all___CqKTx","message_warnimg":"message_warnimg___sCs9y","message_icon":"message_icon___T8887","message_error":"message_error___pZWBZ","message_title":"message_title___lTdqI","setting":"setting___v3_ot","setting_title":"setting_title___WxGAY","setting_content":"setting_content___XAWD6","setting_menu":"setting_menu___oKuAW","menu_item":"menu_item___qbDG8","menu_item_active":"menu_item_active___kzN6I","setting_info":"setting_info___pqlf5"});
+// EXTERNAL MODULE: ./node_modules/antd/es/table/style/index.js + 1 modules
+var table_style = __webpack_require__(71854);
+// EXTERNAL MODULE: ./node_modules/antd/es/table/index.js + 58 modules
+var table = __webpack_require__(67250);
+// EXTERNAL MODULE: ./node_modules/antd/es/checkbox/style/index.js + 1 modules
+var checkbox_style = __webpack_require__(82000);
+// EXTERNAL MODULE: ./node_modules/antd/es/checkbox/index.js + 2 modules
+var es_checkbox = __webpack_require__(32808);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/style/index.js + 1 modules
+var radio_style = __webpack_require__(83822);
+// EXTERNAL MODULE: ./node_modules/antd/es/radio/index.js + 4 modules
+var es_radio = __webpack_require__(29924);
+// EXTERNAL MODULE: ./node_modules/antd/es/date-picker/style/index.js + 1 modules
+var date_picker_style = __webpack_require__(25763);
+// EXTERNAL MODULE: ./node_modules/antd/es/date-picker/index.js + 57 modules
+var date_picker = __webpack_require__(60201);
+// EXTERNAL MODULE: ./node_modules/antd/es/upload/style/index.js + 1 modules
+var upload_style = __webpack_require__(13759);
+// EXTERNAL MODULE: ./node_modules/antd/es/upload/index.js + 20 modules
+var upload = __webpack_require__(7426);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/information/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var informationmodules = ({"flex_box_center":"flex_box_center___I6sdE","flex_space_between":"flex_space_between___uTlet","flex_box_vertical_center":"flex_box_vertical_center___P8PRU","flex_box_center_end":"flex_box_center_end___WLZlZ","flex_box_column":"flex_box_column___tMPnI","all":"all___dBmCY","title":"title___IeVqW","content":"content___zp_KL","form_item":"form_item___hXuXB","form_item_basic":"form_item_basic___K4a8V","form_item_time":"form_item_time___h8rdI","form_item_model":"form_item_model____Mn2H","form_item_item":"form_item_item___CR0Q5","form_item_item_select":"form_item_item_select___eeMCh","textarea_father":"textarea_father___XVeQz","textarea_length":"textarea_length___Xdwl4","upload_button":"upload_button___zltZE","upload_button_file":"upload_button_file___vVqry","upload_text":"upload_text___pdO7Y","date_text":"date_text___gvUlY","upload_download":"upload_download___KCtvw","checkbox_text":"checkbox_text___yn4Cf","footer":"footer___t6QDc","clear_button":"clear_button___FWQBK","save_button":"save_button___l7JJ7"});
+// EXTERNAL MODULE: ./node_modules/moment/moment.js
+var moment = __webpack_require__(30381);
+var moment_default = /*#__PURE__*/__webpack_require__.n(moment);
+// EXTERNAL MODULE: ./src/service/competitions.ts
+var service_competitions = __webpack_require__(80185);
+// EXTERNAL MODULE: ./src/service/paths.ts
+var paths = __webpack_require__(29533);
+// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
+var env = __webpack_require__(59758);
+// EXTERNAL MODULE: ./src/components/AsyncButton/index.tsx
+var AsyncButton = __webpack_require__(48559);
+// EXTERNAL MODULE: ./src/utils/util.tsx
+var util = __webpack_require__(29427);
+// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
+var jsx_runtime = __webpack_require__(85893);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/information/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var _excluded = ["competitions", "dispatch"];
+
+
+var TextArea = input/* default.TextArea */.Z.TextArea;
+
+
+
+
+
+
+
+
+
+
+
+var informationPage = function informationPage(_ref) {
+ var _formValue$name, _formValue$sub_title, _formValue$identifier2;
+ var competitions = _ref.competitions,
+ dispatch = _ref.dispatch,
+ props = objectWithoutProperties_default()(_ref, _excluded);
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState = (0,react.useState)({}),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ formValue = _useState2[0],
+ setFormValue = _useState2[1];
+ var _useState3 = (0,react.useState)(0),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ textareaCount = _useState4[0],
+ setTextareaCount = _useState4[1];
+ var _useState5 = (0,react.useState)(),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ attachment = _useState6[0],
+ setattachment = _useState6[1];
+ var _useState7 = (0,react.useState)(),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ file = _useState8[0],
+ setfile = _useState8[1];
+ var _useState9 = (0,react.useState)(false),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ authentication_check = _useState10[0],
+ setauthenticationcheck = _useState10[1];
+ var _useState11 = (0,react.useState)(false),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ phone_check = _useState12[0],
+ setphonecheck = _useState12[1];
+ var _useState13 = (0,react.useState)(false),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ mail_check = _useState14[0],
+ setmailcheck = _useState14[1];
+ var _useState15 = (0,react.useState)(false),
+ _useState16 = slicedToArray_default()(_useState15, 2),
+ student_check = _useState16[0],
+ setstudentcheck = _useState16[1];
+ var _useState17 = (0,react.useState)(false),
+ _useState18 = slicedToArray_default()(_useState17, 2),
+ teacher_check = _useState18[0],
+ setteachercheck = _useState18[1];
+ var _useState19 = (0,react.useState)([]),
+ _useState20 = slicedToArray_default()(_useState19, 2),
+ schoolList = _useState20[0],
+ setSchoolList = _useState20[1];
+ var _useState21 = (0,react.useState)(0),
+ _useState22 = slicedToArray_default()(_useState21, 2),
+ jinsai_id = _useState22[0],
+ setjingsaiid = _useState22[1];
+ var _useState23 = (0,react.useState)(false),
+ _useState24 = slicedToArray_default()(_useState23, 2),
+ showFailed = _useState24[0],
+ setShowFailed = _useState24[1];
+ var _useState25 = (0,react.useState)([]),
+ _useState26 = slicedToArray_default()(_useState25, 2),
+ dataSource = _useState26[0],
+ setdataSource = _useState26[1];
+ var _useState27 = (0,react.useState)(false),
+ _useState28 = slicedToArray_default()(_useState27, 2),
+ showtext = _useState28[0],
+ setshowtext = _useState28[1];
+ var Header = competitions.Header;
+ var params = (0,_umi_production_exports.useParams)();
+ var defaultFormData = {
+ region_rule: 0,
+ student_min: 0,
+ student_max: 1,
+ teacher_min: 0,
+ teacher_max: 0
+ };
+ var submitData = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var _formValue$identifier;
+ var obj_attachment, obj_file, _form$getFieldValue, _form$getFieldValue2, _form$getFieldValue3, _form$getFieldValue4, res, obj, i;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ obj_attachment = [];
+ if ((attachment === null || attachment === void 0 ? void 0 : attachment.length) > 0) {
+ attachment === null || attachment === void 0 ? void 0 : attachment.map(function (item) {
+ var _item$response;
+ obj_attachment.push((item === null || item === void 0 ? void 0 : (_item$response = item.response) === null || _item$response === void 0 ? void 0 : _item$response.id) || (item === null || item === void 0 ? void 0 : item.id));
+ });
+ }
+ form.setFieldValue('attachment_ids', obj_attachment);
+ obj_file = [];
+ if ((file === null || file === void 0 ? void 0 : file.length) > 0) {
+ file === null || file === void 0 ? void 0 : file.map(function (item) {
+ var _item$response2;
+ obj_file.push((item === null || item === void 0 ? void 0 : (_item$response2 = item.response) === null || _item$response2 === void 0 ? void 0 : _item$response2.id) || (item === null || item === void 0 ? void 0 : item.id));
+ });
+ }
+ form.setFieldValue('file_id', obj_file);
+ form.setFieldValue('is_authentication', authentication_check);
+ form.setFieldValue('need_phone', phone_check);
+ form.setFieldValue('need_mail', mail_check);
+ form.setFieldValue('competition_staffs', [{
+ minimum: form.getFieldValue('student_min'),
+ maximum: form.getFieldValue('student_max'),
+ category: "student",
+ mutiple_limited: student_check,
+ check_phone: false
+ }, {
+ minimum: form.getFieldValue('teacher_min'),
+ maximum: form.getFieldValue('teacher_max'),
+ category: "teacher",
+ mutiple_limited: teacher_check,
+ check_phone: false
+ }]);
+ if (!(((_formValue$identifier = formValue.identifier) === null || _formValue$identifier === void 0 ? void 0 : _formValue$identifier.length) < 3)) {
+ _context.next = 14;
+ break;
+ }
+ message/* default.error */.ZP.error('比赛网址最少要输入三个字符');
+ _context.next = 18;
+ break;
+ case 14:
+ _context.next = 16;
+ return (0,service_competitions/* basicSetting */.$M)(objectSpread2_default()(objectSpread2_default()({
+ id: props === null || props === void 0 ? void 0 : props.competitionId
+ }, form.getFieldsValue()), {}, {
+ enroll_start_time: form.getFieldValue('enroll_start_time') ? moment_default()((_form$getFieldValue = form.getFieldValue('enroll_start_time')) === null || _form$getFieldValue === void 0 ? void 0 : _form$getFieldValue._d).format('YYYY-MM-DD HH:mm') : '',
+ enroll_end_time: form.getFieldValue('enroll_end_time') ? moment_default()((_form$getFieldValue2 = form.getFieldValue('enroll_end_time')) === null || _form$getFieldValue2 === void 0 ? void 0 : _form$getFieldValue2._d).format('YYYY-MM-DD HH:mm') : '',
+ start_time: form.getFieldValue('start_time') ? moment_default()((_form$getFieldValue3 = form.getFieldValue('start_time')) === null || _form$getFieldValue3 === void 0 ? void 0 : _form$getFieldValue3._d).format('YYYY-MM-DD HH:mm') : '',
+ end_time: form.getFieldValue('end_time') ? moment_default()((_form$getFieldValue4 = form.getFieldValue('end_time')) === null || _form$getFieldValue4 === void 0 ? void 0 : _form$getFieldValue4._d).format('YYYY-MM-DD HH:mm') : ''
+ }));
+ case 16:
+ res = _context.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ message/* default.success */.ZP.success('更改成功');
+ if ((res === null || res === void 0 ? void 0 : res.failed.length) > 0) {
+ setShowFailed(true);
+ obj = [];
+ for (i in res === null || res === void 0 ? void 0 : res.failed) {
+ obj.push({
+ phone: res === null || res === void 0 ? void 0 : res.failed[i][0],
+ name: res === null || res === void 0 ? void 0 : res.failed[i][1],
+ email: res === null || res === void 0 ? void 0 : res.failed[i][2]
+ });
+ }
+ setdataSource(obj);
+ }
+ if ((params === null || params === void 0 ? void 0 : params.identifier) == form.getFieldValue('identifier')) {
+ //未修改比赛网址
+ dispatch({
+ type: 'competitions/getStaff',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ } else if ((params === null || params === void 0 ? void 0 : params.identifier) != form.getFieldValue('identifier')) {
+ _umi_production_exports.history.push("/competitions/detaol/".concat(form.getFieldValue('identifier'), "?type=4"));
+ }
+ } else {
+ // message.error(res?.message)
+ }
+ case 18:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function submitData() {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ var identifierBlur = function identifierBlur() {
+ setshowtext(false);
+ (0,service_competitions/* identifier_exist */.IN)({
+ id: jinsai_id,
+ identifier: form.getFieldValue('identifier')
+ }).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) != 0) {
+ // message.error(res?.message)
+ form.setFieldValue('identifier', '');
+ }
+ });
+ };
+ var downloadTemplate = function downloadTemplate() {
+ (0,util/* downLoadLink */.Nd)(null, env/* default.API_SERVER */.Z.API_SERVER + '/api/competitions/download_template');
+ };
+ (0,react.useEffect)(function () {
+ (0,paths/* getSchoolOption */.GY)({}).then(function (res) {
+ setSchoolList(res === null || res === void 0 ? void 0 : res.schools);
+ }).then(function () {
+ (0,service_competitions/* common_header */.o3)(props === null || props === void 0 ? void 0 : props.competitionId).then(function (res) {
+ var _res$attachments, _res$member_staff4, _res$teacher_staff4, _form$getFieldValue5;
+ setjingsaiid(res === null || res === void 0 ? void 0 : res.id);
+ form.setFieldValue('name', res === null || res === void 0 ? void 0 : res.name);
+ form.setFieldValue('sub_title', res === null || res === void 0 ? void 0 : res.sub_title);
+ form.setFieldValue('description', res === null || res === void 0 ? void 0 : res.description);
+ form.setFieldValue('identifier', res === null || res === void 0 ? void 0 : res.identifier);
+ form.setFieldValue('bonus', res === null || res === void 0 ? void 0 : res.bonus);
+ form.setFieldValue('awards_count', res === null || res === void 0 ? void 0 : res.awards_count);
+ res === null || res === void 0 ? void 0 : (_res$attachments = res.attachments) === null || _res$attachments === void 0 ? void 0 : _res$attachments.map(function (v) {
+ v.name = v.title;
+ });
+ form.setFieldValue('attachment_ids', res === null || res === void 0 ? void 0 : res.attachments);
+ setattachment(res === null || res === void 0 ? void 0 : res.attachments);
+ form.setFieldValue('enroll_start_time', res !== null && res !== void 0 && res.enroll_start_time ? moment_default()(res === null || res === void 0 ? void 0 : res.enroll_start_time) : '');
+ form.setFieldValue('enroll_end_time', res !== null && res !== void 0 && res.enroll_end_time ? moment_default()(res === null || res === void 0 ? void 0 : res.enroll_end_time) : '');
+ form.setFieldValue('start_time', res !== null && res !== void 0 && res.start_time ? moment_default()(res === null || res === void 0 ? void 0 : res.start_time) : '');
+ form.setFieldValue('end_time', res !== null && res !== void 0 && res.end_time ? moment_default()(res === null || res === void 0 ? void 0 : res.end_time) : '');
+ form.setFieldValue('rule', res === null || res === void 0 ? void 0 : res.rule);
+ if (res !== null && res !== void 0 && res.file) {
+ var _res$file;
+ res.file.name = res === null || res === void 0 ? void 0 : (_res$file = res.file) === null || _res$file === void 0 ? void 0 : _res$file.title;
+ }
+ form.setFieldValue('file_id', res === null || res === void 0 ? void 0 : res.file);
+ if (res !== null && res !== void 0 && res.file) {
+ setfile([res === null || res === void 0 ? void 0 : res.file]);
+ }
+ form.setFieldValue('region_rule', res === null || res === void 0 ? void 0 : res.region_rule);
+ form.setFieldValue('region_schools', res === null || res === void 0 ? void 0 : res.region_school_array);
+ form.setFieldValue('is_authentication', res === null || res === void 0 ? void 0 : res.is_authentication);
+ setauthenticationcheck(res === null || res === void 0 ? void 0 : res.is_authentication);
+ form.setFieldValue('need_phone', res === null || res === void 0 ? void 0 : res.need_phone);
+ setphonecheck(res === null || res === void 0 ? void 0 : res.need_phone);
+ form.setFieldValue('need_mail', res === null || res === void 0 ? void 0 : res.need_mail);
+ setmailcheck(res === null || res === void 0 ? void 0 : res.need_mail);
+ form.setFieldValue('personal', res === null || res === void 0 ? void 0 : res.personal);
+ if (res !== null && res !== void 0 && res.member_staff) {
+ var _res$member_staff, _res$member_staff2, _res$member_staff3;
+ form.setFieldValue('student_min', res === null || res === void 0 ? void 0 : (_res$member_staff = res.member_staff) === null || _res$member_staff === void 0 ? void 0 : _res$member_staff.minimum);
+ form.setFieldValue('student_max', res === null || res === void 0 ? void 0 : (_res$member_staff2 = res.member_staff) === null || _res$member_staff2 === void 0 ? void 0 : _res$member_staff2.maximum);
+ form.setFieldValue('student_checkbox', res === null || res === void 0 ? void 0 : (_res$member_staff3 = res.member_staff) === null || _res$member_staff3 === void 0 ? void 0 : _res$member_staff3.mutiple_limited);
+ } else {
+ form.setFieldValue('student_min', 0);
+ form.setFieldValue('student_max', 1);
+ }
+ if (res !== null && res !== void 0 && res.teacher_staff) {
+ var _res$teacher_staff, _res$teacher_staff2, _res$teacher_staff3;
+ form.setFieldValue('teacher_min', res === null || res === void 0 ? void 0 : (_res$teacher_staff = res.teacher_staff) === null || _res$teacher_staff === void 0 ? void 0 : _res$teacher_staff.minimum);
+ form.setFieldValue('teacher_max', res === null || res === void 0 ? void 0 : (_res$teacher_staff2 = res.teacher_staff) === null || _res$teacher_staff2 === void 0 ? void 0 : _res$teacher_staff2.maximum);
+ form.setFieldValue('teacher_checkbox', res === null || res === void 0 ? void 0 : (_res$teacher_staff3 = res.teacher_staff) === null || _res$teacher_staff3 === void 0 ? void 0 : _res$teacher_staff3.mutiple_limited);
+ } else {
+ form.setFieldValue('teacher_min', 0);
+ form.setFieldValue('teacher_max', 0);
+ }
+ setstudentcheck(res === null || res === void 0 ? void 0 : (_res$member_staff4 = res.member_staff) === null || _res$member_staff4 === void 0 ? void 0 : _res$member_staff4.mutiple_limited);
+ setteachercheck(res === null || res === void 0 ? void 0 : (_res$teacher_staff4 = res.teacher_staff) === null || _res$teacher_staff4 === void 0 ? void 0 : _res$teacher_staff4.mutiple_limited);
+ setFormValue(objectSpread2_default()({}, form.getFieldsValue()));
+ setTextareaCount((_form$getFieldValue5 = form.getFieldValue('description')) === null || _form$getFieldValue5 === void 0 ? void 0 : _form$getFieldValue5.length);
+ // form.setFieldValue('sponsor_schools', res?.sponsor_schools_array)
+ // form.setFieldValue('sponsor_user_name', res?.sponsor_user_name)
+ // form.setFieldValue('sponsor_user_phone', res?.sponsor_user_phone)
+ props === null || props === void 0 ? void 0 : props.loadingFunction(false);
+ });
+ });
+ //调整
+ if (props !== null && props !== void 0 && props.formName) {
+ form.scrollToField(props === null || props === void 0 ? void 0 : props.formName);
+ }
+ }, []);
+ var changetime = function changetime(e, type) {
+ if (type == '报名开始时间') {
+ //报名开始时间
+ if (form.getFieldValue('enroll_end_time')) {
+ var _form$getFieldValue6;
+ if ((e === null || e === void 0 ? void 0 : e._d) >= ((_form$getFieldValue6 = form.getFieldValue('enroll_end_time')) === null || _form$getFieldValue6 === void 0 ? void 0 : _form$getFieldValue6._d)) {
+ message/* default.error */.ZP.error('报名开始时间必须小于报名结束时间');
+ form.setFieldValue('enroll_start_time', '');
+ form.setFieldValue('enroll_end_time', '');
+ }
+ }
+ } else if (type == '报名结束时间') {
+ //报名结束时间
+ if (form.getFieldValue('enroll_start_time')) {
+ var _form$getFieldValue7;
+ if ((e === null || e === void 0 ? void 0 : e._d) <= ((_form$getFieldValue7 = form.getFieldValue('enroll_start_time')) === null || _form$getFieldValue7 === void 0 ? void 0 : _form$getFieldValue7._d)) {
+ message/* default.error */.ZP.error('报名结束时间必须大于报名开始时间');
+ form.setFieldValue('enroll_end_time', '');
+ }
+ } else {
+ message/* default.error */.ZP.error('报名结束时间必须大于报名开始时间');
+ form.setFieldValue('enroll_end_time', '');
+ }
+ } else if (type == '竞赛开始时间') {
+ //竞赛开始时间
+ if (form.getFieldValue('end_time')) {
+ var _form$getFieldValue8;
+ if ((e === null || e === void 0 ? void 0 : e._d) >= ((_form$getFieldValue8 = form.getFieldValue('end_time')) === null || _form$getFieldValue8 === void 0 ? void 0 : _form$getFieldValue8._d)) {
+ message/* default.error */.ZP.error('竞赛开始时间必须小于竞赛结束时间');
+ form.setFieldValue('start_time', '');
+ form.setFieldValue('end_time', '');
+ }
+ }
+ } else if (type == '竞赛结束时间') {
+ //竞赛结束时间
+ if (form.getFieldValue('start_time')) {
+ var _form$getFieldValue9;
+ if ((e === null || e === void 0 ? void 0 : e._d) <= ((_form$getFieldValue9 = form.getFieldValue('start_time')) === null || _form$getFieldValue9 === void 0 ? void 0 : _form$getFieldValue9._d)) {
+ message/* default.error */.ZP.error('竞赛结束时间必须大于竞赛开始时间');
+ form.setFieldValue('end_time', '');
+ }
+ } else {
+ message/* default.error */.ZP.error('竞赛结束时间必须大于竞赛开始时间');
+ form.setFieldValue('end_time', '');
+ }
+ }
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: informationmodules.all,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ form: form,
+ labelCol: {
+ flex: '120px'
+ },
+ scrollToFirstError: true,
+ initialValues: defaultFormData,
+ onFinish: submitData,
+ onFinishFailed: /*#__PURE__*/function () {
+ var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2(errInfo) {
+ var _errInfo$errorFields, _errInfo$errorFields$;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ // message.error(errInfo.errorFields[0].errors[0])
+ form.scrollToField(errInfo === null || errInfo === void 0 ? void 0 : (_errInfo$errorFields = errInfo.errorFields) === null || _errInfo$errorFields === void 0 ? void 0 : (_errInfo$errorFields$ = _errInfo$errorFields[0]) === null || _errInfo$errorFields$ === void 0 ? void 0 : _errInfo$errorFields$.name, {
+ behavior: 'auto',
+ block: 'center'
+ });
+ case 1:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return function (_x) {
+ return _ref3.apply(this, arguments);
+ };
+ }(),
+ onChange: function onChange() {
+ var _form$getFieldValue10, _formValue$descriptio;
+ var obj = form === null || form === void 0 ? void 0 : (_form$getFieldValue10 = form.getFieldValue('sponsor_user_name')) === null || _form$getFieldValue10 === void 0 ? void 0 : _form$getFieldValue10.replaceAll(' ', '');
+ form.setFieldValue('sponsor_user_name', obj);
+ var formValue = form.getFieldsValue();
+ setTextareaCount((_formValue$descriptio = formValue.description) === null || _formValue$descriptio === void 0 ? void 0 : _formValue$descriptio.length);
+ setFormValue(objectSpread2_default()({}, formValue));
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.title,
+ children: "\u57FA\u672C\u4FE1\u606F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: informationmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ style: {
+ marginTop: '-15px'
+ },
+ className: informationmodules.form_item,
+ label: "\u7ADE\u8D5B\u4E3B\u6807\u9898",
+ colon: false,
+ name: "name",
+ rules: [{
+ required: true,
+ message: "必填项:不能为空"
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: informationmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u7ADE\u8D5B\u4E3B\u6807\u9898",
+ maxLength: 60,
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [((_formValue$name = formValue.name) === null || _formValue$name === void 0 ? void 0 : _formValue$name.length) || 0, /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#c5c5c5'
+ },
+ children: "/60"
+ })]
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_basic,
+ label: "\u7ADE\u8D5B\u526F\u6807\u9898",
+ colon: false,
+ name: "sub_title",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: informationmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u7ADE\u8D5B\u526F\u6807\u9898",
+ maxLength: 60
+ // suffix={`${formValue.sub_title?.length || 0}/60`}
+ ,
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [((_formValue$sub_title = formValue.sub_title) === null || _formValue$sub_title === void 0 ? void 0 : _formValue$sub_title.length) || 0, /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#c5c5c5'
+ },
+ children: "/60"
+ })]
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: informationmodules.textarea_father,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item,
+ label: "\u7ADE\u8D5B\u7B80\u4ECB",
+ colon: false,
+ name: "description",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(TextArea, {
+ maxLength: 200,
+ placeholder: "\u8BF7\u8F93\u5165\u7B80\u4ECB",
+ rows: 5
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: informationmodules.textarea_length,
+ children: [textareaCount || 0, /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#c5c5c5'
+ },
+ children: "/200"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_basic,
+ label: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#ff4d4f',
+ marginRight: '4px',
+ fontFamily: 'SimSun, sans-serif'
+ },
+ children: "*"
+ }), "\u6BD4\u8D5B\u7F51\u5740"]
+ }),
+ colon: false,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ width: '32%'
+ },
+ children: "https://www.educoder.net/competitions/"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ style: {
+ width: 'calc(68% + 16px)',
+ marginLeft: '-16px'
+ },
+ label: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ width: '0px'
+ }
+ }),
+ colon: false,
+ name: "identifier",
+ rules: [{
+ required: true,
+ message: "必填项:不能为空"
+ }, {
+ pattern: new RegExp(/^[A-Za-z0-9\-_]*$/, ""),
+ message: '必须是数字、字母、下划线或者横线'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: informationmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u7F51\u5740",
+ maxLength: 20
+ // suffix={`${formValue.identifier?.length || 0}/20`}
+ ,
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [((_formValue$identifier2 = formValue.identifier) === null || _formValue$identifier2 === void 0 ? void 0 : _formValue$identifier2.length) || 0, /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#c5c5c5'
+ },
+ children: "/20"
+ })]
+ }),
+ onBlur: identifierBlur,
+ onChange: function onChange() {
+ setshowtext(true);
+ }
+ // onmouseover={()=>{setshowtext(true)}}
+ ,
+ disabled: (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'ended' ? true : false
+ })
+ })]
+ }), showtext && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ marginTop: '-15px',
+ color: '#ff4d4f',
+ marginLeft: '33.5%',
+ fontSize: '12px'
+ },
+ children: "\u5982\u679C\u4FEE\u6539\u7ADE\u8D5B\u7F51\u5740\uFF0C\u4F1A\u9020\u6210\u53C2\u8D5B\u4EBA\u5458\u65E0\u6CD5\u518D\u6B21\u901A\u8FC7\u65E7\u7F51\u5740\u8FDB\u5165"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_basic,
+ style: {
+ marginTop: '-12px'
+ },
+ label: "\u5956\u91D1\u91D1\u989D",
+ colon: false,
+ name: "bonus",
+ rules: [{
+ pattern: new RegExp(/^\d{0,9}$/, "g"),
+ message: '必须是9位数以内的正整数'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: informationmodules.form_item_item,
+ placeholder: "\u5982\u679C\u9700\u8981\u8BBE\u7F6E\u5956\u91D1\uFF0C\u8BF7\u4E0E\u5E73\u53F0\u5BA2\u670D\u4EBA\u5458\u5BF9\u63A5",
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#c5c5c5'
+ },
+ children: "\u5143"
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_basic,
+ label: "\u5956\u9879\u6570\u91CF",
+ colon: false,
+ name: "awards_count",
+ rules: [{
+ pattern: new RegExp(/^\d{0,9}$/, "g"),
+ message: '必须是正整数'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: informationmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u5956\u9879\u6570\u91CF",
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#c5c5c5'
+ },
+ children: "\u4E2A"
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "attachment_ids",
+ label: "\u4E3E\u529E\u8D44\u8D28\u6587\u6863",
+ colon: false,
+ getValueFromEvent: function getValueFromEvent(e) {
+ if (Array.isArray(e)) {
+ return e;
+ }
+ return e && e.fileList;
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(upload/* default */.Z, {
+ action: env/* default.API_SERVER */.Z.API_SERVER + '/api/attachments.json',
+ onChange: function onChange(e) {
+ setattachment(e === null || e === void 0 ? void 0 : e.fileList);
+ },
+ onRemove: function onRemove(file) {
+ console.log(file);
+ setattachment([]);
+ },
+ fileList: attachment,
+ withCredentials: true,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.upload_button,
+ children: "\u4E0A\u4F20\u6587\u6863"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.upload_text,
+ children: "\u5982\u679C\u6D89\u53CA\u5230\u7ADE\u8D5B\u5956\u91D1\u76F8\u5173\u4E8B\u9879\uFF0C\u8BF7\u4E0A\u4F20\u76F8\u5173\u8D44\u8D28\u7684\u8BC1\u660E\u6587\u4EF6\uFF0C\u6709\u4FBF\u4E8E\u7ADE\u8D5B\u5FEB\u901F\u5BA1\u6838\u901A\u8FC7"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_basic,
+ label: "\u62A5\u540D\u65F6\u95F4",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "enroll_start_time",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(date_picker/* default */.Z, {
+ style: {
+ height: '40px'
+ },
+ showTime: true,
+ format: "YYYY-MM-DD HH:mm",
+ onChange: function onChange(e) {
+ changetime(e, '报名开始时间');
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px'
+ },
+ children: "\u81F3"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "enroll_end_time",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(date_picker/* default */.Z, {
+ style: {
+ height: '40px'
+ },
+ showTime: true,
+ format: "YYYY-MM-DD HH:mm",
+ onChange: function onChange(e) {
+ changetime(e, '报名结束时间');
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.date_text,
+ children: "\u5982\u679C\u4E0D\u586B\u62A5\u540D\u65F6\u95F4\uFF0C\u5219\u7ADE\u8D5B\u53D1\u5E03\u540E\u5C06\u4E0D\u5C55\u793A\u62A5\u540D\u5165\u53E3"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_time,
+ label: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#ff4d4f',
+ marginRight: '4px',
+ fontFamily: 'SimSun, sans-serif'
+ },
+ children: "*"
+ }), "\u7ADE\u8D5B\u65F6\u95F4"]
+ }),
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "start_time",
+ rules: [{
+ required: true,
+ message: "必填项:不能为空"
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(date_picker/* default */.Z, {
+ style: {
+ height: '40px'
+ },
+ showTime: true,
+ format: "YYYY-MM-DD HH:mm",
+ onChange: function onChange(e) {
+ changetime(e, '竞赛开始时间');
+ },
+ disabled: (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'progressing' ? true : (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'ended' ? true : false
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px'
+ },
+ children: "\u81F3"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "end_time",
+ rules: [{
+ required: true,
+ message: "必填项:不能为空"
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(date_picker/* default */.Z, {
+ style: {
+ height: '40px'
+ },
+ showTime: true,
+ format: "YYYY-MM-DD HH:mm",
+ onChange: function onChange(e) {
+ changetime(e, '竞赛结束时间');
+ },
+ disabled: (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'ended' ? true : false
+ })
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.title,
+ children: "\u5F00\u653E\u8303\u56F4"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: informationmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u53C2\u8D5B\u89C4\u5219",
+ name: "rule",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ style: {
+ width: '120px'
+ },
+ children: "\u6309\u8303\u56F4\u53C2\u52A0"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ style: {
+ width: '120px'
+ },
+ children: "\u81EA\u5B9A\u7528\u6237\u53C2\u52A0"
+ })]
+ })
+ }), form.getFieldValue('rule') == 1 && /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "file_id",
+ label: " ",
+ colon: false,
+ getValueFromEvent: function getValueFromEvent(e) {
+ if (Array.isArray(e)) {
+ return e;
+ }
+ return e && e.fileList;
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginLeft: '0px',
+ display: "flex"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(upload/* default */.Z, {
+ accept: ".xls, .xlsx",
+ maxCount: 1,
+ action: env/* default.API_SERVER */.Z.API_SERVER + '/api/attachments.json',
+ onChange: function onChange(e) {
+ setfile(e === null || e === void 0 ? void 0 : e.fileList);
+ },
+ onRemove: function onRemove(file) {
+ console.log(file);
+ setfile([]);
+ },
+ fileList: file,
+ withCredentials: true,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.upload_button_file,
+ children: "\u9009\u62E9\u6587\u4EF6"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: informationmodules.upload_download,
+ onClick: downloadTemplate,
+ children: ["\u4E0B\u8F7D\u6A21\u7248", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xiazai5 font14 ml5"
+ })]
+ })]
+ })
+ }), form.getFieldValue('rule') == 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u9009\u62E9\u9662\u6821",
+ name: "region_rule",
+ colon: false,
+ style: {
+ marginTop: '-3px'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ style: {
+ width: '120px'
+ },
+ children: "\u5168\u90E8\u9662\u6821"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ style: {
+ width: '120px'
+ },
+ children: "\u90E8\u5206\u9662\u6821"
+ })]
+ })
+ }), form.getFieldValue('region_rule') == 1 && form.getFieldValue('rule') == 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item,
+ style: {
+ marginTop: '-3px'
+ },
+ label: " ",
+ colon: false,
+ name: "region_schools",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select/* default */.Z, {
+ mode: "multiple",
+ className: informationmodules.form_item_item_select,
+ options: schoolList,
+ fieldNames: {
+ label: 'name',
+ value: 'id'
+ },
+ filterOption: function filterOption(input, option) {
+ var _option$name;
+ return ((_option$name = option === null || option === void 0 ? void 0 : option.name) !== null && _option$name !== void 0 ? _option$name : '').toLowerCase().includes(input.toLowerCase());
+ }
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.title,
+ children: "\u62A5\u540D\u8005\u6761\u4EF6"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: informationmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u62A5\u540D\u6761\u4EF6",
+ name: "is_authentication",
+ style: {
+ marginTop: '-10px'
+ },
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_checkbox/* default */.Z, {
+ checked: authentication_check,
+ onChange: function onChange(e) {
+ var _e$target;
+ return setauthenticationcheck(e === null || e === void 0 ? void 0 : (_e$target = e.target) === null || _e$target === void 0 ? void 0 : _e$target.checked);
+ },
+ children: ["\u5B9E\u540D\u8BA4\u8BC1", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: informationmodules.checkbox_text,
+ children: "(\u53C2\u8D5B\u4EBA\u5458\u8D26\u53F7\u5FC5\u987B\u5B9E\u540D\u8BA4\u8BC1)"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: " ",
+ name: "need_phone",
+ style: {
+ marginTop: '-10px'
+ },
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_checkbox/* default */.Z, {
+ checked: phone_check,
+ onChange: function onChange(e) {
+ var _e$target2;
+ return setphonecheck(e === null || e === void 0 ? void 0 : (_e$target2 = e.target) === null || _e$target2 === void 0 ? void 0 : _e$target2.checked);
+ },
+ children: ["\u7ED1\u5B9A\u624B\u673A", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: informationmodules.checkbox_text,
+ children: "(\u53C2\u8D5B\u4EBA\u5458\u8D26\u53F7\u5FC5\u987B\u7ED1\u5B9A\u624B\u673A\u53F7)"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: " ",
+ name: "need_mail",
+ style: {
+ marginTop: '-10px'
+ },
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_checkbox/* default */.Z, {
+ checked: mail_check,
+ onChange: function onChange(e) {
+ var _e$target3;
+ return setmailcheck(e === null || e === void 0 ? void 0 : (_e$target3 = e.target) === null || _e$target3 === void 0 ? void 0 : _e$target3.checked);
+ },
+ children: ["\u7ED1\u5B9A\u90AE\u7BB1", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: informationmodules.checkbox_text,
+ children: "(\u53C2\u8D5B\u4EBA\u5458\u8D26\u53F7\u5FC5\u987B\u7ED1\u5B9A\u90AE\u7BB1)"
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.title,
+ children: "\u53C2\u8D5B\u6A21\u5F0F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: informationmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: " ",
+ name: "personal",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ disabled: (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'progressing' ? true : (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'ended' ? true : false,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: false,
+ style: {
+ width: '120px'
+ },
+ children: "\u6218\u961F\u8D5B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: true,
+ style: {
+ width: '120px'
+ },
+ children: "\u4E2A\u4EBA\u8D5B"
+ })]
+ })
+ }), form.getFieldValue('personal') == false && /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_model,
+ style: {
+ marginTop: '-2px'
+ },
+ label: " ",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px 0 -50px'
+ },
+ children: "\u5B66\u751F\u6570"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "student_min",
+ rules: [{
+ pattern: new RegExp(/^[0-9]+([.]{1}[0-9]+){0,1}$/, "g"),
+ message: '必须是数值'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ style: {
+ width: '100px'
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px'
+ },
+ children: "\u81F3"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "student_max",
+ rules: [{
+ pattern: new RegExp(/^[0-9]+([.]{1}[0-9]+){0,1}$/, "g"),
+ message: '必须是数值'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ style: {
+ width: '100px'
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px'
+ },
+ children: "\u4EBA"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "student_checkbox",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_checkbox/* default */.Z, {
+ style: {
+ marginLeft: '20px'
+ },
+ checked: student_check,
+ onChange: function onChange(e) {
+ var _e$target4;
+ return setstudentcheck(e === null || e === void 0 ? void 0 : (_e$target4 = e.target) === null || _e$target4 === void 0 ? void 0 : _e$target4.checked);
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u4E0D\u53EF\u5B58\u5728\u591A\u4E2A\u6218\u961F\u4E2D"
+ })
+ })
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: informationmodules.form_item_model,
+ style: {
+ marginTop: '-12px'
+ },
+ label: " ",
+ name: "competition_staffs",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px 0 -50px'
+ },
+ children: "\u6559\u5E08\u6570"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "teacher_min",
+ rules: [{
+ pattern: new RegExp(/^[0-9]+([.]{1}[0-9]+){0,1}$/, "g"),
+ message: '必须是数值'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ style: {
+ width: '100px'
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px'
+ },
+ children: "\u81F3"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "teacher_max",
+ rules: [{
+ pattern: new RegExp(/^[0-9]+([.]{1}[0-9]+){0,1}$/, "g"),
+ message: '必须是数值'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ style: {
+ width: '100px'
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0 10px'
+ },
+ children: "\u4EBA"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "teacher_checkbox",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_checkbox/* default */.Z, {
+ style: {
+ marginLeft: '20px'
+ },
+ checked: teacher_check,
+ onChange: function onChange(e) {
+ var _e$target5;
+ return setteachercheck(e === null || e === void 0 ? void 0 : (_e$target5 = e.target) === null || _e$target5 === void 0 ? void 0 : _e$target5.checked);
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u4E0D\u53EF\u5B58\u5728\u591A\u4E2A\u6218\u961F\u4E2D"
+ })
+ })
+ })]
+ })
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: informationmodules.footer,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(AsyncButton/* AsyncButton */.Z, {
+ className: informationmodules.save_button,
+ htmlType: "submit",
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ })),
+ children: "\u4FDD\u5B58\u66F4\u6539"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ centered: true,
+ title: "\u4EE5\u4E0B\u6570\u636E\u5BFC\u5165\u5931\u8D25",
+ open: showFailed,
+ okText: "\u786E\u5B9A",
+ cancelText: "\u53D6\u6D88",
+ onOk: function onOk() {
+ setShowFailed(false);
+ },
+ onCancel: function onCancel() {
+ setShowFailed(false);
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ bordered: true,
+ columns: [{
+ title: '手机号',
+ dataIndex: 'phone'
+ }, {
+ title: '姓名',
+ dataIndex: 'name'
+ }, {
+ title: '邮箱',
+ dataIndex: 'email'
+ }],
+ dataSource: dataSource,
+ pagination: false,
+ rowKey: function rowKey(record) {
+ return record.name;
+ }
+ })
+ })]
+ });
+};
+/* harmony default export */ var information = ((0,_umi_production_exports.connect)(function (_ref5) {
+ var competitions = _ref5.competitions;
+ return {
+ competitions: competitions
+ };
+})(informationPage));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/picture/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var picturemodules = ({"flex_box_center":"flex_box_center___TUtVx","flex_space_between":"flex_space_between___skxVP","flex_box_vertical_center":"flex_box_vertical_center____enb6","flex_box_center_end":"flex_box_center_end___lO_Gq","flex_box_column":"flex_box_column___QrhZ_","all":"all___GiQqZ","title":"title___YtceA","content":"content___Es9RO","content_icon":"content_icon___SNFzF","content_info":"content_info___rSAWs","content_title":"content_title___Hkmmk","content_size":"content_size___jLmmn","content_img":"content_img___NRn9i","content_img2":"content_img2___D23TM"});
+;// CONCATENATED MODULE: ./src/assets/images/icons/img_setting.png
+var img_setting_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAA+9JREFUWEeVl12IVVUUx39rnyuj2UswQiEp1osURFESPoimkPgShJMQQ2UFDsOoEYmOn4yUToXcoSxNsYJewg+klxgJJ8GnqPzoSURUQh998MGBKWdcsvc959599t3nwwuXc+496+z1X//1LXqEXv7jMLCGhLkIkAAm/drf2b292mfhf/7z2L2V1/Q93P0khnGUQdEmJxH6ckoyBb6yR1WcGeJfW8pbBrSup0QPcA9hbs5inwFrkc9KeP8orESYEP0CzVkfUuhb4CvLQMYAlbkkACE6WgGg6LAqN4Uu839nICy5ug/NBVaRr8vckL0TshKy5xtjnzkAn3kMxKyqivDwUMMUDf5CmCFhCaTx5YPM9DgAeyMuKKMvUxhjSrhAD2tlLf+6gD/DU0xxnIRl7UAOjBQdCQD4AlkG1Iv0+xgWSz83WuS2PvorTzLNNQyPd6V6YhnYE7igyo/F9eCCvMcrvvI2iF84i7Aqx0KqR3RXrSx4gEHSb6cu5Om8KO/zchTAaSYQVnalu1gGdlQASFyWLEe4heEs8Gw7a/Js3aeH56WfazkXnGA+wlWMV+y8wBUdDgB0U/y7DLPK+XOMFzH8gdDTVR1bcXIZQ5+s57qT/5mngeMYlhYVO9GtXh2I+bfBRhnm27Y/xxgCvmk3rLB5Gf7HOCAzCC9hmF3WwES3FBQiC8bSP4sFso3bOVqbnMbwZiyqo5bGGlPqBtFP0K7o7LTbP2WEV8PA0kM8wRSXMCysVBj2j6A6in6cxkA3lZaB7TLC59HIHmMpcB5DIzofJPyEcBfDZgeyoJSLflSQBfaFOSyW3VyNAXBBdoBhDKNtFjrl9ksZYJuT+YETGN6KtnuXhpsilbDl/yuyn+eKlLvDrfOanMHwepuFhAnmsVrWMeNkfmQFyrkiV4kOFTDQYL+MsrMMgFPwNfOYdpXuBYSLzGG1DHCnnTUW5Pdcx7AoBkJ0sADAbJbIPv6uApAyYTjIIjZxU4QHXUF7jD0Ie2OxIjoQSUPDLWmyoI7yOjJ6jIUoNxFXzltDbhovohsi88AsDkqTzXUOryujR5kAVoZFSfTDFIA/MCQMyVccqnt4HTn9jk8RdnnB6lJT9INoDIzTyxsywnSdw6tk9BwNrvAbwmthOoquL6wDN2jwTzpadZaRol3BLzT5nmIbuW1iz8TngXdrzQPxSlY2Q9ZZZJwL3gl6QdFqFdsD/PUtNnTWGOVE+1MAZcNmFahwduyelDv7pr9Xupnwbe65aaVshi+jM2xivoKMAR9g3tBJ0XWcJKEvTI/cwOFbVGdxKVvv8kvMKctAL8phDGvcEhFTUGdPKHJTfB6YRBjnMQYfAr/L5O84EyIQAAAAAElFTkSuQmCC";
+// EXTERNAL MODULE: ./src/utils/fetch.ts
+var fetch = __webpack_require__(84519);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/picture/index.tsx
+
+
+
+
+
+
+var picture_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+var picturePage = function picturePage(_ref) {
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, picture_excluded);
+ var _useState = (0,react.useState)(''),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ competitionimg = _useState2[0],
+ setcompetitionimg = _useState2[1];
+ var _useState3 = (0,react.useState)(''),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ qrcodeimg = _useState4[0],
+ setqrcodeimg = _useState4[1];
+ (0,react.useEffect)(function () {
+ queryImg();
+ }, []);
+ var queryImg = function queryImg() {
+ (0,service_competitions/* get_picture */.Mn)(props === null || props === void 0 ? void 0 : props.competitionId).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ var _res$data, _res$data2;
+ setcompetitionimg(res === null || res === void 0 ? void 0 : (_res$data = res.data) === null || _res$data === void 0 ? void 0 : _res$data.competition_image);
+ setqrcodeimg(res === null || res === void 0 ? void 0 : (_res$data2 = res.data) === null || _res$data2 === void 0 ? void 0 : _res$data2.qr_code_image);
+ props === null || props === void 0 ? void 0 : props.loadingFunction(false);
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ };
+ var _customRequest = function customRequest(file, type) {
+ // let formData = new FormData();
+ // formData.append("file", file?.file);
+ // common_header(props?.competitionId).then((res) => {
+ // fetch(ENV.PROXY_SERVER + `/api/competitions/set_attachments.json?source_id=${res?.id}&source_type=${type}`, {
+ // method: 'post',
+ // body: formData,
+ // }).then(res => res.json())
+ // .then((res) => {
+ // if (res?.message == 'success') {
+ // message.success('上传成功')
+ // queryImg();
+ // } else {
+ // message.error(res?.message)
+ // }
+ // })
+ // })
+ (0,service_competitions/* common_header */.o3)(props === null || props === void 0 ? void 0 : props.competitionId).then(function (res) {
+ var formData = new FormData();
+ formData.append("file", file === null || file === void 0 ? void 0 : file.file);
+ formData.append("source_id", res === null || res === void 0 ? void 0 : res.id);
+ formData.append("source_type", type);
+ (0,fetch/* default */.ZP)("/api/competitions/set_attachments.json", {
+ method: 'post',
+ body: formData
+ }, true).then(function (resImg) {
+ if ((resImg === null || resImg === void 0 ? void 0 : resImg.message) == 'success') {
+ message/* default.success */.ZP.success('上传成功');
+ queryImg();
+ dispatch({
+ type: 'competitions/getStaff',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ } else {
+ message/* default.error */.ZP.error(resImg === null || resImg === void 0 ? void 0 : resImg.message);
+ }
+ });
+ });
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: picturemodules.all,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: picturemodules.title,
+ children: "\u4E0A\u4F20\u56FE\u7247"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: picturemodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: img_setting_namespaceObject,
+ className: picturemodules.content_icon
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: picturemodules.content_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(upload/* default */.Z, {
+ accept: "image/*",
+ customRequest: function customRequest(e) {
+ return _customRequest(e, 'Competition');
+ },
+ showUploadList: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: picturemodules.content_title,
+ children: "\u4E0A\u4F20\u7ADE\u8D5B\u5C01\u9762\u56FE"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: picturemodules.content_size,
+ children: "\u56FE\u7247\u5C3A\u5BF8\uFF1A792 x 340"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + competitionimg,
+ className: picturemodules.content_img
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: picturemodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: img_setting_namespaceObject,
+ className: picturemodules.content_icon
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: picturemodules.content_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(upload/* default */.Z, {
+ accept: "image/*",
+ customRequest: function customRequest(e) {
+ return _customRequest(e, 'Competition_code');
+ },
+ showUploadList: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: picturemodules.content_title,
+ children: "\u4E0A\u4F20\u4EA4\u6D41\u7FA4\u4E8C\u7EF4\u7801"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: picturemodules.content_size,
+ children: "\u56FE\u7247\u5C3A\u5BF8\uFF1A160 x 160"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + qrcodeimg,
+ className: picturemodules.content_img2
+ })]
+ })]
+ });
+};
+/* harmony default export */ var picture = ((0,_umi_production_exports.connect)(function (_ref2) {
+ var competitions = _ref2.competitions,
+ loading = _ref2.loading,
+ globalSetting = _ref2.globalSetting,
+ user = _ref2.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(picturePage));
+// EXTERNAL MODULE: ./node_modules/antd/es/input-number/style/index.js + 1 modules
+var input_number_style = __webpack_require__(25359);
+// EXTERNAL MODULE: ./node_modules/antd/es/input-number/index.js + 9 modules
+var input_number = __webpack_require__(87799);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/toConsumableArray.js
+var toConsumableArray = __webpack_require__(861);
+var toConsumableArray_default = /*#__PURE__*/__webpack_require__.n(toConsumableArray);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/questions/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var questionsmodules = ({"flex_box_center":"flex_box_center___TOLos","flex_space_between":"flex_space_between___kPNcF","flex_box_vertical_center":"flex_box_vertical_center___rUvwU","flex_box_center_end":"flex_box_center_end_____Cr_","flex_box_column":"flex_box_column___UubjA","all":"all___d1AWD","title":"title___VIjuM","add_people":"add_people___qkPex","people_icon":"people_icon___lz5gl","content":"content___a8dSX","content_info":"content_info___ekLIa","info_icon":"info_icon___kXP8P","info_title":"info_title___Hld67","info_content":"info_content___kbIuT","info_content_icon":"info_content_icon___uNxzs","info_content_title":"info_content_title___IfIi8","info_open":"info_open___NzrUi","info_delete":"info_delete___rZhhO","questions_info":"questions_info___n9Fnq","form_item":"form_item___oxzha","form_item_item":"form_item_item___yPf7l","form_item_small":"form_item_small___EkG9G","guanka_title":"guanka_title___uUWQl","form_item_item_small":"form_item_item_small___fKhrW","guanka_icon":"guanka_icon___fBudt","nandu_1":"nandu_1___qifbd","nandu_2":"nandu_2___qVJU8","nandu_3":"nandu_3___NRfLL","close_icon":"close_icon___f2hON","footer":"footer___UDiYB","clear_button":"clear_button___HQIfB","save_button":"save_button___t7iMm"});
+;// CONCATENATED MODULE: ./src/assets/images/icons/question_setting.png
+var question_setting_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAAXNSR0IArs4c6QAAA0JJREFUSEullk2ITlEYx3/PufdlxAYrTKyUhcgkG2LQzMbGhkJMyUca32mMyVdoMrOgoSkTZXxEmY2NDU1RWChEdlaEsfBZihozj+597533vOeee+ctb93e+3HO83/O//k/HwKgF6hH6CagEWEGAWByruibQO6agJ+E9MgqTkS23Z/EYH95RcC0DMh4xiOnbOfS+8ghw15p4mIWsJtbBGyIvU5PlW60DbiGfeuj/enpA4YpsUpW8tgGFT3LJ0xCYxFVrjMu5f4wfGYSDbKcoRRUtBP1xsQ1UE3vo2TPiqow+EPwlOk0ymKGI1DR02gchwoVlXv7xPZ9idWxx4bBjLO2rYrNXmlmdxnwFDrmZR6l1fF7IttYFqv7Go8JWFqTokNapInroicsQFd1dtxSZ0KaZTsPYsAbNDHK/QytvvgKvymxVPRYAphS4YqjAvQdYVBaWWerTvsZwLAaw9QYOFWvTwOGQdGOJIa2V2Xw55ToQXjLRN7Kbr76Ejl9p9eYTsDc+DLsBxqqtFG2PyLa7gEsUxvFdqe0c7kIyP2mN9mOoQ+D+NQv2uZQWq1YJWSPtNFbC6j204rhYgzli7+JVHqoBtEYDsoRzhdSeoUDwLmCGhtXMtEDOZRmy9wcaee9D1T7mI3ybixmrh4sQYrucxLfXVxW3h/mMUXWM+IFvEPAF35hqMvUYydFRPcUxDBdHPJSjtNQSGkvL4BFXkotXYi2OjH0JX/IDTnJljjZu1jCCJ2EQEiHHORZ0lOvY9icW3USu6K7LMDqflbudVEihxymxD1GOYNhrVN772I4SsAahK5M8js1WnSHIxq7nlaqxWsC5sditxmoVJVRAt4gLBj7nlOXRbdZMRxvrPB1+Fp7aOKc6FaH0qKOkdeucpLcV9RFWxxKff0sW2eLhih/P01siG7JqPQ0M+mUk/yppZzlrdGr1PGDDoRjdqqIbnIAJ1Ivl/j4P2BjHeQcs4APtqpFN/LJmUUHEHqYkJywlGxP/6PHWt4FcdXZB6yzlD0kuj4ZE/Maryui8WbVvNGybP92RGl5EDbOIFyL4bzunqZPdU5/o8TC6BUx6AjdCI3xjFqkyqIT+1IqYAjhIZNpk718+AfZ8LVXyCfCsQAAAABJRU5ErkJggg==";
+;// CONCATENATED MODULE: ./src/assets/images/icons/add_img.png
+var add_img_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAF9JREFUOE9jZKAQMOLTb5B0voHhH8OBCwsMD+BSR9gABgaGC/MMG0YNIBAGBgnnHRiYGBwwAuo/oz1YjPH/QWyBCApccCyAowsbwGcANHpHo5GBgcZhAI1esvMCMTkdAHAwQhEikgNIAAAAAElFTkSuQmCC";
+;// CONCATENATED MODULE: ./src/assets/images/icons/html_img.png
+var html_img_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAAXNSR0IArs4c6QAAAnZJREFUSEvtlk1IVFEUx39n3gwpUxKEM35QEU3QJlxYK8FNtWjhJqhFOH4UCBl9UCQVYdMmSLLAQkhJxRmKCipy2yKpTdEH7oSipKAZx00Uhc3MeyfupOGMPS0ZBgLf7t177v2d8z/n3nsEoDKsW23YB2xQ8JqxQn0CGeC9BTfjUXkhBpaBc4UCLLSPF85LIKyXFTYVAyjwxgDvF1pGN+eNvFIe1pFiRDfLWAYWXO3/TlKdkUD+VorFIhzzQI8qNSocydlUSJT66chMszKdoVeUnjLl2VeLVkfZ4Xo0XI6FinK7PcStSESc6iZdk1KG8oAXp4blaXmjhhCueJWueEyeGJtgs25Xh4MKK/LB8yIU+GIp3fGYvMouDmvAUc4gbJyz+G1ymOMiooEmjahSK/DDA1cTURnN3s8HdL2d5rQq1XOh84A+4dCnYflgjAKNWoPQoVCWs0g5m4zJWLBFtzg2F+bOeeBhfQMDd/eKHQyr34EbgN/14K8rZffLPklXNmu9rZxQxZMHe52MSWfWIZd72AMPJqNiQMbmukKVK9BvEZ4Yks+1ber7+J1WFRpyIvBxdHJA3gWatU4dTuXnyFLubQ4RfRyRjIlQhX5VVrkCRRj3WHQlBmXKGFW06DbH5piRVZTRZEwu7bmj1ugIvTmem9x76Y4P/sr92v1aNZ3mJBBaMIczk98QrpkqNP+zlWhZHE4MyURFk+6ylfY/5XUm9zuBNhVKFq3SHPmER1YJ/ekUZdj0e6DPZzGecuhUZXUOEAZ9Ds9TFo0odf96Dn/bm3IHrEK9mYvdNG6OLnl8Gbhk6VyLpuhNVNHbxKI3wtmnpIit/k8rJx6Q0AVqRgAAAABJRU5ErkJggg==";
+// EXTERNAL MODULE: ./node_modules/antd/es/drawer/style/index.js + 1 modules
+var drawer_style = __webpack_require__(11400);
+// EXTERNAL MODULE: ./node_modules/antd/es/drawer/index.js + 6 modules
+var drawer = __webpack_require__(63463);
+// EXTERNAL MODULE: ./node_modules/antd/es/pagination/style/index.js + 1 modules
+var pagination_style = __webpack_require__(14182);
+// EXTERNAL MODULE: ./node_modules/antd/es/pagination/index.js + 10 modules
+var pagination = __webpack_require__(260);
+// EXTERNAL MODULE: ./node_modules/antd/es/divider/style/index.js + 1 modules
+var divider_style = __webpack_require__(98541);
+// EXTERNAL MODULE: ./node_modules/antd/es/divider/index.js
+var divider = __webpack_require__(27049);
+// EXTERNAL MODULE: ./node_modules/antd/es/row/style/index.js
+var row_style = __webpack_require__(13062);
+// EXTERNAL MODULE: ./node_modules/antd/es/row/index.js
+var row = __webpack_require__(71230);
+// EXTERNAL MODULE: ./node_modules/antd/es/col/style/index.js
+var col_style = __webpack_require__(89032);
+// EXTERNAL MODULE: ./node_modules/antd/es/col/index.js
+var col = __webpack_require__(15746);
+// EXTERNAL MODULE: ./src/components/NoData/index.tsx
+var NoData = __webpack_require__(82982);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/questions/SelectShixun.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var SelectShixunmodules = ({"flex_box_center":"flex_box_center___xWeOt","flex_space_between":"flex_space_between___Tvggn","flex_box_vertical_center":"flex_box_vertical_center___kWgd3","flex_box_center_end":"flex_box_center_end___akdCb","flex_box_column":"flex_box_column___TjkcQ","wrp":"wrp___vIMBU","drawer":"drawer___HuOiD","menu":"menu___JTt0c","actived":"actived___zd6GY","actived2":"actived2___hNW2h","subTag":"subTag___rHkqz","listItem":"listItem___dr1wg","listItem2":"listItem2___QY8YQ","info":"info___bpBpK","title":"title___typIH","titleLeft":"titleLeft___b4niC","titleRight":"titleRight___odd4D","search":"search___HtgNb","filter":"filter___HBJIT","description":"description___Rqa6Q","menuCourse":"menuCourse____Msk3","button_right":"button_right___T8tiB"});
+// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules
+var verifyLogin = __webpack_require__(7303);
+// EXTERNAL MODULE: ./src/components/FormSearch/index.tsx + 1 modules
+var FormSearch = __webpack_require__(33722);
+// EXTERNAL MODULE: ./src/utils/authority.ts
+var authority = __webpack_require__(7);
+// EXTERNAL MODULE: ./src/components/ReuseShixunModal/index.tsx + 1 modules
+var ReuseShixunModal = __webpack_require__(60696);
+// EXTERNAL MODULE: ./src/service/global.ts
+var global = __webpack_require__(98706);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/questions/SelectShixun.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var SelectShixun_excluded = ["classroomList", "loading", "dispatch", "shixunsList"];
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Search = input/* default.Search */.Z.Search;
+var shixunFilter = [{
+ id: "type",
+ name: "来源",
+ children: [{
+ name: "全部",
+ id: "all",
+ type: "type"
+ }, {
+ name: "我的",
+ id: "mine",
+ type: "type"
+ }]
+}, {
+ id: "diff",
+ name: "难度",
+ children: [{
+ name: "全部",
+ id: "",
+ type: "diff"
+ }, {
+ name: "初级",
+ id: 1,
+ type: "diff"
+ }, {
+ name: "中级",
+ id: 2,
+ type: "diff"
+ }, {
+ name: "中高级",
+ id: 3,
+ type: "diff"
+ }, {
+ name: "高级",
+ id: 4,
+ type: "diff"
+ }]
+}];
+var Publishquetions = function Publishquetions(_ref) {
+ var _data$shixun_list2, _data$shixun_list3;
+ var classroomList = _ref.classroomList,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ shixunsList = _ref.shixunsList,
+ props = objectWithoutProperties_default()(_ref, SelectShixun_excluded);
+ var _useState = (0,react.useState)(objectSpread2_default()({}, (0,_umi_production_exports.useParams)())),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ params = _useState2[0],
+ setParams = _useState2[1];
+ // const location: any = useLocation();
+ // const { actionTabs } = classroomList;
+ // const [form]: any = Form.useForm();
+ var shixunLists = classroomList.shixunLists,
+ shixunAiRecommendLists = classroomList.shixunAiRecommendLists;
+ var _useState3 = (0,react.useState)(''),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ selectArrs = _useState4[0],
+ setSelectArrs = _useState4[1];
+ var _useState5 = (0,react.useState)({}),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ data = _useState6[0],
+ setData = _useState6[1];
+ var _useState7 = (0,react.useState)([]),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ groupsData = _useState8[0],
+ setGroupsData = _useState8[1];
+ var _useState9 = (0,react.useState)(false),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ isLoading = _useState10[0],
+ setIsLoading = _useState10[1];
+ var dataType = [
+ // isSuperAdmin() && { name: '推荐', id: 'recommend' },
+ {
+ name: '最新',
+ id: 'created_at'
+ }, {
+ name: '最热',
+ id: 'myshixuns_count'
+ }].filter(function (item) {
+ return !!item;
+ });
+ var _useState11 = (0,react.useState)({
+ page: 1,
+ type: "mine",
+ diff: "",
+ status: "published",
+ order: "desc",
+ not_open: true,
+ limit: 20,
+ // sort: isSuperAdmin() ? "recommend" : "myshixuns_count",
+ sort: 'myshixuns_count',
+ no_jupyter: 1,
+ group_id: null
+ }),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ query = _useState12[0],
+ setQuery = _useState12[1];
+ (0,react.useEffect)(function () {
+ getData();
+ }, [params.coursesId, query]);
+ (0,react.useEffect)(function () {
+ if (classroomList.actionTabs.key === '新增赛题') {
+ setSelectArrs('');
+ }
+ dispatch({
+ type: 'shixunsList/getMenus',
+ payload: {}
+ });
+ }, [classroomList.actionTabs.key]);
+ (0,react.useEffect)(function () {
+ if (shixunLists !== null && shixunLists !== void 0 && shixunLists.shixun_list || shixunAiRecommendLists !== null && shixunAiRecommendLists !== void 0 && shixunAiRecommendLists.shixun_list) {
+ setData(query.sort === 'recommend' ? shixunAiRecommendLists : shixunLists);
+ }
+ }, [shixunLists, shixunAiRecommendLists]);
+ var getData = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var querys, re, result;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ setIsLoading(true);
+ querys = objectSpread2_default()({}, query);
+ if (query.sort === 'recommend') querys.sort = 'myshixuns_count';
+ if (!(query.sort === 'recommend')) {
+ _context.next = 8;
+ break;
+ }
+ _context.next = 6;
+ return dispatch({
+ type: 'classroomList/getShixunAiRecommendLists',
+ payload: objectSpread2_default()(objectSpread2_default()({}, querys), {}, {
+ course_id: params.coursesId
+ })
+ });
+ case 6:
+ _context.next = 11;
+ break;
+ case 8:
+ re = objectSpread2_default()({}, querys);
+ _context.next = 11;
+ return dispatch({
+ type: 'classroomList/getShixunLists',
+ payload: re
+ });
+ case 11:
+ _context.next = 13;
+ return (0,fetch/* default */.ZP)("/api/users/user_setting_groups.json", {
+ method: 'get',
+ params: {
+ type: 'Shixun'
+ }
+ });
+ case 13:
+ result = _context.sent;
+ setGroupsData([{
+ id: null,
+ name: "全部"
+ }, {
+ id: -1,
+ name: "未加入目录"
+ }].concat(toConsumableArray_default()((result === null || result === void 0 ? void 0 : result.groups) || [])));
+ setSelectArrs('');
+ setIsLoading(false);
+ case 17:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function getData() {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ if (classroomList.actionTabs.key === '选用实践课程') return;
+ // useEffect(() => {
+ // document.body.setAttribute('data-custom', 'height');
+ // return () => {
+ // document.body.removeAttribute('data-custom');
+ // }
+ // }, [])
+
+ var _useReuseModal = (0,ReuseShixunModal/* useReuseModal */.P)(),
+ _useReuseModal2 = slicedToArray_default()(_useReuseModal, 4),
+ reuseModalVisible = _useReuseModal2[0],
+ closeReuseModal = _useReuseModal2[1],
+ renderData = _useReuseModal2[2],
+ showReuseModal = _useReuseModal2[3];
+ var reuseModalCallback = /*#__PURE__*/function () {
+ var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2(shixunList) {
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ (0,service_competitions/* shixun_add */.su)({
+ id: props === null || props === void 0 ? void 0 : props.competitionId,
+ shixun_ids: shixunList.map(function (shixunItem) {
+ return shixunItem.id;
+ })
+ }).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ message/* default.success */.ZP.success('添加成功');
+ dispatch({
+ type: 'classroomList/setActionTabs',
+ payload: {}
+ });
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ props === null || props === void 0 ? void 0 : props.queryQuetions();
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ case 1:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return function reuseModalCallback(_x) {
+ return _ref3.apply(this, arguments);
+ };
+ }();
+ var _useState13 = (0,react.useState)(false),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ btnLoading = _useState14[0],
+ setBtnLoading = _useState14[1];
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(drawer/* default */.Z, {
+ title: "\u9009\u7528\u5B9E\u8DF5\u9879\u76EE",
+ placement: "bottom",
+ height: "100%",
+ closable: true
+ // style={{ zIndex: 9999 }}
+ ,
+ open: classroomList.actionTabs.key === '新增赛题' ? true : false,
+ className: SelectShixunmodules.drawer,
+ destroyOnClose: true,
+ onClose: function onClose() {
+ dispatch({
+ type: 'classroomList/setActionTabs',
+ payload: {
+ key: ''
+ }
+ });
+ },
+ footer: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "tc",
+ style: {
+ height: '64px',
+ display: 'flex',
+ alignItems: 'center',
+ justifyContent: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ size: "large",
+ onClick: function onClick() {
+ dispatch({
+ type: 'classroomList/setActionTabs',
+ payload: {}
+ });
+ },
+ style: {
+ marginRight: 8,
+ width: '120px',
+ height: '40px',
+ fontSize: '16px',
+ borderRadius: '4px'
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ style: {
+ width: '120px',
+ height: '40px',
+ fontSize: '16px',
+ borderRadius: '4px'
+ },
+ size: "large",
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ var _data$shixun_list, reqParams;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ if (!selectArrs) {
+ _context3.next = 8;
+ break;
+ }
+ setBtnLoading(true);
+ reqParams = data === null || data === void 0 ? void 0 : (_data$shixun_list = data.shixun_list) === null || _data$shixun_list === void 0 ? void 0 : _data$shixun_list.filter(function (item) {
+ return selectArrs.includes(item.identifier);
+ }).map(function (selectedShixun) {
+ return {
+ id: selectedShixun.id,
+ is_copy: 0,
+ is_use: 1
+ };
+ });
+ _context3.next = 5;
+ return reuseModalCallback(reqParams);
+ case 5:
+ setBtnLoading(false);
+ _context3.next = 9;
+ break;
+ case 8:
+ message/* default.error */.ZP.error('请选择实践项目');
+ case 9:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ })),
+ type: "primary",
+ loading: btnLoading,
+ children: "\u786E\u5B9A"
+ })]
+ }),
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("section", {
+ className: "tc",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(FormSearch/* default */.Z, {
+ onChange: function onChange(v) {
+ if (v !== null && v !== void 0 && v.keyword.trim()) {
+ (0,global/* addSearchRecord */.tk)({
+ name: v === null || v === void 0 ? void 0 : v.keyword.trim(),
+ copywriting: v === null || v === void 0 ? void 0 : v.keyword.trim(),
+ position: 'Shixun'
+ });
+ }
+ setQuery(objectSpread2_default()(objectSpread2_default()({}, query), {}, {
+ keyword: v === null || v === void 0 ? void 0 : v.keyword.trim(),
+ schools: v === null || v === void 0 ? void 0 : v.schools.trim(),
+ creator: v === null || v === void 0 ? void 0 : v.creator.trim(),
+ page: 1
+ }));
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("section", {
+ className: "edu-container",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: isLoading,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("aside", {
+ children: [shixunFilter.map(function (v, k) {
+ var _v$children;
+ if (k !== 0) return null;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("ul", {
+ className: SelectShixunmodules.menu,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: v.name
+ }), v === null || v === void 0 ? void 0 : (_v$children = v.children) === null || _v$children === void 0 ? void 0 : _v$children.map(function (val, key) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: query[v.id] == val.id ? SelectShixunmodules.actived : '',
+ onClick: function onClick() {
+ query[v.id] = val.id;
+ query.page = 1;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ children: val.name
+ })
+ }, key);
+ })]
+ }, k);
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("ul", {
+ className: SelectShixunmodules.menu,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: "\u65B9\u5411"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: !(query !== null && query !== void 0 && query.discipline_id) ? SelectShixunmodules.actived : '',
+ onClick: function onClick() {
+ delete query.tag_level;
+ delete query.sub_discipline_id;
+ delete query.discipline_id;
+ query.page = 1;
+ setQuery(objectSpread2_default()({}, query));
+ // menuChange(null, null, null)
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ children: "\u5168\u90E8"
+ })
+ }), shixunsList.menus && shixunsList.menus.map(function (v, k) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("li", {
+ className: (query === null || query === void 0 ? void 0 : query.discipline_id) == v.id ? SelectShixunmodules.actived : '',
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ onClick: function onClick() {
+ // menuChange(1, v.id, v.id)
+ query.tag_level = 1;
+ query.discipline_id = v.id;
+ delete query.sub_discipline_id;
+ query.page = 1;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: v.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: v.sub_repertoires.map(function (val, key) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "mt5",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: (query === null || query === void 0 ? void 0 : query.sub_discipline_id) == val.id && query.tag_level === 2 ? "".concat(SelectShixunmodules.actived2, " ").concat(SelectShixunmodules.subTag) : SelectShixunmodules.subTag,
+ onClick: function onClick() {
+ query.tag_level = 2;
+ query.discipline_id = v.id;
+ query.sub_discipline_id = val.id;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: val.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("ul", {
+ className: "mt5",
+ children: val.tags && val.tags.map(function (value, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: query.sub_discipline_id == value.id && query.tag_level === 3 ? SelectShixunmodules.actived2 : '',
+ onClick: function onClick() {
+ query.tag_level = 3;
+ query.discipline_id = v.id;
+ query.sub_discipline_id = value.id;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: value.name
+ }, index);
+ })
+ })]
+ }, key);
+ })
+ })]
+ }, k);
+ })]
+ }), query.type === 'mine' && /*#__PURE__*/(0,jsx_runtime.jsxs)("ul", {
+ className: SelectShixunmodules.menu,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: "\u76EE\u5F55"
+ }), groupsData === null || groupsData === void 0 ? void 0 : groupsData.map(function (val, key) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: query['group_id'] == val.id ? SelectShixunmodules.actived : '',
+ onClick: function onClick() {
+ query['group_id'] = val.id;
+ query.page = 1;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ children: val.name
+ })
+ }, key);
+ })]
+ }), shixunFilter.map(function (v, k) {
+ var _v$children2;
+ if (k !== 1) return null;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("ul", {
+ className: SelectShixunmodules.menu,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: v.name
+ }), v === null || v === void 0 ? void 0 : (_v$children2 = v.children) === null || _v$children2 === void 0 ? void 0 : _v$children2.map(function (val, key) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: query[v.id] == val.id ? SelectShixunmodules.actived : '',
+ onClick: function onClick() {
+ query[v.id] = val.id;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ children: val.name
+ })
+ }, key);
+ })]
+ }, k);
+ }), (query === null || query === void 0 ? void 0 : query.type) == 'mine' && /*#__PURE__*/(0,jsx_runtime.jsxs)("ul", {
+ className: SelectShixunmodules.menu,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ children: "\u72B6\u6001"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: query['not_open'] == false ? SelectShixunmodules.actived : '',
+ onClick: function onClick() {
+ query['not_open'] = false;
+ query.page = 1;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ children: "\u516C\u5F00"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("li", {
+ className: query['not_open'] == true ? SelectShixunmodules.actived : '',
+ onClick: function onClick() {
+ query['not_open'] = true;
+ query.page = 1;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ children: "\u672A\u516C\u5F00"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: "1",
+ className: SelectShixunmodules.filter,
+ children: dataType.map(function (v, k) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: "mr20",
+ type: query.sort === v.id ? 'primary' : 'default',
+ onClick: function onClick() {
+ query.sort = v.id;
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: v.name
+ }, k);
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ className: "c-grey-999",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: SelectShixunmodules.menuCourse,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("ul", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("li", {
+ children: ["\u5DF2\u9009", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "c-blue",
+ children: selectArrs.length
+ }), "\u4E2A\u5B9E\u8BAD"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("li", {
+ children: ["\u5171", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "c-blue",
+ children: data.shixuns_count
+ }), "\u4E2A\u8BFE\u7A0B"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("li", {
+ className: "current",
+ onClick: function onClick() {
+ query.order = query.order === 'asc' ? "desc" : "asc";
+ setQuery(objectSpread2_default()({}, query));
+ },
+ children: ["\u5B66\u4E60\u4EBA\u6570", /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ className: "edu-sorter current ".concat(query.order),
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "iconfont icon-sanjiaoxing-up"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "iconfont icon-sanjiaoxing-down"
+ })]
+ })]
+ })]
+ })
+ })
+ })]
+ }), (data === null || data === void 0 ? void 0 : (_data$shixun_list2 = data.shixun_list) === null || _data$shixun_list2 === void 0 ? void 0 : _data$shixun_list2.length) === 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default.Group */.ZP.Group, {
+ style: {
+ display: 'block'
+ },
+ value: selectArrs,
+ onChange: function onChange(checkedValues) {
+ setSelectArrs(checkedValues.target.value);
+ },
+ children: data === null || data === void 0 ? void 0 : (_data$shixun_list3 = data.shixun_list) === null || _data$shixun_list3 === void 0 ? void 0 : _data$shixun_list3.map(function (v, k) {
+ var _v$content, _v$content2, _v$content2$author_na;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: SelectShixunmodules.listItem,
+ style: {
+ cursor: 'auto'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: v === null || v === void 0 ? void 0 : v.identifier,
+ style: {
+ marginTop: '3px'
+ },
+ disabled: v === null || v === void 0 ? void 0 : v.need_authorize,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: SelectShixunmodules.info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: SelectShixunmodules.title,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: SelectShixunmodules.titleLeft,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(_umi_production_exports.Link, {
+ to: "/shixuns/".concat(v.identifier, "/challenges"),
+ target: "_blank",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("strong", {
+ className: "font16",
+ dangerouslySetInnerHTML: {
+ __html: v.title
+ }
+ })
+ }), (v === null || v === void 0 ? void 0 : v.need_authorize) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ (0,verifyLogin/* AuthorizeModel */.rX)(false);
+ },
+ style: {
+ marginRight: 'auto'
+ },
+ className: "tag-style bg-pink current ml10",
+ children: "\u9700\u6388\u6743"
+ }), (0,authority/* isSuperAdmins */.Ny)() && (v === null || v === void 0 ? void 0 : v.mark_status) === 1 && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ zIndex: 10000,
+ title: v === null || v === void 0 ? void 0 : v.mark_content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginRight: 'auto',
+ background: '#2FA34F'
+ },
+ className: "tag-style current ml10",
+ children: "\u6B63\u5E38"
+ })
+ }), (0,authority/* isSuperAdmins */.Ny)() && (v === null || v === void 0 ? void 0 : v.mark_status) === 2 && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ zIndex: 10000,
+ title: v === null || v === void 0 ? void 0 : v.mark_content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginRight: 'auto',
+ background: '#FF8C29'
+ },
+ className: "tag-style current ml10",
+ children: "\u9700\u5B8C\u5584"
+ })
+ }), (0,authority/* isSuperAdmins */.Ny)() && (v === null || v === void 0 ? void 0 : v.mark_status) === 3 && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ zIndex: 10000,
+ title: v === null || v === void 0 ? void 0 : v.mark_content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginRight: 'auto',
+ background: '#E53333'
+ },
+ className: "tag-style current ml10",
+ children: "\u65E0\u6CD5\u4F7F\u7528"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ ghost: true,
+ href: "/shixuns/".concat(v.identifier, "/challenges"),
+ type: "primary",
+ target: "_blank",
+ className: SelectShixunmodules.button_right,
+ children: "\u4F53\u9A8C\u5B9E\u8BAD"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "flex-wrp mt10 font14 c-light-black",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: SelectShixunmodules.description,
+ dangerouslySetInnerHTML: {
+ __html: v.description
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: " mt15",
+ children: v.challenge_names.map(function (val, key) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: "mr30",
+ children: ["\u7B2C", key + 1, "\u5173 ", val, " "]
+ }, key);
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(divider/* default */.Z, {
+ dashed: true
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "c-light-black mt20",
+ children: [v !== null && v !== void 0 && (_v$content = v.content) !== null && _v$content !== void 0 && _v$content.author_name ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ dangerouslySetInnerHTML: {
+ __html: v === null || v === void 0 ? void 0 : (_v$content2 = v.content) === null || _v$content2 === void 0 ? void 0 : (_v$content2$author_na = _v$content2.author_name) === null || _v$content2$author_na === void 0 ? void 0 : _v$content2$author_na[0]
+ }
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: v.author_name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "ml15 mr15",
+ children: "|"
+ }), v.author_school_name && /*#__PURE__*/(0,jsx_runtime.jsxs)(react.Fragment, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: v.author_school_name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "ml15 mr15",
+ children: "|"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: ["\u96BE\u5EA6\u7CFB\u6570 ", v.level]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "ml15 mr15",
+ children: "|"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u5B66\u4E60\u4EBA\u6570 "
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: v.study_count
+ })]
+ })]
+ })
+ })
+ }, k);
+ })
+ })]
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "tc mt20",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, {
+ defaultCurrent: 1,
+ hideOnSinglePage: true,
+ defaultPageSize: 20,
+ showSizeChanger: false,
+ current: query.page || 1,
+ showQuickJumper: true,
+ total: data === null || data === void 0 ? void 0 : data.shixuns_count,
+ onChange: function onChange(page) {
+ query.page = page;
+ setQuery(objectSpread2_default()({}, query));
+ }
+ })
+ })]
+ }, "bottom"), /*#__PURE__*/(0,jsx_runtime.jsx)(ReuseShixunModal/* default */.Z, {
+ visible: reuseModalVisible,
+ onCancel: closeReuseModal,
+ renderData: renderData,
+ inPaper: false,
+ onOk: reuseModalCallback,
+ modalType: "multiple",
+ type: "shixun",
+ position: "\u9009\u4E2D\u5B9E\u8BAD"
+ })]
+ });
+};
+/* harmony default export */ var SelectShixun = ((0,_umi_production_exports.connect)(function (_ref5) {
+ var classroomList = _ref5.classroomList,
+ shixunsList = _ref5.shixunsList,
+ loading = _ref5.loading;
+ return {
+ classroomList: classroomList,
+ shixunsList: shixunsList,
+ loading: loading.effects
+ };
+})(Publishquetions));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/questions/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var questions_excluded = ["competitions", "shixunHomeworks", "globalSetting", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+var questionsPage = function questionsPage(_ref) {
+ var competitions = _ref.competitions,
+ shixunHomeworks = _ref.shixunHomeworks,
+ globalSetting = _ref.globalSetting,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, questions_excluded);
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ quetions = _useState2[0],
+ setquetions = _useState2[1];
+ var _useState3 = (0,react.useState)(false),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ disabled = _useState4[0],
+ setDisabled = _useState4[1];
+ var Header = competitions.Header;
+ var _useState5 = (0,react.useState)({}),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ data = _useState6[0],
+ setData = _useState6[1];
+ var addQuetions = function addQuetions() {
+ dispatch({
+ type: 'classroomList/setActionTabs',
+ payload: {
+ key: '新增赛题',
+ params: ''
+ }
+ });
+ };
+ (0,react.useEffect)(function () {
+ queryQuetions();
+ }, []);
+ var calcScore = function calcScore(box) {
+ var _box$challenge_settin;
+ var total_score = box.total_score,
+ difficulty_level_sort = box.difficulty_level_sort;
+ var len = (_box$challenge_settin = box.challenge_settings) === null || _box$challenge_settin === void 0 ? void 0 : _box$challenge_settin.filter(function (item) {
+ return item.checked;
+ }).length;
+ if (!len) {
+ box.challenge_settings.map(function (item, key) {
+ item.challenge_score = 0;
+ });
+ return;
+ }
+ var bonusScore = box.challenge_settings.filter(function (item) {
+ return item.checked;
+ }).map(function (item) {
+ return difficulty_level_sort === 'desc' ? item.challenge_exp_desc : item.challenge_exp;
+ }).reduce(function (total, item) {
+ return total + item;
+ });
+ var scale = total_score / bonusScore;
+ var _key = 0;
+ var _total = 0;
+ var lastScore;
+ switch (box.score_setting) {
+ case 0:
+ var average = parseFloat((total_score / len).toFixed(1));
+ box.challenge_settings.map(function (item, key) {
+ if (item.checked) {
+ _key = key;
+ item.score = average > 0 ? average : 0;
+ } else {
+ item.score = 0;
+ }
+ });
+ lastScore = (total_score - average * (len - 1)).toFixed(1);
+ box.challenge_settings[_key]['score'] = lastScore > 0 ? lastScore : 0;
+ break;
+ case 1:
+ box.challenge_settings.map(function (item, key) {
+ if (item.checked) {
+ _key = key;
+ _total += Number((Math.round((difficulty_level_sort === 'desc' ? item.challenge_exp_desc : item.challenge_exp) * scale * 10) / 10).toFixed(1));
+ item.score = (Math.round((difficulty_level_sort === 'desc' ? item.challenge_exp_desc : item.challenge_exp) * scale * 10) / 10).toFixed(1);
+ } else {
+ item.score = 0;
+ }
+ });
+ var _s = box.challenge_settings[_key]['score'];
+ lastScore = (total_score - _total + Number(_s)).toFixed(1);
+ box.challenge_settings[_key]['score'] = lastScore > 0 ? lastScore : 0;
+ break;
+ }
+ };
+ var queryQuetions = function queryQuetions() {
+ (0,service_competitions/* get_shixun_settings */.lm)(props === null || props === void 0 ? void 0 : props.competitionId).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ if (!(res !== null && res !== void 0 && res.data)) {
+ setquetions([]);
+ } else {
+ var obj = res === null || res === void 0 ? void 0 : res.data;
+ for (var i in obj) {
+ obj[i].show_info = false;
+ }
+ setquetions(obj);
+ }
+ props === null || props === void 0 ? void 0 : props.loadingFunction(false);
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ };
+ var deleteData = function deleteData(id) {
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ okText: '确定',
+ cancelText: '取消',
+ title: '删除提示',
+ icon: null,
+ content: '删除该赛题后,数据不可恢复,请确认是否删除?',
+ onOk: function () {
+ var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ (0,service_competitions/* shixun_delete */.pS)({
+ id: props === null || props === void 0 ? void 0 : props.competitionId,
+ data_id: id
+ }).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ message/* default.success */.ZP.success('删除成功');
+ queryQuetions();
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ case 1:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ function onOk() {
+ return _onOk.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ };
+ var showAll = function showAll(data, type) {
+ var obj = quetions;
+ for (var i in obj) {
+ if (obj[i].id == data.id) {
+ if (type == 'open') {
+ obj[i].show_info = true;
+ } else if (type == 'close') {
+ obj[i].show_info = false;
+ }
+ }
+ }
+ setquetions(toConsumableArray_default()(obj));
+ };
+
+ //校验弹框
+ var setVerify = function setVerify(bodyData) {
+ var message_list = [];
+ for (var i in bodyData) {
+ var _bodyData$i, _bodyData$i$challenge, _bodyData$i2, _bodyData$i2$total_sc;
+ var numbers = (_bodyData$i = bodyData[i]) === null || _bodyData$i === void 0 ? void 0 : (_bodyData$i$challenge = _bodyData$i.challenge_settings) === null || _bodyData$i$challenge === void 0 ? void 0 : _bodyData$i$challenge.reduce(function (t, n) {
+ return t + Number(n.score);
+ }, 0);
+ if ((numbers === null || numbers === void 0 ? void 0 : numbers.toFixed(10)) !== ((_bodyData$i2 = bodyData[i]) === null || _bodyData$i2 === void 0 ? void 0 : (_bodyData$i2$total_sc = _bodyData$i2.total_score) === null || _bodyData$i2$total_sc === void 0 ? void 0 : _bodyData$i2$total_sc.toFixed(10))) {
+ // message.warn(`赛题${Number(i) + 1}的关卡任务总分必须等于总分值:${bodyData[i].total_score}分`);
+ message_list.push("\u8D5B\u9898".concat(Number(i) + 1, "\u7684\u5173\u5361\u4EFB\u52A1\u603B\u5206\u5FC5\u987B\u7B49\u4E8E\u603B\u5206\u503C\uFF1A").concat(bodyData[i].total_score, "\u5206\n"));
+ }
+ }
+ if (message_list.length > 0) {
+ message/* default.warn */.ZP.warn(message_list);
+ return false;
+ } else {
+ return true;
+ }
+ };
+ var sumbitData = function sumbitData() {
+ if (setVerify(quetions)) {
+ for (var i in quetions) {
+ var _quetions$i, _quetions$i$challenge, _quetions$i2, _quetions$i2$challeng;
+ quetions[i].shixun_id = (_quetions$i = quetions[i]) === null || _quetions$i === void 0 ? void 0 : (_quetions$i$challenge = _quetions$i.challenge_settings[0]) === null || _quetions$i$challenge === void 0 ? void 0 : _quetions$i$challenge.shixun_id;
+ if (((_quetions$i2 = quetions[i]) === null || _quetions$i2 === void 0 ? void 0 : (_quetions$i2$challeng = _quetions$i2.challenge_settings) === null || _quetions$i2$challeng === void 0 ? void 0 : _quetions$i2$challeng.length) > 0) {
+ for (var j in (_quetions$i3 = quetions[i]) === null || _quetions$i3 === void 0 ? void 0 : _quetions$i3.challenge_settings) {
+ var _quetions$i3, _quetions$i4;
+ quetions[i].challenge_settings[j].challenge_score = (_quetions$i4 = quetions[i]) === null || _quetions$i4 === void 0 ? void 0 : _quetions$i4.challenge_settings[j].score;
+ }
+ }
+ }
+ (0,service_competitions/* shixun_select */.JM)({
+ "id": props === null || props === void 0 ? void 0 : props.competitionId,
+ "shixuns": quetions
+ }).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ message/* default.success */.ZP.success('更改成功');
+ queryQuetions();
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ }
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.all,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.title,
+ children: ["\u8D5B\u9898\u8BBE\u7F6E", /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ marginLeft: 20,
+ color: '#9096A3',
+ fontSize: '12px',
+ fontWeight: 'normal'
+ },
+ children: ["\u7B54\u9898\u8D77\u6B62\u65F6\u95F4\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ margin: '0 5px',
+ color: '#165DFF',
+ fontSize: '12px',
+ fontWeight: 'normal'
+ },
+ children: [Header === null || Header === void 0 ? void 0 : Header.start_time, "~", Header === null || Header === void 0 ? void 0 : Header.end_time]
+ }), "\u540C\u6B65"]
+ })]
+ }), (Header === null || Header === void 0 ? void 0 : Header.competition_status) != 'progressing' && (Header === null || Header === void 0 ? void 0 : Header.competition_status) != 'ended' && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.add_people,
+ onClick: addQuetions,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: add_img_namespaceObject,
+ className: questionsmodules.people_icon
+ }), "\u65B0\u589E\u8D5B\u9898"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ marginTop: '25px'
+ }
+ }), quetions.map(function (v, k) {
+ var _v$shixun, _v$shixun2, _v$challenge_settings;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.content_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: question_setting_namespaceObject,
+ className: questionsmodules.info_icon
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.info_title,
+ children: ["\u8D5B\u9898", k + 1]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.info_content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: html_img_namespaceObject,
+ className: questionsmodules.info_content_icon
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(_umi_production_exports.Link, {
+ to: "/shixuns/".concat(v === null || v === void 0 ? void 0 : v.shixun_identifier, "/challenges"),
+ target: "_blank",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: v === null || v === void 0 ? void 0 : (_v$shixun = v.shixun) === null || _v$shixun === void 0 ? void 0 : _v$shixun.name,
+ placement: "bottom",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: questionsmodules.info_content_title,
+ children: v === null || v === void 0 ? void 0 : (_v$shixun2 = v.shixun) === null || _v$shixun2 === void 0 ? void 0 : _v$shixun2.name
+ })
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: questionsmodules.info_open,
+ onClick: function onClick() {
+ showAll(v, 'open');
+ },
+ children: !(v !== null && v !== void 0 && v.show_info) && /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+ children: ["\u5C55\u5F00\u66F4\u591A", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xiajiantou",
+ style: {
+ fontSize: '8px'
+ }
+ })]
+ })
+ }), (Header === null || Header === void 0 ? void 0 : Header.competition_status) != 'progressing' && (Header === null || Header === void 0 ? void 0 : Header.competition_status) != 'ended' && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: questionsmodules.info_delete,
+ onClick: function onClick() {
+ deleteData(v === null || v === void 0 ? void 0 : v.id);
+ },
+ children: "\u5220\u9664\u8BE5\u8D5B\u9898"
+ })]
+ }), (v === null || v === void 0 ? void 0 : v.show_info) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.questions_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ form: form,
+ labelCol: {
+ flex: '70px'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ className: questionsmodules.form_item,
+ label: "\u9898\u76EE\u603B\u5206",
+ colon: false,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(input_number/* default */.Z, {
+ min: 0,
+ value: v === null || v === void 0 ? void 0 : v.total_score,
+ disabled: (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'progressing' ? true : (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'ended' ? true : false,
+ className: questionsmodules.form_item_item,
+ onChange: function onChange(value) {
+ v.total_score = value;
+ setData(Object.assign({}, data));
+ calcScore(v);
+ },
+ onBlur: function onBlur() {
+ sumbitData();
+ }
+ }), "\xA0\u5206"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: questionsmodules.form_item_small,
+ label: " ",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: questionsmodules.form_item_small,
+ label: "\u5173\u5361\u5206\u503C",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_radio/* default.Group */.ZP.Group, {
+ disabled: (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'progressing' ? true : (Header === null || Header === void 0 ? void 0 : Header.competition_status) == 'ended' ? true : false,
+ value: v === null || v === void 0 ? void 0 : v.score_setting,
+ onChange: function onChange(e) {
+ v.score_setting = e.target.value;
+ if (e.target.value !== 1) {
+ v.difficulty_level_sort = 'asc';
+ }
+ setData(Object.assign({}, data));
+ calcScore(v);
+ },
+ onBlur: function onBlur() {
+ sumbitData();
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 0,
+ children: "\u5747\u5206\u6BD4\u4F8B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 1,
+ children: "\u96BE\u6613\u5EA6"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default */.ZP, {
+ value: 2,
+ children: "\u81EA\u5B9A\u4E49\u5206\u503C"
+ })]
+ })
+ })
+ }), v === null || v === void 0 ? void 0 : (_v$challenge_settings = v.challenge_settings) === null || _v$challenge_settings === void 0 ? void 0 : _v$challenge_settings.map(function (v1, k1) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: questionsmodules.form_item_small,
+ label: " ",
+ colon: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-shixunti",
+ style: {
+ color: '#165DFF',
+ width: '14px',
+ height: '14px',
+ margin: '6px 15px 7px 0'
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ className: questionsmodules.form_item_small,
+ label: /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: v1 === null || v1 === void 0 ? void 0 : v1.subject,
+ placement: "left",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: questionsmodules.guanka_title,
+ children: v1 === null || v1 === void 0 ? void 0 : v1.subject
+ })
+ }),
+ colon: false,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(input_number/* default */.Z, {
+ min: 0,
+ step: 0.1,
+ value: v1 === null || v1 === void 0 ? void 0 : v1.score,
+ disabled: disabled || (v === null || v === void 0 ? void 0 : v.score_setting) !== 2,
+ style: {
+ width: '100px'
+ },
+ onChange: function onChange(value) {
+ v.challenge_settings[k1]['score'] = value;
+ setData(objectSpread2_default()({}, data));
+ },
+ onBlur: function onBlur() {
+ sumbitData();
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "ml10",
+ children: "\u5206"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: (v1 === null || v1 === void 0 ? void 0 : v1.difficulty) == '简单' ? questionsmodules.nandu_1 : (v1 === null || v1 === void 0 ? void 0 : v1.difficulty) == '中等' ? questionsmodules.nandu_2 : questionsmodules.nandu_3,
+ children: v1 === null || v1 === void 0 ? void 0 : v1.difficulty
+ })]
+ })
+ }, k1);
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: questionsmodules.close_icon,
+ onClick: function onClick() {
+ showAll(v, 'close');
+ },
+ children: ["\u6536\u8D77\u66F4\u591A", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-shangjiantou",
+ style: {
+ fontSize: '8px'
+ }
+ })]
+ })]
+ })]
+ }, k);
+ }), (quetions === null || quetions === void 0 ? void 0 : quetions.length) == 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {
+ customText: "您还没有添加赛题,点击添加赛题"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(SelectShixun, {
+ competitionId: props === null || props === void 0 ? void 0 : props.competitionId,
+ queryQuetions: queryQuetions
+ })]
+ });
+};
+/* harmony default export */ var questions = ((0,_umi_production_exports.connect)(function (_ref2) {
+ var competitions = _ref2.competitions,
+ shixunHomeworks = _ref2.shixunHomeworks,
+ globalSetting = _ref2.globalSetting,
+ user = _ref2.user;
+ return {
+ competitions: competitions,
+ shixunHomeworks: shixunHomeworks,
+ globalSetting: globalSetting,
+ user: user
+ };
+})(questionsPage));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/personnel/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var personnelmodules = ({"flex_box_center":"flex_box_center___iPlvr","flex_space_between":"flex_space_between___xLMpL","flex_box_vertical_center":"flex_box_vertical_center___m68GV","flex_box_center_end":"flex_box_center_end___N__Xt","flex_box_column":"flex_box_column___EdrdM","all":"all___ZbAJW","title":"title___QPivo","add_people":"add_people___jqyIi","people_icon":"people_icon___Gf35v","content_user":"content_user___mESiF","content_left":"content_left___JUfAC","user_img_box":"user_img_box___rq6y5","user_img":"user_img___tN5UW","user_rule_create":"user_rule_create___i4hOF","user_rule_me":"user_rule_me___XrMP0","user_info":"user_info___ncafT","user_name":"user_name___hqLNP","user_school":"user_school___m7TBE","delete_text":"delete_text___j_0I0","query_style":"query_style___Nwuez","modal_styles":"modal_styles___d9sQP"});
+;// CONCATENATED MODULE: ./src/assets/images/icons/add_personl.png
+var add_personl_namespaceObject = "data:image/png;base64,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";
+// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/style/index.js + 1 modules
+var auto_complete_style = __webpack_require__(19070);
+// EXTERNAL MODULE: ./node_modules/antd/es/auto-complete/index.js
+var auto_complete = __webpack_require__(49288);
+// EXTERNAL MODULE: ./node_modules/react-infinite-scroller/index.js
+var react_infinite_scroller = __webpack_require__(246);
+var react_infinite_scroller_default = /*#__PURE__*/__webpack_require__.n(react_infinite_scroller);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/personnel/AddPersonnel.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var AddPersonnel_excluded = ["classroomList", "loading", "dispatch"];
+
+
+
+
+
+
+
+var AddPersonnel = function AddPersonnel(_ref) {
+ var _actionTabs$selectArr, _actionTabs$selectArr2;
+ var classroomList = _ref.classroomList,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ props = objectWithoutProperties_default()(_ref, AddPersonnel_excluded);
+ var params = (0,_umi_production_exports.useParams)();
+ var actionTabs = classroomList.actionTabs;
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ options = _useState2[0],
+ setOptions = _useState2[1];
+ var _useState3 = (0,react.useState)(true),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ hasMore = _useState4[0],
+ setHasmore = _useState4[1];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ isLoading = _useState6[0],
+ setIsLoading = _useState6[1];
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState7 = (0,react.useState)([]),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ tableData = _useState8[0],
+ setTableData = _useState8[1];
+ var _useState9 = (0,react.useState)(0),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ page = _useState10[0],
+ setPage = _useState10[1];
+ var _useState11 = (0,react.useState)([]),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ selectArrs = _useState12[0],
+ setSelectArrs = _useState12[1];
+ var _useState13 = (0,react.useState)(true),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ notSearch = _useState14[0],
+ setNotSearch = _useState14[1];
+ var autoCompleteRef = (0,react.useRef)();
+ (0,react.useEffect)(function () {
+ if (classroomList.actionTabs.key === '添加管理员') {
+ setNotSearch(true);
+ getData();
+ }
+ }, [classroomList.actionTabs.key]);
+ var getData = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return dispatch({
+ type: 'classroomList/getSchoolList',
+ payload: {}
+ });
+ case 2:
+ res = _context.sent;
+ setOptions(res.map(function (item) {
+ return {
+ value: item
+ };
+ }));
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function getData() {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ var onFinish = function onFinish() {
+ var _form$getFieldValue;
+ if (((_form$getFieldValue = form.getFieldValue()) === null || _form$getFieldValue === void 0 ? void 0 : _form$getFieldValue.keyword) === '') {
+ setTableData([]);
+ message/* default.error */.ZP.error("请输入搜索内容");
+ return;
+ }
+ ;
+ setNotSearch(false);
+ setHasmore(true);
+ setIsLoading(false);
+ setSelectArrs([]);
+ setTimeout(function () {
+ handleInfiniteOnLoad(true);
+ }, 200);
+ };
+ var saveSelect = function saveSelect(id) {
+ id = String(id);
+ var key = selectArrs.indexOf(id);
+ if (key < 0) {
+ selectArrs.push(id);
+ } else {
+ selectArrs.splice(key, 1);
+ }
+ setSelectArrs(toConsumableArray_default()(selectArrs));
+ };
+ var handleInfiniteOnLoad = /*#__PURE__*/function () {
+ var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var reload,
+ _res$users,
+ formValue,
+ res,
+ _args2 = arguments;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ reload = _args2.length > 0 && _args2[0] !== undefined ? _args2[0] : false;
+ if (!((reload || hasMore) && !isLoading)) {
+ _context2.next = 11;
+ break;
+ }
+ formValue = form.getFieldValue();
+ setIsLoading(true);
+ setPage(reload ? 1 : page + 1);
+ _context2.next = 7;
+ return (0,service_competitions/* search_managers */.pA)({
+ id: classroomList.actionTabs.id,
+ page: reload ? 1 : page + 1,
+ type: (formValue === null || formValue === void 0 ? void 0 : formValue.search_type) || '',
+ school: (formValue === null || formValue === void 0 ? void 0 : formValue.school_name) || '',
+ keyword: (formValue === null || formValue === void 0 ? void 0 : formValue.keyword) || ''
+ });
+ case 7:
+ res = _context2.sent;
+ reload ? setTableData(toConsumableArray_default()(res === null || res === void 0 ? void 0 : res.data)) : setTableData([].concat(toConsumableArray_default()(tableData), toConsumableArray_default()(res === null || res === void 0 ? void 0 : res.data)));
+ setIsLoading(false);
+ if (((_res$users = res.users) === null || _res$users === void 0 ? void 0 : _res$users.length) < 10) setHasmore(false);
+ case 11:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return function handleInfiniteOnLoad() {
+ return _ref3.apply(this, arguments);
+ };
+ }();
+ var onOK = /*#__PURE__*/function () {
+ var _ref4 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ if (selectArrs == '') {
+ message/* default.error */.ZP.error('请选择人数');
+ } else {
+ console.log(selectArrs);
+ (0,service_competitions/* add_managers */.q0)({
+ id: props === null || props === void 0 ? void 0 : props.competitionId,
+ ids: selectArrs
+ }).then(function (res) {
+ if (res.status == 0) {
+ message/* default.success */.ZP.success('添加成功');
+ dispatch({
+ type: 'classroomList/setActionTabs',
+ payload: {}
+ });
+ props.queryData();
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ // const res = await addTeacher({
+ // ...params,
+ // role: 2,
+ // user_list: selectArrs.map(v => { return { user_id: v } })
+ // })
+ // if (res.status === 0) {
+ // message.success('添加成功')
+ // dispatch({
+ // type: 'classroomList/setActionTabs',
+ // payload: {},
+ // });
+
+ // dispatch({
+ // type: 'classroomList/getClassroomTopBanner',
+ // payload: { id: params.coursesId },
+ // });
+ // dispatch({
+ // type: 'teachers/getList',
+ // payload: { ...params },
+ // })
+ // history.push(`/classrooms/${params.coursesId}/teachers`)
+ // }
+ }
+ case 1:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ return function onOK() {
+ return _ref4.apply(this, arguments);
+ };
+ }();
+ var columns = [{
+ title: "",
+ dataIndex: "id",
+ width: 40,
+ ellipsis: true,
+ render: function render(add, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(es_checkbox/* default */.Z, {
+ value: record.id,
+ checked: selectArrs.includes(String(record.id)),
+ disabled: record === null || record === void 0 ? void 0 : record.checked
+ });
+ }
+ }, {
+ title: "姓名",
+ width: 100,
+ ellipsis: true,
+ dataIndex: "name",
+ render: function render(text, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(_umi_production_exports.Link, {
+ className: "bold c-black",
+ to: "/users/".concat(record.login),
+ target: "_blank",
+ children: text || '--'
+ })
+ });
+ }
+ }, {
+ title: "职业",
+ dataIndex: "identity",
+ width: 130,
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '--'
+ })
+ });
+ }
+ }, {
+ title: "学号/工号",
+ width: 100,
+ dataIndex: "student_id",
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '--'
+ })
+ });
+ }
+ }, {
+ title: "手机",
+ width: 100,
+ dataIndex: "phone",
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '--'
+ })
+ });
+ }
+ }, {
+ title: "邮箱",
+ dataIndex: "mail",
+ width: 100,
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '--'
+ })
+ });
+ }
+ }, {
+ title: "学校/单位",
+ width: 150,
+ dataIndex: "school",
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '--'
+ })
+ });
+ }
+ }, {
+ title: "实名认证",
+ dataIndex: "school_name",
+ width: 100,
+ render: function render(text) {
+ return text ? '是' : "否";
+ }
+ },
+ // {
+ // title: "最后登录时间",
+ // dataIndex: "last_login_on",
+ // width: 140,
+ // ellipsis: true,
+ // render: (text: string) => {
+ // return {moment(text).format("YYYY-MM-DD HH:mm")}
+ // }
+ // },
+ {
+ title: "状态",
+ dataIndex: "checked",
+ width: 80,
+ render: function render(text) {
+ if (text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "c-green",
+ children: "\u5DF2\u6DFB\u52A0"
+ });
+ }
+ }
+ }];
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ // className={styles.modal_styles}
+ className: "modal_styles",
+ centered: true,
+ title: "\u6DFB\u52A0\u7BA1\u7406\u5458",
+ open: classroomList.actionTabs.key === '添加管理员' ? true : false,
+ okText: "\u786E\u5B9A",
+ cancelText: "\u53D6\u6D88",
+ width: 1100,
+ zIndex: 1000,
+ bodyStyle: {
+ minHeight: 200
+ },
+ onOk: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() {
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ onOK();
+ case 1:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ })),
+ onCancel: function onCancel() {
+ setSelectArrs([]);
+ dispatch({
+ type: 'classroomList/setActionTabs',
+ payload: {}
+ });
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: "0 14px"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ layout: "inline",
+ form: form,
+ initialValues: {
+ school_name: "",
+ keyword: "",
+ search_type: 'name'
+ }
+ // className="mt10"
+ // onFinish={onFinish}
+ ,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "search_type",
+ label: "\u641C\u7D22\u7C7B\u578B",
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select/* default */.Z, {
+ style: {
+ width: 120
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_select/* default.Option */.Z.Option, {
+ value: "name",
+ children: "\u59D3\u540D"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select/* default.Option */.Z.Option, {
+ value: "phone",
+ children: "\u624B\u673A\u53F7"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select/* default.Option */.Z.Option, {
+ value: "mail",
+ children: "\u90AE\u7BB1"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "keyword",
+ label: "\u641C\u7D22\u5185\u5BB9\uFF1A",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ allowClear: true,
+ style: {
+ width: 317
+ },
+ size: "large",
+ defaultValue: ((_actionTabs$selectArr = actionTabs.selectArrs) === null || _actionTabs$selectArr === void 0 ? void 0 : _actionTabs$selectArr.category_name) || ((_actionTabs$selectArr2 = actionTabs.selectArrs) === null || _actionTabs$selectArr2 === void 0 ? void 0 : _actionTabs$selectArr2.name)
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ name: "school_name",
+ label: "\u5355\u4F4D\uFF1A",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(auto_complete/* default */.Z, {
+ options: options,
+ style: {
+ width: 317
+ },
+ size: "large",
+ placeholder: "\u8BF7\u8F93\u5165\u5355\u4F4D\u540D\u79F0"
+ // getPopupContainer={() => autoCompleteRef.current}
+ ,
+ filterOption: function filterOption(inputValue, option) {
+ return option.value.toUpperCase().indexOf(inputValue.toUpperCase()) !== -1;
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ style: {
+ marginRight: 0
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ htmlType: "submit",
+ type: "primary",
+ size: "large",
+ onClick: function onClick() {
+ return onFinish();
+ },
+ children: "\u641C\u7D22"
+ })
+ })]
+ }), notSearch && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "tc font16 c-light-black mt40 pb30",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: ImagesIcon/* searchIcon */.RL,
+ width: "100",
+ alt: ""
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("br", {}), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: "mt20",
+ children: "\u8BF7\u641C\u7D22\u8981\u6DFB\u52A0\u7684\u7BA1\u7406\u5458"
+ })]
+ }), !notSearch && tableData == '' && !isLoading && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "tc font16 c-light-black mt40 pb30",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: ImagesIcon/* noDataIcon */.z3,
+ width: "100",
+ alt: ""
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("br", {}), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: "mt20",
+ children: "\u6682\u65F6\u8FD8\u6CA1\u6709\u76F8\u5173\u6570\u636E\u54E6!"
+ })]
+ }), (!notSearch && tableData != '' || isLoading) && /*#__PURE__*/(0,jsx_runtime.jsxs)("section", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "flexd-table-header mt20",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ pagination: false,
+ dataSource: [],
+ columns: columns
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ maxHeight: 260,
+ overflow: 'auto'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)((react_infinite_scroller_default()), {
+ initialLoad: false,
+ pageStart: 1,
+ threshold: 20,
+ loadMore: function loadMore(page) {
+ handleInfiniteOnLoad();
+ },
+ hasMore: hasMore,
+ useWindow: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ loading: isLoading,
+ showHeader: false,
+ pagination: false,
+ dataSource: tableData,
+ columns: columns,
+ onRow: function onRow(record) {
+ return {
+ onClick: function onClick(event) {
+ if (!event.currentTarget.querySelector("input").disabled) saveSelect(event.currentTarget.querySelector("input").value);
+ }
+ };
+ }
+ })
+ })
+ })]
+ })]
+ })
+ });
+};
+/* harmony default export */ var personnel_AddPersonnel = ((0,_umi_production_exports.connect)(function (_ref6) {
+ var classroomList = _ref6.classroomList,
+ loading = _ref6.loading;
+ return {
+ classroomList: classroomList,
+ loading: loading
+ };
+})(AddPersonnel));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/personnel/index.tsx
+
+
+
+
+
+
+
+
+var personnel_excluded = ["globalSetting", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+var personnelPage = function personnelPage(_ref) {
+ var _user$userInfo;
+ var globalSetting = _ref.globalSetting,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, personnel_excluded);
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ userlist = _useState2[0],
+ setuserlist = _useState2[1];
+ var _useState3 = (0,react.useState)(''),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ createid = _useState4[0],
+ setcreateid = _useState4[1];
+ var showModal = function showModal() {
+ dispatch({
+ type: 'classroomList/setActionTabs',
+ payload: {
+ key: '添加管理员',
+ id: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ };
+ var deleteData = function deleteData(id) {
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ okText: '确定',
+ cancelText: '取消',
+ title: '删除提示',
+ icon: null,
+ content: '是否确定删除该管理员?',
+ onOk: function () {
+ var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ (0,service_competitions/* delete_managers */.qN)({
+ id: props === null || props === void 0 ? void 0 : props.competitionId,
+ ids: [id]
+ }).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ message/* default.success */.ZP.success('删除成功');
+ queryData();
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ case 1:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ function onOk() {
+ return _onOk.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ };
+ (0,react.useEffect)(function () {
+ queryData();
+ }, []);
+ var queryData = function queryData() {
+ (0,service_competitions/* get_managers */.sL)(props === null || props === void 0 ? void 0 : props.competitionId).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ var _res$creator;
+ setcreateid(res === null || res === void 0 ? void 0 : (_res$creator = res.creator) === null || _res$creator === void 0 ? void 0 : _res$creator.id);
+ var obj = [];
+ obj.push(res === null || res === void 0 ? void 0 : res.creator);
+ for (var i in res === null || res === void 0 ? void 0 : res.data) {
+ obj.push(res === null || res === void 0 ? void 0 : res.data[i]);
+ }
+ setuserlist(obj);
+ props === null || props === void 0 ? void 0 : props.loadingFunction(false);
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: personnelmodules.all,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: personnelmodules.title,
+ children: "\u7BA1\u7406\u5458\u8BBE\u7F6E"
+ }), createid == (user === null || user === void 0 ? void 0 : (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.user_id) && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: personnelmodules.add_people,
+ onClick: showModal,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: add_personl_namespaceObject,
+ className: personnelmodules.people_icon
+ }), "\u6DFB\u52A0\u7BA1\u7406\u5458"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: personnelmodules.content_user,
+ children: userlist.map(function (v, k) {
+ var _user$userInfo2, _user$userInfo3, _user$userInfo4;
+ return (
+ /*#__PURE__*/
+ //
+ (0,jsx_runtime.jsxs)("div", {
+ className: personnelmodules.content_left,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: personnelmodules.user_img_box,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ href: "/users/".concat(v.login, "/classrooms"),
+ target: "_blank",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + '/images/' + (v === null || v === void 0 ? void 0 : v.image_url),
+ className: personnelmodules.user_img
+ }), createid == (v === null || v === void 0 ? void 0 : v.id) && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: personnelmodules.user_rule_create,
+ children: "\u521B\u5EFA\u8005"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: personnelmodules.user_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: personnelmodules.user_name,
+ children: v === null || v === void 0 ? void 0 : v.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: personnelmodules.user_school,
+ children: v === null || v === void 0 ? void 0 : v.school
+ })]
+ }), createid != (v === null || v === void 0 ? void 0 : v.id) && (createid == (user === null || user === void 0 ? void 0 : (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.user_id) || (user === null || user === void 0 ? void 0 : (_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.role) == 1 || (user === null || user === void 0 ? void 0 : (_user$userInfo4 = user.userInfo) === null || _user$userInfo4 === void 0 ? void 0 : _user$userInfo4.role) == 2) && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: personnelmodules.delete_text,
+ onClick: function onClick() {
+ deleteData(v === null || v === void 0 ? void 0 : v.id);
+ },
+ children: "\u5220\u9664"
+ })]
+ }, k)
+ );
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(personnel_AddPersonnel, {
+ queryData: queryData,
+ competitionId: props === null || props === void 0 ? void 0 : props.competitionId
+ })]
+ });
+};
+/* harmony default export */ var personnel = ((0,_umi_production_exports.connect)(function (_ref2) {
+ var globalSetting = _ref2.globalSetting,
+ user = _ref2.user;
+ return {
+ globalSetting: globalSetting,
+ user: user
+ };
+})(personnelPage));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/document/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var documentmodules = ({"flex_box_center":"flex_box_center___yg5U2","flex_space_between":"flex_space_between___RNHqN","flex_box_vertical_center":"flex_box_vertical_center___ZT47P","flex_box_center_end":"flex_box_center_end___X4Xs3","flex_box_column":"flex_box_column___OzmB0","all":"all___uSCy0","content":"content___pnhPh","content_left_red":"content_left_red___SmVi6","content_left_none":"content_left_none___jTbL2","content_left_flag":"content_left_flag___mae5L","content_left_info":"content_left_info___mISvV","content_left_title":"content_left_title___lcDeu","content_left_description":"content_left_description___Ris52","content_right":"content_right___AcQrD","content_right_span":"content_right_span___WiMTr","form_item":"form_item___eHCux","form_item_item":"form_item_item___IAs6n","fuzhi":"fuzhi___rSsFz","fuzhi_text":"fuzhi_text___UV3Dz","tijiao":"tijiao___AYAeP","tijiao_text":"tijiao_text___TC6tI","quetions_info":"quetions_info___qHhFg","scoremodal":"scoremodal___LmU2Z","title":"title___M1zQX","bottom":"bottom___P728Z","yes":"yes___gRJi8","no":"no___voaWW","form_item_item_select":"form_item_item_select___g8gNL"});
+;// CONCATENATED MODULE: ./src/assets/images/icons/wancheng.png
+var wancheng_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAAXNSR0IArs4c6QAAAtxJREFUSEu9lktME1EUhv+/M51GayTGGCPGhRs1btqKGF0oAmHBaloejRbciS6NiUtjonHnxqWPlWEKCZVX3GkiPhJB5CEaiRASV2rUYAS6sK85ZqaUlFc7gOndzdz/nG/uueecOYSDdbyzMZDKpIMETotwP4hy20zwjZSvArx2K2rfyPnu8WLuWEgQMBqaTGRuQ3C4mCN7n5hyQbk+3trzeD39msATXc0HE8lkBwQnHYFWioghj6ZFhsOxL6u3VrwJdISqJCPdAtm9KdiiEcFZKmwcj/S+zPez7ISLsGcCcW8FlrMlmKLCunzoEtAKYzKRerfVk60OIWc1j7syF94loM/QBzd9Z8XCQQxNtPafyuYVADsbJRMrZudkn8AMSK+I7MvXu6g0W9lrA32G/tlx6hegkuyCF5cljm5AapZJiamJ1v4jtIs6nR5z8vUFNAmXi1fHIr33AtHgfRG0raV1q+ox+gz9JgQ3Ngu0QqiqatjqMv5o8K6YcmVdX8Qt+g39uQiqNwMk+MZDb/3b1ui8P6pfExN3CvkhMUBfe3AKkENrC2mSEhfBzlXpTg574K2zYMc6QjWmKU9FRCn84ZymzwguQGTHaoeYd8HVomrqp2Qi1SsQ35KGHKMXte9DfX8qO/UDqTRHBbKnaJTI+PpAYEaBcmb0Qs/3iieXtmfmfj4UkQiBD5rXVTPc0DsrIgwYoQGBVBWFZQULBUNKYpKadnY8HPtlqf3t+kV6tP6lZyPUJmI+cAizyn66aNJYJ9rm0aoHw7Hf+Y4DnefKJfN3UkTKnAKzSeOkLMhRVXPXjoZjcznn/nbdEKDFKczWWWXhuPCJoV2aVvciHIsHjOajpqQ+AuLaCNAu/I20NhKvlLK99Zm5H49E0LQRmDUN2K3NMtpI8yYwIkQFJNv4na5lzXvxlKX7PVnAkv+A7dBm55nSjBi5uyjpEJWDlnRMXNZNSjUIr0z1/znq/wN40G8Rfw3IyQAAAABJRU5ErkJggg==";
+;// CONCATENATED MODULE: ./src/assets/images/icons/no_shezhi.png
+var no_shezhi_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAAXNSR0IArs4c6QAAAhdJREFUSEvFlr1vE0EQxd87O6KBFqREokSCFISCii8hKqhuz3KB+CtSBCEo4gJRBETLXwAFJl53VAniSxRIEJpEaZFwkTZQoMT70F3Ox+W4Dyu2jiusk2dufzuzb3aGGOORMech+SCvQZoFOQdJAAYgB5DeguzT2m9Vy7HMQa2WD+ceSTpbtVBoJ7kFz7vP1dV+kX8uUO32aezvP5d0eRxQ1ofkBzSbd9jtfv/Hlv1DQXAJUk/SyaPARt+Q3AEZsNf7mF7nUIQRzLk1AccmgSVQ4Dc870YamgDjNH6eNLKc9O6g2bw4Su9foDHvj3pmVdkIz5TWXomEFf6EatRwaKs+nMTORsOE6j0AGrNZJH0Cv0A+AzAv6WYelORLkJ/g3D0Bpwp8tmjtOardXtDe3tfCuiGf0NqleGMrkqL3lBof09q7sX1R0tPCtWZmLlBB0JFzyyXA17T21sguYxIoyQQWA19Iul1S9B3KmHVJ18vOJ2fhlUgAcWRF0eco9k0I3JZ0pkoQWWjaPx116caB7RC4K+l4FTCKKJPCcSNLnffPeoHA7n9JaZ2iWad8f1lAZypl4fuvBLTKy2K6hf9Q0oOSzS9M52oD+vC8L3BuScCJ0qstknbdl3dcT/W1pwh4MMfU14AjaJ0jRtIN6hyiEmidY+KhLlDXIJyto3AqwHDoQ7oKYA7AbOwzAPAD5Ds0Gn12uxtVXecPo4t94UegNcAAAAAASUVORK5CYII=";
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/document/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var document_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+var documentPage = function documentPage(_ref) {
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, document_excluded);
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState = (0,react.useState)(true),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ name_finish = _useState2[0],
+ setname_finish = _useState2[1];
+ var _useState3 = (0,react.useState)(true),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ url_finish = _useState4[0],
+ seturl_finish = _useState4[1];
+ var _useState5 = (0,react.useState)(true),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ time_finish = _useState6[0],
+ settime_finish = _useState6[1];
+ var _useState7 = (0,react.useState)(true),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ question_finish = _useState8[0],
+ setquestion_finish = _useState8[1];
+ var _useState9 = (0,react.useState)(''),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ name_show = _useState10[0],
+ setname_show = _useState10[1];
+ var _useState11 = (0,react.useState)(''),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ url_show = _useState12[0],
+ seturl_show = _useState12[1];
+ var _useState13 = (0,react.useState)(''),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ time_show = _useState14[0],
+ settime_show = _useState14[1];
+ var _useState15 = (0,react.useState)(''),
+ _useState16 = slicedToArray_default()(_useState15, 2),
+ question_show = _useState16[0],
+ setquestion_show = _useState16[1];
+ var Header = competitions.Header;
+ var _useState17 = (0,react.useState)(false),
+ _useState18 = slicedToArray_default()(_useState17, 2),
+ visible = _useState18[0],
+ setvisible = _useState18[1];
+ var _useState19 = (0,react.useState)([]),
+ _useState20 = slicedToArray_default()(_useState19, 2),
+ schoolList = _useState20[0],
+ setSchoolList = _useState20[1];
+ console.log("Header:", Header);
+ (0,react.useEffect)(function () {
+ queryData();
+ }, []);
+ var queryData = function queryData() {
+ (0,service_competitions/* info_finish */.rZ)(props === null || props === void 0 ? void 0 : props.competitionId).then(function (res) {
+ var _res$competition, _res$competition2, _res$competition3;
+ setname_finish(res === null || res === void 0 ? void 0 : res.name_finish);
+ seturl_finish(res === null || res === void 0 ? void 0 : res.url_finish);
+ settime_finish(res === null || res === void 0 ? void 0 : res.time_finish);
+ setquestion_finish(res === null || res === void 0 ? void 0 : res.question_finish);
+ setname_show(res === null || res === void 0 ? void 0 : (_res$competition = res.competition) === null || _res$competition === void 0 ? void 0 : _res$competition.name);
+ settime_show(moment_default()(res === null || res === void 0 ? void 0 : (_res$competition2 = res.competition) === null || _res$competition2 === void 0 ? void 0 : _res$competition2.start_time).format('YYYY-MM-DD HH:mm') + ' ~ ' + moment_default()(res === null || res === void 0 ? void 0 : (_res$competition3 = res.competition) === null || _res$competition3 === void 0 ? void 0 : _res$competition3.end_time).format('YYYY-MM-DD HH:mm'));
+ seturl_show('https://www.educoder.net/competitions/' + (res === null || res === void 0 ? void 0 : res.identifier) + '/edit');
+ var obj = '';
+ for (var i in res === null || res === void 0 ? void 0 : res.data) {
+ if (Number(i) == Number((res === null || res === void 0 ? void 0 : res.data.length) - 1)) {
+ var _res$data$i, _res$data$i$shixun;
+ obj += '赛题' + (Number(i) + 1) + ':' + (res === null || res === void 0 ? void 0 : (_res$data$i = res.data[i]) === null || _res$data$i === void 0 ? void 0 : (_res$data$i$shixun = _res$data$i.shixun) === null || _res$data$i$shixun === void 0 ? void 0 : _res$data$i$shixun.name);
+ } else {
+ var _res$data$i2, _res$data$i2$shixun;
+ obj += '赛题' + (Number(i) + 1) + ':' + (res === null || res === void 0 ? void 0 : (_res$data$i2 = res.data[i]) === null || _res$data$i2 === void 0 ? void 0 : (_res$data$i2$shixun = _res$data$i2.shixun) === null || _res$data$i2$shixun === void 0 ? void 0 : _res$data$i2$shixun.name) + '、';
+ }
+ }
+ setquestion_show(obj);
+ form.setFieldValue('identifier', res === null || res === void 0 ? void 0 : res.identifier);
+ props === null || props === void 0 ? void 0 : props.loadingFunction(false);
+ });
+ };
+ var submitData = function submitData(e) {
+ (0,service_competitions/* competition_review */.qt)(objectSpread2_default()(objectSpread2_default()({}, e), {}, {
+ id: props === null || props === void 0 ? void 0 : props.competitionId
+ })).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ message/* default.success */.ZP.success('提交成功');
+ setvisible(false);
+ dispatch({
+ type: 'competitions/getStaff',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: props === null || props === void 0 ? void 0 : props.competitionId
+ }
+ });
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ };
+ var copyText = function copyText() {
+ var input = document.createElement('input'); //不会保留文本格式
+ //如果要保留文本格式,比如保留换行符,或者多行文本,可以使用 textarea 标签,再配和模板字符串 ` `
+ //const input = document.createElement('textarea')
+ // 将想要复制的值
+ input.value = 'https://www.educoder.net/competitions/' + form.getFieldValue('identifier');
+ // 页面底部追加输入框
+ document.body.appendChild(input);
+ // 选中输入框
+ input.select();
+ // 执行浏览器复制命令
+ document.execCommand('Copy');
+ // 弹出复制成功信息
+ message/* default.success */.ZP.success('复制成功');
+ // 复制后移除输入框
+ input.remove();
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.all,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: name_finish ? documentmodules.content_left_none : documentmodules.content_left_red,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: documentmodules.content_left_flag,
+ src: name_finish ? wancheng_namespaceObject : no_shezhi_namespaceObject
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_left_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_left_title,
+ children: "\u4E3B\u6807\u9898\u8BBE\u7F6E"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_left_description,
+ children: name_finish ? "\u60A8\u5DF2\u8BBE\u7F6E\u4E3B\u6807\u9898\u4E3A\uFF1A".concat(name_show) : '请在设置中填写正确的竞赛主标题'
+ })]
+ })]
+ }), name_finish ? /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_right,
+ onClick: function onClick() {
+ props.clickInformation('主标题');
+ },
+ children: "\u67E5\u770B"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_right,
+ onClick: function onClick() {
+ props.clickInformation('主标题');
+ },
+ children: ["\u53BB\u5B8C\u5584\u4FE1\u606F", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xiaojiantou",
+ style: {
+ fontSize: '10px'
+ }
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: url_finish ? documentmodules.content_left_none : documentmodules.content_left_red,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: documentmodules.content_left_flag,
+ src: url_finish ? wancheng_namespaceObject : no_shezhi_namespaceObject
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_left_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_left_title,
+ children: "\u7F51\u5740\u8BBE\u7F6E"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_left_description,
+ children: [url_finish && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: ["\u60A8\u5DF2\u8BBE\u7F6E\u7F51\u5740\u4E3A\uFF1A", /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ href: url_show,
+ target: "_blank",
+ children: url_show
+ })]
+ }), !url_finish && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u8BF7\u5728\u8BBE\u7F6E\u4E2D\u586B\u5199\u6B63\u786E\u7684\u7F51\u5740"
+ })]
+ })]
+ })]
+ }), url_finish ? /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_right,
+ onClick: function onClick() {
+ props.clickInformation('比赛地址');
+ },
+ children: "\u67E5\u770B"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_right,
+ onClick: function onClick() {
+ props.clickInformation('比赛地址');
+ },
+ children: ["\u53BB\u5B8C\u5584\u4FE1\u606F", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xiaojiantou",
+ style: {
+ fontSize: '10px'
+ }
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: time_finish ? documentmodules.content_left_none : documentmodules.content_left_red,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: documentmodules.content_left_flag,
+ src: time_finish ? wancheng_namespaceObject : no_shezhi_namespaceObject
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_left_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_left_title,
+ children: "\u7ADE\u8D5B\u65F6\u95F4"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_left_description,
+ children: time_finish ? "\u60A8\u5DF2\u8BBE\u7F6E\u7ADE\u8D5B\u65F6\u95F4\u4E3A\uFF1A".concat(time_show) : '请在设置中填写正确的竞赛时间'
+ })]
+ })]
+ }), time_finish ? /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_right,
+ onClick: function onClick() {
+ props.clickInformation('竞赛时间');
+ },
+ children: "\u67E5\u770B"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_right,
+ onClick: function onClick() {
+ props.clickInformation('竞赛时间');
+ },
+ children: ["\u53BB\u5B8C\u5584\u4FE1\u606F", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xiaojiantou",
+ style: {
+ fontSize: '10px'
+ }
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: question_finish ? documentmodules.content_left_none : documentmodules.content_left_red,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: documentmodules.content_left_flag,
+ src: question_finish ? wancheng_namespaceObject : no_shezhi_namespaceObject
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_left_info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_left_title,
+ children: "\u8D5B\u9898\u8BBE\u7F6E"
+ }), question_finish && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: '您已经设置的:' + question_show,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_left_description,
+ children: ["\u60A8\u5DF2\u7ECF\u8BBE\u7F6E\u7684\uFF1A", question_show]
+ })
+ }), !question_finish && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_left_description,
+ children: "\u8BF7\u5728\u8BBE\u7F6E\u4E2D\u586B\u5199\u6B63\u786E\u7684\u8D5B\u9898\u8BBE\u7F6E"
+ })]
+ })]
+ }), question_finish ? /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content_right,
+ onClick: props.clickQuetions,
+ children: "\u67E5\u770B"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content_right,
+ onClick: props.clickQuetions,
+ children: ["\u53BB\u5B8C\u5584\u4FE1\u606F", /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xiaojiantou",
+ style: {
+ fontSize: '10px'
+ }
+ })]
+ })]
+ }), name_finish && url_finish && time_finish && question_finish && /*#__PURE__*/(0,jsx_runtime.jsx)(jsx_runtime.Fragment, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
+ form: form,
+ style: {
+ marginLeft: 22
+ },
+ labelCol: {
+ flex: '100px'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: documentmodules.form_item,
+ colon: false,
+ name: "identifier",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ prefix: "https://www.educoder.net/competitions/",
+ disabled: true,
+ className: documentmodules.form_item_item
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.fuzhi,
+ onClick: copyText,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-fuzhi",
+ style: {
+ marginRight: '5px'
+ }
+ }), "\u590D\u5236"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.fuzhi_text,
+ children: "\u53C2\u8D5B\u4EBA\u5458\u53EF\u8BBF\u95EE\u8BE5\u7F51\u5740\u53C2\u52A0\u6BD4\u8D5B"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: documentmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(AsyncButton/* AsyncButton */.Z, {
+ disabled: !name_finish || !url_finish || !time_finish || !question_finish,
+ type: "primary",
+ className: documentmodules.tijiao,
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ setvisible(true);
+ (0,paths/* getSchoolOption */.GY)({}).then(function (res) {
+ setSchoolList(res === null || res === void 0 ? void 0 : res.schools);
+ }).then(function () {
+ var _user$userInfo, _user$userInfo2, _user$userInfo3;
+ form.setFieldsValue({
+ sponsor_schools: (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.user_school_id,
+ sponsor_user_name: (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.real_name,
+ sponsor_user_phone: (_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.phone
+ });
+ // common_header(props?.competitionId).then((res) => {
+ // form.setFieldValue('sponsor_schools', res?.sponsor_schools_array)
+ // form.setFieldValue('sponsor_user_name', res?.sponsor_user_name)
+ // form.setFieldValue('sponsor_user_phone', res?.sponsor_user_phone)
+ // })
+ });
+ case 2:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ })),
+ children: "\u63D0\u4EA4\u5BA1\u6838"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "".concat(documentmodules.tijiao_text, " ").concat(name_finish && url_finish && time_finish && question_finish ? "" : "c-red"),
+ children: name_finish && url_finish && time_finish && question_finish ? "准备好后,您可发起审核" : "请完成竞赛指引后,再提交审核"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: visible,
+ width: 610,
+ className: documentmodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setvisible(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.title,
+ children: "\u4E3A\u4E86\u52A0\u5FEB\u7ADE\u8D5B\u5BA1\u6838\u901F\u5EA6\uFF0C\u8BF7\u786E\u8BA4\u4EE5\u4E0B\u4FE1\u606F\u662F\u5426\u51C6\u786E"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setvisible(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: documentmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-guanbi",
+ style: {
+ color: '#979797',
+ fontSize: '15px'
+ }
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ form: form,
+ className: documentmodules.formWrap,
+ onFinish: submitData
+ // initialValues={{
+ // sponsor_schools: user.userInfo?.school_id,
+ // sponsor_user_name: user.userInfo?.real_name,
+ // sponsor_user_phone: user.userInfo?.phone
+ // }}
+ ,
+ labelCol: {
+ flex: '110px'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: documentmodules.form_item,
+ label: "\u4E3B\u529E\u65B9",
+ colon: false,
+ name: "sponsor_schools",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select/* default */.Z, {
+ mode: "multiple",
+ className: documentmodules.form_item_item_select,
+ options: schoolList,
+ fieldNames: {
+ label: 'name',
+ value: 'id'
+ },
+ placeholder: "\u8BF7\u8F93\u5165\u4E3B\u529E\u65B9",
+ filterOption: function filterOption(input, option) {
+ var _option$name;
+ return ((_option$name = option === null || option === void 0 ? void 0 : option.name) !== null && _option$name !== void 0 ? _option$name : '').toLowerCase().includes(input.toLowerCase());
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: documentmodules.form_item,
+ label: "\u4E3B\u8981\u8D1F\u8D23\u4EBA\u59D3\u540D",
+ colon: false,
+ name: "sponsor_user_name",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: documentmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u4E3B\u8981\u8D1F\u8D23\u4EBA\u59D3\u540D"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: documentmodules.form_item,
+ label: "\u4E3B\u8981\u8D1F\u8D23\u4EBA\u7535\u8BDD",
+ colon: false,
+ name: "sponsor_user_phone",
+ rules: [{
+ pattern: new RegExp(/^((0\d{2,3}(-)?\d{7,8})|(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8})$/, "g"),
+ message: '必须是正确的座机号或者手机号'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: documentmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u4E3B\u8981\u8D1F\u8D23\u4EBA\u7535\u8BDD"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: documentmodules.bottom,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ size: "large",
+ className: documentmodules.no,
+ onClick: function onClick() {
+ setvisible(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: documentmodules.yes,
+ size: "large",
+ type: "primary",
+ htmlType: "submit",
+ loading: loading,
+ children: "\u4FDD\u5B58"
+ })]
+ })
+ })]
+ })
+ })]
+ })]
+ });
+};
+/* harmony default export */ var Setting_document = ((0,_umi_production_exports.connect)(function (_ref3) {
+ var competitions = _ref3.competitions,
+ loading = _ref3.loading,
+ globalSetting = _ref3.globalSetting,
+ user = _ref3.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(documentPage));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Setting/index.tsx
+
+
+
+
+
+
+var Setting_excluded = ["competitions", "globalSetting", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+var settingPage = function settingPage(_ref) {
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, Setting_excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ // const identifier = 181;
+ var _useState = (0,react.useState)(true),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ messageType = _useState2[0],
+ setMessageType = _useState2[1];
+ var menu_list = ['竞赛信息', '图片设置', '赛题设置', '管理人员', '竞赛指引'];
+ var _useState3 = (0,react.useState)('竞赛信息'),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ menuActive = _useState4[0],
+ setMenuActive = _useState4[1];
+ var _useState5 = (0,react.useState)(true),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ loading = _useState6[0],
+ setLoading = _useState6[1];
+ var _useState7 = (0,react.useState)(''),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ formName = _useState8[0],
+ setformname = _useState8[1];
+ var loadingFunction = function loadingFunction(box) {
+ setLoading(box);
+ };
+ var clickInformation = function clickInformation(box) {
+ setMenuActive('竞赛信息');
+ if (box == '主标题') {
+ setformname('name');
+ } else if (box == '比赛地址') {
+ setformname('identifier');
+ } else if (box == '竞赛时间') {
+ setformname('start_time');
+ }
+ };
+ var clickQuetions = function clickQuetions() {
+ setMenuActive('赛题设置');
+ };
+ (0,react.useEffect)(function () {
+ window.scrollTo(0, 500);
+ }, [menuActive]);
+ (0,react.useEffect)(function () {
+ if (competitions.actionTabs.key === '1') {
+ setMenuActive('赛题设置');
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {}
+ });
+ } else if (competitions.actionTabs.key === '5') {
+ setMenuActive('竞赛指引');
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {}
+ });
+ } else if (competitions.actionTabs.key === '7') {
+ setMenuActive('竞赛信息');
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {}
+ });
+ }
+ }, [competitions.actionTabs]);
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Settingmodules.all,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Settingmodules.setting,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Settingmodules.setting_title,
+ children: "\u57FA\u7840\u8BBE\u7F6E"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Settingmodules.setting_content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(affix/* default */.Z, {
+ offsetTop: 52,
+ style: {
+ borderRight: '1px #F1F1F1 solid'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Settingmodules.setting_menu,
+ children: menu_list.map(function (v, k) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: menuActive == v ? Settingmodules.menu_item_active : Settingmodules.menu_item,
+ onClick: function onClick() {
+ setMenuActive(v), setLoading(true);
+ },
+ children: v
+ }, k);
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Settingmodules.setting_info,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(spin/* default */.Z, {
+ spinning: loading,
+ children: [menuActive == '竞赛信息' && /*#__PURE__*/(0,jsx_runtime.jsx)(information, {
+ competitionId: identifier,
+ loadingFunction: loadingFunction,
+ formName: formName
+ }), menuActive == '图片设置' && /*#__PURE__*/(0,jsx_runtime.jsx)(picture, {
+ competitionId: identifier,
+ loadingFunction: loadingFunction
+ }), menuActive == '赛题设置' && /*#__PURE__*/(0,jsx_runtime.jsx)(questions, {
+ competitionId: identifier,
+ loadingFunction: loadingFunction
+ }), menuActive == '管理人员' && /*#__PURE__*/(0,jsx_runtime.jsx)(personnel, {
+ competitionId: identifier,
+ loadingFunction: loadingFunction
+ }), menuActive == '竞赛指引' && /*#__PURE__*/(0,jsx_runtime.jsx)(Setting_document, {
+ competitions: competitions,
+ clickInformation: clickInformation,
+ clickQuetions: clickQuetions,
+ competitionId: identifier,
+ loadingFunction: loadingFunction
+ })]
+ })
+ })]
+ })]
+ })
+ });
+};
+// export default ;
+/* harmony default export */ var Setting = ((0,_umi_production_exports.connect)(function (_ref2) {
+ var competitions = _ref2.competitions,
+ globalSetting = _ref2.globalSetting,
+ user = _ref2.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ user: user
+ };
+})(settingPage));
+// EXTERNAL MODULE: ./node_modules/antd/es/menu/style/index.js + 1 modules
+var menu_style = __webpack_require__(83736);
+// EXTERNAL MODULE: ./node_modules/antd/es/menu/index.js + 5 modules
+var menu = __webpack_require__(66516);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/view/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var viewmodules = ({"flex_box_center":"flex_box_center___SC2G3","flex_space_between":"flex_space_between___v24d6","flex_box_vertical_center":"flex_box_vertical_center___iBIji","flex_box_center_end":"flex_box_center_end___shnGM","flex_box_column":"flex_box_column___pRdtO","bg":"bg___htQ1O","title":"title___dw_wz","left":"left___CDy7v","muitem":"muitem___pDhZj","right":"right___tNRAa","button":"button___tMn5K"});
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/view/components/Content.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var Contentmodules = ({"flex_box_center":"flex_box_center___Y72kq","flex_space_between":"flex_space_between___d30ej","flex_box_vertical_center":"flex_box_vertical_center___p_tif","flex_box_center_end":"flex_box_center_end___AyBVH","flex_box_column":"flex_box_column___NQalW","bg":"bg___cLFww","btns":"btns___uWjSy","confirm":"confirm___ZvnTx","cancel":"cancel___v9uv4"});
+// EXTERNAL MODULE: ./src/components/RenderHtml/index.tsx + 1 modules
+var RenderHtml = __webpack_require__(12768);
+// EXTERNAL MODULE: ./src/components/markdown-editor/index.tsx + 10 modules
+var markdown_editor = __webpack_require__(55373);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/view/components/Content.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Content_excluded = ["competitions", "globalSetting", "loading", "dispatch", "selectedKeys", "isedit", "setisedit", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+var competitionsPage = function competitionsPage(_ref) {
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ selectedKeys = _ref.selectedKeys,
+ isedit = _ref.isedit,
+ setisedit = _ref.setisedit,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, Content_excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ var RightItems = competitions.RightItems;
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ defaultFileList = _useState2[0],
+ setDefaultFileList = _useState2[1];
+ var _useState3 = (0,react.useState)(RightItems.md_content),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ defaultcontent = _useState4[0],
+ setDefaultcontent = _useState4[1];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ hidden = _useState6[0],
+ sethidden = _useState6[1];
+ var _useState7 = (0,react.useState)(''),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ description = _useState8[0],
+ setdescription = _useState8[1];
+ (0,react.useEffect)(function () {
+ var _RightItems$attachmen;
+ var data = [];
+ RightItems === null || RightItems === void 0 ? void 0 : (_RightItems$attachmen = RightItems.attachments) === null || _RightItems$attachmen === void 0 ? void 0 : _RightItems$attachmen.map(function (item) {
+ var tt = {
+ uid: item.id,
+ name: item.title,
+ response: {
+ id: item.id
+ }
+ };
+ data.push(tt);
+ });
+ setDefaultFileList(data);
+ }, [RightItems === null || RightItems === void 0 ? void 0 : RightItems.attachments]);
+
+ // useEffect(() => {
+
+ // setisedit(false)
+ // }, [selectedKeys])
+ (0,react.useEffect)(function () {
+ setdescription(RightItems === null || RightItems === void 0 ? void 0 : RightItems.name);
+ setDefaultcontent(RightItems.md_content);
+ sethidden(RightItems === null || RightItems === void 0 ? void 0 : RightItems.hidden);
+ }, [RightItems.md_content || RightItems.name || RightItems.hidden]);
+
+ // function getdata() {
+ // let data: { uid: any; name: any; response: { id: any; }; }[] = [];
+ // RightItems?.attachments?.map((item: any) => {
+ // let tt = { uid: item?.id, name: item.title, response: { id: item.id } }
+ // data.push(tt);
+ // })
+ // return data;
+ // }
+ console.log('---', defaultFileList);
+ var uploadProps = {
+ name: 'file',
+ multiple: true,
+ withCredentials: true,
+ action: env/* default.API_SERVER */.Z.API_SERVER + '/api/attachments.json',
+ // defaultFileList: getdata(),
+ fileList: defaultFileList,
+ onRemove: function onRemove(e) {
+ // console.log('e', e);
+
+ (0,service_competitions/* deletAttachments */.y8)({
+ id: e.response.id
+ });
+ },
+ onChange: function onChange(info) {
+ setDefaultFileList(toConsumableArray_default()(info.fileList));
+
+ // const { status } = info.file;
+ // if (status !== 'uploading') {
+ // }
+ // if (status === 'removed') {
+ // setDefaultFileList(info.fileList);
+ // }
+ // if (status === 'done') {
+ // setDefaultFileList(info.fileList);
+ // message.success(`${info.file.name} 文件上传成功`);
+ // } else if (status === 'error') {
+ // message.error(`${info.file.name} 文件上传失败`);
+ // }
+ },
+
+ beforeUpload: function beforeUpload(file) {
+ var isLt150M = file.size / 1024 / 1024 < 150;
+ if (!isLt150M) {
+ message/* default.info */.ZP.info("文件大小必须小于150MB");
+ return upload/* default.LIST_IGNORE */.Z.LIST_IGNORE;
+ }
+ return isLt150M;
+ }
+ };
+
+ //修改内容回调接口
+ function updateItem() {
+ return _updateItem.apply(this, arguments);
+ } //获取对应文件列表
+ function _updateItem() {
+ _updateItem = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return dispatch({
+ type: 'competitions/updateMdContent',
+ payload: {
+ attachment_ids: getitemid(defaultFileList),
+ competition_module_id: RightItems.id,
+ md_content_id: RightItems.md_id,
+ content: defaultcontent,
+ identifier: identifier,
+ hidden: hidden,
+ description: description
+ }
+ });
+ case 2:
+ res = _context.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ message/* default.info */.ZP.info('提交成功');
+ setisedit(false);
+ //刷新
+ dispatch({
+ type: 'competitions/getItem',
+ payload: {
+ url: RightItems.params_url
+ }
+ });
+ }
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return _updateItem.apply(this, arguments);
+ }
+ function getitemid(itemlist) {
+ var data = [];
+ if ((itemlist === null || itemlist === void 0 ? void 0 : itemlist.length) <= 0) {
+ return data;
+ } else {
+ itemlist && (itemlist === null || itemlist === void 0 ? void 0 : itemlist.map(function (item) {
+ data.push(item.response.id);
+ }));
+ return data;
+ }
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("section", {
+ className: Contentmodules.bg,
+ children: isedit ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginBottom: 30,
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ style: {
+ width: '92%',
+ height: 40,
+ borderRadius: 2,
+ border: '1px solid #DCDCDC'
+ },
+ value: description,
+ onChange: function onChange(e) {
+ setdescription(e.target.value);
+ }
+ }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)(es_checkbox/* default */.Z, {
+ className: "ml40 font14",
+ style: {
+ marginLeft: '23px',
+ marginTop: '10px'
+ },
+ checked: hidden,
+ onChange: function onChange(e) {
+ sethidden(e.target.checked);
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ display: 'inline-block',
+ transform: 'translateY(1px)'
+ },
+ children: "\u9690\u85CF"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(markdown_editor/* default */.Z, {
+ defaultValue: RightItems.md_content,
+ onChange: function onChange(e) {
+ return setDefaultcontent(e);
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(upload/* default */.Z, objectSpread2_default()(objectSpread2_default()({}, uploadProps), {}, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "inline-block current",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomButton */.op, {
+ style: {
+ borderRadius: 2,
+ marginTop: 18
+ },
+ children: "\u4E0A\u4F20\u9644\u4EF6"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "ml25 c-grey-999",
+ children: "(\u5355\u4E2A\u6587\u4EF6150M\u4EE5\u5185)"
+ })]
+ })), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Contentmodules.btns,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Contentmodules.cancel,
+ onClick: function onClick() {
+ return setisedit(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(AsyncButton/* AsyncButton */.Z, {
+ className: Contentmodules.confirm,
+ type: "primary",
+ onClick: updateItem,
+ children: "\u4FDD\u5B58\u66F4\u6539"
+ })]
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [!(RightItems !== null && RightItems !== void 0 && RightItems.md_content) && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {}), /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, {
+ style: {
+ marginBottom: 30,
+ width: "calc(1015px - 60px)"
+ },
+ value: RightItems.md_content || ''
+ }), RightItems && RightItems.attachments && RightItems.attachments.map(function (item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ href: (env/* default */.Z === null || env/* default */.Z === void 0 ? void 0 : env/* default.API_SERVER */.Z.API_SERVER) + item.url,
+ target: "_self",
+ download: item.title,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ style: {
+ color: '#29BD8B'
+ },
+ className: "font-14 color-green iconfont icon-fujian mr8"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: item.title
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000',
+ marginLeft: '10px'
+ },
+ children: item.filesize
+ })]
+ })
+ });
+ })]
+ })
+ });
+};
+/* harmony default export */ var Content = ((0,_umi_production_exports.connect)(function (_ref2) {
+ var competitions = _ref2.competitions,
+ loading = _ref2.loading,
+ globalSetting = _ref2.globalSetting,
+ user = _ref2.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(competitionsPage));
+// EXTERNAL MODULE: ./src/pages/Competitions/Detail/Challitems.tsx + 1 modules
+var Challitems = __webpack_require__(75725);
+// EXTERNAL MODULE: ./src/pages/Competitions/Detail/AwardPdf.tsx + 12 modules
+var AwardPdf = __webpack_require__(61612);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/view/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+var view_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+var view_competitionsPage = function competitionsPage(_ref) {
+ var _Items$data, _Header$permission, _Header$permission2, _Header$permission3, _Items$data2, _user$userInfo, _Header$permission5, _types$find;
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, view_excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ var Header = competitions.Header,
+ RightItems = competitions.RightItems,
+ Staff = competitions.Staff,
+ Prizes = competitions.Prizes,
+ Account = competitions.Account;
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ items = _useState2[0],
+ setitems = _useState2[1];
+ var _useState3 = (0,react.useState)('qit'),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ typesof = _useState4[0],
+ settypesof = _useState4[1];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ isloading = _useState6[0],
+ setisloading = _useState6[1];
+ var _useState7 = (0,react.useState)([]),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ Items = _useState8[0],
+ setItems = _useState8[1];
+ var _useState9 = (0,react.useState)(false),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ isedit = _useState10[0],
+ setisedit = _useState10[1];
+ var _useState11 = (0,react.useState)(),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ selectedKeys = _useState12[0],
+ setselectedKeys = _useState12[1];
+ var types = [{
+ type: 'entrance',
+ content: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginLeft: 20
+ },
+ children: [(Items === null || Items === void 0 ? void 0 : (_Items$data = Items.data) === null || _Items$data === void 0 ? void 0 : _Items$data.length) <= 0 && ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission = Header.permission) === null || _Header$permission === void 0 ? void 0 : _Header$permission.editable)) && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {
+ ButtonText: "\u53BB\u8BBE\u7F6E",
+ Buttonclass: viewmodules.button,
+ ButtonClick: function ButtonClick() {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '1'
+ }
+ });
+ },
+ customText: "\u60A8\u8FD8\u6CA1\u6709\u8BBE\u7F6E\u8D5B\u9898"
+ }), moment_default()() < moment_default()(Header === null || Header === void 0 ? void 0 : Header.start_time) && !(Header !== null && Header !== void 0 && (_Header$permission2 = Header.permission) !== null && _Header$permission2 !== void 0 && _Header$permission2.editable) && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {
+ customText: "\u8D5B\u9898\u5C06\u5728".concat(Header === null || Header === void 0 ? void 0 : Header.start_time, "\u5C55\u793A")
+ }), (moment_default()() > moment_default()(Header === null || Header === void 0 ? void 0 : Header.start_time) || (0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission3 = Header.permission) === null || _Header$permission3 === void 0 ? void 0 : _Header$permission3.editable)) && (Items === null || Items === void 0 ? void 0 : (_Items$data2 = Items.data) === null || _Items$data2 === void 0 ? void 0 : _Items$data2.map(function (item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(Challitems/* default */.Z, {
+ dispatch: dispatch,
+ Header: Header,
+ StaffDetail: Staff,
+ item: item,
+ index: index
+ });
+ }))]
+ })
+ }, {
+ type: 'certificate',
+ content: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: '15px 30px'
+ },
+ children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)(AwardPdf/* default */.Z, {
+ dispatch: dispatch,
+ userid: user === null || user === void 0 ? void 0 : (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.user_id,
+ Prize: Prizes,
+ Accounts: Account,
+ getAccounts: function getAccounts() {
+ var _user$userInfo2;
+ dispatch({
+ type: 'competitions/Accounts',
+ payload: {
+ id: user === null || user === void 0 ? void 0 : (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.user_id
+ }
+ });
+ }
+ })]
+ })
+ }, {
+ type: 'qit',
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)(Content, {
+ isedit: isedit,
+ setisedit: setisedit,
+ selectedKeys: selectedKeys
+ })
+ }];
+
+ // useEffect(() => {
+ // console.log('--', moment() < moment(Header?.start_time), moment(), moment(Header?.start_time),);
+
+ // }, [Header?.start_time])
+ (0,react.useEffect)(function () {
+ var _Header$competition_m;
+ if ((Header === null || Header === void 0 ? void 0 : (_Header$competition_m = Header.competition_modules) === null || _Header$competition_m === void 0 ? void 0 : _Header$competition_m.length) > 0) {
+ var _Header$competition_m2, _Header$competition_m3, _Header$competition_m4, _Header$competition_m5, _Header$competition_m6, _Header$competition_m7, _Header$competition_m8;
+ if ((Header === null || Header === void 0 ? void 0 : (_Header$competition_m2 = Header.competition_modules) === null || _Header$competition_m2 === void 0 ? void 0 : (_Header$competition_m3 = _Header$competition_m2[0]) === null || _Header$competition_m3 === void 0 ? void 0 : _Header$competition_m3.module_type) === 'entrance') {
+ settypesof("entrance");
+ }
+ setselectedKeys(Header === null || Header === void 0 ? void 0 : (_Header$competition_m4 = Header.competition_modules) === null || _Header$competition_m4 === void 0 ? void 0 : (_Header$competition_m5 = _Header$competition_m4[0]) === null || _Header$competition_m5 === void 0 ? void 0 : _Header$competition_m5.id);
+ dispatch({
+ type: 'competitions/getItem',
+ payload: {
+ url: Header === null || Header === void 0 ? void 0 : (_Header$competition_m6 = Header.competition_modules) === null || _Header$competition_m6 === void 0 ? void 0 : (_Header$competition_m7 = _Header$competition_m6[0]) === null || _Header$competition_m7 === void 0 ? void 0 : _Header$competition_m7.module_url
+ }
+ });
+ var list = Header === null || Header === void 0 ? void 0 : (_Header$competition_m8 = Header.competition_modules) === null || _Header$competition_m8 === void 0 ? void 0 : _Header$competition_m8.map(function (item) {
+ return objectSpread2_default()(objectSpread2_default()({}, item), {}, {
+ label: item === null || item === void 0 ? void 0 : item.name,
+ key: item === null || item === void 0 ? void 0 : item.id,
+ className: viewmodules.muitem,
+ onClick: function () {
+ var _onClick = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var _Header$permission4, _user$userInfo3, _user$userInfo4;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ setselectedKeys(item === null || item === void 0 ? void 0 : item.id);
+ setisedit(false);
+ setisloading(true);
+ window.scrollTo(0, 500);
+ if (!(item.module_type === 'entrance')) {
+ _context.next = 11;
+ break;
+ }
+ if ((0,authority/* isAdmins */.eB)() || (_Header$permission4 = Header.permission) !== null && _Header$permission4 !== void 0 && _Header$permission4.editable) {} else {
+ if (!(Header !== null && Header !== void 0 && Header.team_member_present) && !(Staff !== null && Staff !== void 0 && Staff.enroll_ended)) {
+ if (Header.personal) {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '6'
+ }
+ });
+ } else {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '4'
+ }
+ });
+ }
+ }
+ }
+ settypesof("entrance");
+ getshixun();
+ setisloading(false);
+ _context.next = 23;
+ break;
+ case 11:
+ if (!(item.module_type === 'certificate')) {
+ _context.next = 19;
+ break;
+ }
+ settypesof("certificate");
+ _context.next = 15;
+ return dispatch({
+ type: 'competitions/Prize',
+ payload: {
+ identifier: identifier,
+ user_id: user === null || user === void 0 ? void 0 : (_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.user_id
+ //user_id:39416
+ }
+ });
+ case 15:
+ dispatch({
+ type: 'competitions/Accounts',
+ payload: {
+ id: user === null || user === void 0 ? void 0 : (_user$userInfo4 = user.userInfo) === null || _user$userInfo4 === void 0 ? void 0 : _user$userInfo4.user_id
+ }
+ });
+ setisloading(false);
+ _context.next = 23;
+ break;
+ case 19:
+ settypesof("qit");
+ _context.next = 22;
+ return dispatch({
+ type: 'competitions/getItem',
+ payload: {
+ url: item.module_url
+ }
+ });
+ case 22:
+ setisloading(false);
+ case 23:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ function onClick() {
+ return _onClick.apply(this, arguments);
+ }
+ return onClick;
+ }()
+ });
+ }).filter(function (item) {
+ return (item === null || item === void 0 ? void 0 : item.module_type) !== 'chart';
+ });
+ // console.log('---', list);
+
+ setitems(list);
+ }
+ }, [Header]);
+ function getshixun() {
+ return _getshixun.apply(this, arguments);
+ }
+ function _getshixun() {
+ _getshixun = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/get_shixun_settings.json"), {
+ method: 'get'
+ });
+ case 2:
+ res = _context2.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ setItems(res);
+ }
+ case 4:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return _getshixun.apply(this, arguments);
+ }
+ (0,react.useEffect)(function () {
+ if (competitions.actionTabs.key === 'entrance') {
+ var _Header$competition_m9;
+ // setMenuActive('赛题设置')
+ settypesof("entrance");
+ var _items = Header === null || Header === void 0 ? void 0 : (_Header$competition_m9 = Header.competition_modules) === null || _Header$competition_m9 === void 0 ? void 0 : _Header$competition_m9.find(function (item) {
+ return (item === null || item === void 0 ? void 0 : item.module_type) === 'entrance';
+ });
+ setselectedKeys(_items.id);
+ getshixun();
+ }
+ }, [competitions.actionTabs]);
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("section", {
+ className: viewmodules.bg,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: viewmodules.title,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u7ADE\u8D5B\u6982\u89C8"
+ }), ['qit', 'entrance'].includes(typesof) && ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission5 = Header.permission) === null || _Header$permission5 === void 0 ? void 0 : _Header$permission5.editable)) && /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ style: {
+ "float": 'right',
+ color: '#165DFF'
+ },
+ onClick: function onClick() {
+ if (typesof === 'qit') {
+ setisedit(true);
+ } else {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '1'
+ }
+ });
+ }
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-bianji10 font14",
+ style: {
+ color: '#165DFF'
+ }
+ }), " \u7F16\u8F91"]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(affix/* default */.Z, {
+ offsetTop: 52,
+ style: {
+ borderRight: '1px #F1F1F1 solid'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: viewmodules.left,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default */.Z, {
+ style: {
+ border: 'none'
+ },
+ selectedKeys: ["".concat(selectedKeys)],
+ items: items
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: viewmodules.right,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: isloading,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ minHeight: 200
+ },
+ children: (_types$find = types.find(function (item) {
+ return item.type === typesof;
+ })) === null || _types$find === void 0 ? void 0 : _types$find.content
+ })
+ })
+ })]
+ })]
+ });
+};
+/* harmony default export */ var view = ((0,_umi_production_exports.connect)(function (_ref2) {
+ var competitions = _ref2.competitions,
+ loading = _ref2.loading,
+ globalSetting = _ref2.globalSetting,
+ user = _ref2.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(view_competitionsPage));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Ranking/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var Rankingmodules = ({"flex_box_center":"flex_box_center___M4JlS","flex_space_between":"flex_space_between___ft0RM","flex_box_vertical_center":"flex_box_vertical_center___q2FOd","flex_box_center_end":"flex_box_center_end___sHMG4","flex_box_column":"flex_box_column____iI7H","bg":"bg___k6sPc","title":"title___g14V4","right":"right___m_DFD","left":"left___mwgoj","muitem":"muitem___oVuqT","searchWrap":"searchWrap___VZKxz","search":"search___NaLMi","searchIcon":"searchIcon___kyXjW","button":"button___9r1Cv","footer":"footer___FeXKb","clear_button":"clear_button___tLyhc","save_button":"save_button___jdXaq"});
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Ranking/icon/1.png
+var _1_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAuNJREFUOE+dlE1oXFUUx3/nvo/pzKtp4li0hkYHNw22m4qLxoWWSkG6UMSvgmC6kCzdSN25d2lBaF3ppoIb0a6kXVRKVxIohgiGlkpSa2OTGKeTeZ/3HrlvJulUFNSzetx7zu/877n/+2Tz3MxTiH5n4BFVAgQTPNmej6Ynrzs4LiLjojinbk2M+ab8/sZLutabRHEKDlisWu6oAHQ/PTLjlEtmfFczPDSFGWuBs2jRB1uBzwoiJGqBMbi7XcqFFSQrf4nUzDTnri7XIB/9K69+JE/sPY06tLcOeQ/UgiuoSSYGCaA5hiQPQ2nh1vps8/mvPvf1NahYnn3Wya6rWuWRbt5Bqh5SrCM2BXTYStAwwcVtiHYj448jxvzaqPLD0vnsTg3KVuYW1LmDunELqfoYe+9+/bbkYVdFsNEYxAlmYhJVvmxOnXtT8punTmrYOO+6v0F2j8CWtU4nBvVHkeHp1SFqMX7EHhaEsLuNScZVquppyZffPa/OnXQbKxiCWokTu6Mj65Y4q7Qm4sGaQkCIw6G+z8R+jNgPJf15do0ia2tvAyNNnPq5DKK7mtO7m9NIAtqd5IFDGmngNEPGHkWC8FvJbr5TuawXkG4NB7s93EFdulnS/734C8jvGLyNJJlAonhJshtvFy7vR2S9kY73P/8ZNMiR1h4kjBYlXXrrttpiH+n/A5Hs8Sb9WtKlN86q6hxbf/x3RWKg9RBg35f0p1eOQXBR80ywFu/sfxcCcQxhaBU7VZsk/fHlS6p6jCIHE4H30o6j/wYbNsCVEMVg9Exr+sJ7Nai/cHw/Jp5Xp3ulKiFoDJTVwJHwJsSg6nNCROTaatI70ulcznYe7dYPJ54RcRdUdV/9g1Bval84Yge1qL9173aRa0TVieTAxdv17Y021MUXHkvL6GOE1z2nZgxexGhYET5Z3Sg/6By9nG1vPJgyXM3nX5x2gb7m4DmBjqqWglxHuKLOfJEcHqgYjT8BLuRat62RywwAAAAASUVORK5CYII=";
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Ranking/icon/2.png
+var _2_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAyZJREFUOE91VE1oVFcU/s69703eJBNSg2iysDXJEIkWIv6hFaUWXLSILoSIurAru9JFu+q2i+5a0bUL3biQQuuuoBQMGBcmGsdJZyjOmESNia0mgn0z895958h5SSaJ4oH7uPfcw3e/8333Pvr6ynSfY7kNkfUQWCKYw5v9u9/0mFki8xUgHRAkIOj6xsWx+snKgnwCCEPAIPwV9352lADg8OWp/UJys7eDsqcGfGxoNYAApJ+lSGe0mCn+m+BaKUbo6JG49gO3vut8kwJpXL4z88vebvO9gYBEYAAwJ+AkUURY6wFkIApGhFc1Ruk/+vLswe7b6Rn6KT2f+0IiGYaINSJI4joa9bdIXIyUWhoE3w/Qks2BrA8mAgz93RlgT1dX1/8kIlSanC1D0L8M4qKw2ZLWy0qHICL4Le0g64GNUfa/DvR2/0DFJy/OkOCKgpC24mqpFmT8xaFIyosTCLt0aM74WTAZVdsFkllPxcrMbwQc97SaY8WAQPUgOOdQqTyBcwn6+noQBC2pWSQOQhZMFski27P06PHz1wSs89OWGSy22daDBwXk+3pgPQ8TEyXs3r2j6aEhAYtBgxnGmAtU+OdZYpSpUZ8Uvmkk5uZeYuPGDYjjGIXCBHbu3L6i3VJ1w6mr5ncaL09H1pCfsStMmtUAwjBEsVjGtm1b0NbWtnornddip8dfo/Hy1DSENmUzqUprYn5+AdXqJAYHP4fnfbgvIggbMciYn+l+aeoSJ3wuF2SaDi2jDQ+PoL09pxogmw3Q359fc1DsEtSjGNaaI3S/NLmPHd/xPUtBxv+A1ccTgre1CMIyUy2Pfpoqe69Q/YOZj+VaW+B9RKv3AWuNCA1lQ/TtrsH81RRoZOJpp41qowL05FqDVA/dEH13yy42DRWE9Qj1RgRr7PU92/Mnmm9NJ2Njj/MR8Q1h3prxPQRBBr4CLt1sFkYUOdTqDbiElfn1cCF/+tAhcmuAdPHw4WxbGL/5iYXPi8BL36XR/4GoFlCXiOiFIfPjvl1brq5ud+X2rcqOjlY6YnJDCfMABJshqJHBpEd2ZKo6/ufQ0FDyvmbvANHBbUYnb2MgAAAAAElFTkSuQmCC";
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Ranking/icon/3.png
+var _3_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAA0JJREFUOE+NU11oXEUU/s7MvXfv7t1NdpdUBH+jRdzYWKlVrFpoq2KFog+FiBaqVCm+6IOC4Jv44Iuo4JsSaGIhShG0T0YSA2m1Fm36oo2FWqhJTZZtus1usj/33pk5MnetdrsKHpiHmfnOd875+A4tHNx0JwlnFsAAAAmC8Ia3/eBterQMwi6A+wHSAJUF89H16c+f48pingGDzpm5+cb80wQAv79y3yMCmBIbbkr7D+2GyBXAIBjpgEmAGCDWIKNgE9TF82if/BqIWj8Hxtle/GSulhDZuHTozfflHcOvQ0goN412pBC1WtC6kyxdD34mA48MpGqD12sw5Qs7Nhx4z06TYFA/8dnDWuljRkgZyQwaV6pQYZgU4KuVEjAhlc0ikwvgRg0QYT7fpx+kzfsbxMy0enziLBPdFXk5hPU6jFIgsmJ5gBAAM1hrmDhOaJ10GinfgxutAyQ+KGx//g1a+W7iBaH1mEploTTBRCHIcSFSXkJ2bbAx0O0QMAYynYarW5A6VpxxB+jy7OEvANobZ/Iw2iTJZLsAEIYhfjkzD2M0hkolBEGQvButOx2zhmzXQcI9SCuzh6tGuAXj57qq28vssePYfO8wHMfBjz+dwq6dO7oxzBDNqhX6Q6rMjGvj+gJ+tocoimIrKCqVCpaWl/HA1q09GFq3ROZLKs+MRXB9F//Skc1ardVw7txvyAYBSqW7e4h47bL12AQtTY8tQDq3iGyhBzR3+jTu37IleZ+a/hZPPP7YdaMZ6Nolq9e7tDx16CPN5lWZvwFEHZGvxpn5X1G9Uk3MVCwWcM/QUNe/CVvQjVWQcPbQxenxbazV98IPSGZ6BVexSmxrBe/2AiOqrwBaL52s5W5NjLIwOfqVYX7G7R9IVuH/RNyoQzXXAOm8OPjkgfGEaHFytKjYnGLQYKqvCOn5/8nFzLAkcXMNjnSO3Lb7pWct+G/rLk6Oboy0OcpshpxUBm4mC+H+427rahW2ETfr0CqGdOSRwdQf+2jn26qLyF7K33waNFT7HW30a2A4iculhO2Cje5ssKBlIZ23Nj718vi1bXcv018/56c+7ufYGdEqKhHR7WBukcAFAffEXLNvcmRkRF8/+59ZfmcgM6jazwAAAABJRU5ErkJggg==";
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Ranking/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Ranking_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Ranking_competitionsPage = function competitionsPage(_ref) {
+ var _Header$permission, _Header$permission2, _RanKingList$descript, _Header$permission3, _Header$permission4, _Header$permission5;
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, Ranking_excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ var Header = competitions.Header,
+ RightItems = competitions.RightItems,
+ Staff = competitions.Staff,
+ Prizes = competitions.Prizes,
+ Account = competitions.Account;
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ items = _useState2[0],
+ setitems = _useState2[1];
+ var _useState3 = (0,react.useState)('qit'),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ typesof = _useState4[0],
+ settypesof = _useState4[1];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ isloading = _useState6[0],
+ setisloading = _useState6[1];
+ var _useState7 = (0,react.useState)(false),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ hidden = _useState8[0],
+ sethidden = _useState8[1];
+ var _useState9 = (0,react.useState)(false),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ isedit = _useState10[0],
+ setisedit = _useState10[1];
+ var _useState11 = (0,react.useState)({
+ page: 1,
+ per_page: 10,
+ keyword: ''
+ }),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ param = _useState12[0],
+ setparam = _useState12[1];
+ // const [keyword, setKeyword] = useState('')
+
+ var _useState13 = (0,react.useState)(''),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ selectedKeys = _useState14[0],
+ setselectedKeys = _useState14[1];
+ var _useState15 = (0,react.useState)(''),
+ _useState16 = slicedToArray_default()(_useState15, 2),
+ defaultcontent = _useState16[0],
+ setDefaultcontent = _useState16[1];
+ var _useState17 = (0,react.useState)(),
+ _useState18 = slicedToArray_default()(_useState17, 2),
+ RanKingList = _useState18[0],
+ setRanKingList = _useState18[1];
+ var _useState19 = (0,react.useState)(''),
+ _useState20 = slicedToArray_default()(_useState19, 2),
+ md_id = _useState20[0],
+ setmd_id = _useState20[1];
+ //获取课题
+ function getdatas() {
+ return _getdatas.apply(this, arguments);
+ }
+ function _getdatas() {
+ _getdatas = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ var res, _res$data, _res$data$, _res$data2, _res$data2$, _res$data3, list;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ _context3.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/competition_questions.json"), {
+ method: 'get'
+ });
+ case 2:
+ res = _context3.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ setselectedKeys(res === null || res === void 0 ? void 0 : (_res$data = res.data) === null || _res$data === void 0 ? void 0 : (_res$data$ = _res$data[0]) === null || _res$data$ === void 0 ? void 0 : _res$data$.identifier);
+ getrank(res === null || res === void 0 ? void 0 : (_res$data2 = res.data) === null || _res$data2 === void 0 ? void 0 : (_res$data2$ = _res$data2[0]) === null || _res$data2$ === void 0 ? void 0 : _res$data2$.identifier);
+ list = res === null || res === void 0 ? void 0 : (_res$data3 = res.data) === null || _res$data3 === void 0 ? void 0 : _res$data3.map(function (item) {
+ return objectSpread2_default()(objectSpread2_default()({}, item), {}, {
+ label: item === null || item === void 0 ? void 0 : item.name,
+ key: item === null || item === void 0 ? void 0 : item.identifier,
+ className: Rankingmodules.muitem,
+ onClick: function () {
+ var _onClick = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ setselectedKeys(item.identifier);
+ getrank(item.identifier);
+ case 2:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ function onClick() {
+ return _onClick.apply(this, arguments);
+ }
+ return onClick;
+ }()
+ });
+ });
+ setitems(list);
+ setmd_id(res === null || res === void 0 ? void 0 : res.md_id);
+ sethidden(res === null || res === void 0 ? void 0 : res.hidden_ranking);
+ }
+ case 4:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ return _getdatas.apply(this, arguments);
+ }
+ (0,react.useEffect)(function () {
+ getdatas();
+ }, []);
+ function getrank(_x) {
+ return _getrank.apply(this, arguments);
+ }
+ function _getrank() {
+ _getrank = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4(id) {
+ var url, res, _res$data4;
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ // question _identifier
+ url = Header !== null && Header !== void 0 && Header.personal ? "/api/competitions/".concat(identifier, "/competition_charts/person_ranking.json") : "/api/competitions/".concat(identifier, "/competition_charts/team_ranking.json");
+ _context4.next = 3;
+ return (0,fetch/* default */.ZP)(url, {
+ method: 'get',
+ params: objectSpread2_default()(objectSpread2_default()({}, param), {}, {
+ question_identifier: id || selectedKeys
+ })
+ });
+ case 3:
+ res = _context4.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ setRanKingList(res === null || res === void 0 ? void 0 : res.data);
+ setDefaultcontent(res === null || res === void 0 ? void 0 : (_res$data4 = res.data) === null || _res$data4 === void 0 ? void 0 : _res$data4.description);
+ }
+ case 5:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ }));
+ return _getrank.apply(this, arguments);
+ }
+ function getexerport(_x2) {
+ return _getexerport.apply(this, arguments);
+ }
+ function _getexerport() {
+ _getexerport = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5(id) {
+ var url;
+ return regeneratorRuntime_default()().wrap(function _callee5$(_context5) {
+ while (1) switch (_context5.prev = _context5.next) {
+ case 0:
+ url = Header !== null && Header !== void 0 && Header.personal ? "/api/competitions/".concat(identifier, "/competition_charts/person_ranking.xlsx") : "/api/competitions/".concat(identifier, "/competition_charts/team_ranking.xlsx");
+ (0,util/* downLoadFile */.FH)('', (0,util/* setUrlQuery */.NY)({
+ url: env/* default.API_SERVER */.Z.API_SERVER + url,
+ query: objectSpread2_default()(objectSpread2_default()({}, param), {}, {
+ question_identifier: id || selectedKeys
+ })
+ }));
+ case 2:
+ case "end":
+ return _context5.stop();
+ }
+ }, _callee5);
+ }));
+ return _getexerport.apply(this, arguments);
+ }
+ var handleSearch = function handleSearch(keyword) {
+ param.keyword = keyword;
+ setparam(objectSpread2_default()({}, param));
+ getrank();
+ };
+ var columns = [{
+ title: '排名',
+ align: 'center',
+ dataIndex: 'rank',
+ width: 80,
+ ellipsis: true,
+ render: function render(text, item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [text === 1 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: _1_namespaceObject
+ }), text === 2 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: _2_namespaceObject
+ }), text === 3 && /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: _3_namespaceObject
+ }), text > 3 && text]
+ });
+ }
+ }, {
+ title: Header !== null && Header !== void 0 && Header.personal ? '参赛人员' : '战队',
+ align: 'left',
+ dataIndex: 'name',
+ width: 222,
+ ellipsis: true,
+ render: function render(text, _render) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ width: 30,
+ height: 30,
+ style: {
+ borderRadius: "50%",
+ marginRight: "10px"
+ },
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + (_render === null || _render === void 0 ? void 0 : _render.image_url)
+ }), text || '- -']
+ });
+ }
+ }, {
+ title: '单位',
+ align: 'left',
+ dataIndex: 'school_name',
+ width: 533,
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: (text === null || text === void 0 ? void 0 : text[0]) == "" ? '- -' : text
+ });
+ }
+ }, {
+ title: '完成时长',
+ align: 'left',
+ dataIndex: 'times',
+ width: 195,
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '比赛成绩',
+ align: 'right',
+ dataIndex: 'all_score',
+ width: 100,
+ ellipsis: true,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '',
+ align: 'center',
+ dataIndex: '',
+ ellipsis: true,
+ width: 24
+ }];
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("section", {
+ className: Rankingmodules.bg,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ className: Rankingmodules.title,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, {
+ flex: "1",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#232B40'
+ },
+ children: "\u6392\u884C\u699C"
+ }), ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission = Header.permission) === null || _Header$permission === void 0 ? void 0 : _Header$permission.editable)) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_checkbox/* default */.Z, {
+ checked: hidden,
+ style: {
+ marginLeft: 10
+ },
+ onChange: function onChange(e) {
+ var _Header$competition_m, _Header$competition_m2;
+ sethidden(e.target.checked);
+ (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/update_md_hidden_raking.json"), {
+ method: 'POST',
+ body: {
+ hidden_raking: e.target.checked,
+ md_content_id: md_id,
+ competition_module_id: Header === null || Header === void 0 ? void 0 : (_Header$competition_m = Header.competition_modules) === null || _Header$competition_m === void 0 ? void 0 : (_Header$competition_m2 = _Header$competition_m.find(function (item) {
+ return item.module_type === 'chart';
+ })) === null || _Header$competition_m2 === void 0 ? void 0 : _Header$competition_m2.id
+ }
+ });
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#828693',
+ marginLeft: '-3px'
+ },
+ children: "\u9690\u85CF"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ children: ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission2 = Header.permission) === null || _Header$permission2 === void 0 ? void 0 : _Header$permission2.editable)) && /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ style: {
+ "float": 'right',
+ color: '#165DFF',
+ marginTop: '-2px'
+ },
+ onClick: function onClick() {
+ setisedit(true);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-bianji10 font14",
+ style: {
+ color: '#165DFF'
+ }
+ }), " \u7F16\u8F91"]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Rankingmodules.right,
+ children: [!!(RanKingList !== null && RanKingList !== void 0 && (_RanKingList$descript = RanKingList.description) !== null && _RanKingList$descript !== void 0 && _RanKingList$descript.length) && /*#__PURE__*/(0,jsx_runtime.jsx)(RenderHtml/* default */.Z, {
+ className: "pl20 pr20",
+ style: {
+ marginTop: 20,
+ marginBottom: 20,
+ fontSize: '14px',
+ color: '#6A7283'
+ },
+ value: RanKingList === null || RanKingList === void 0 ? void 0 : RanKingList.description
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, {
+ spinning: isloading,
+ children: isedit ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: 20
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(markdown_editor/* default */.Z, {
+ defaultValue: defaultcontent,
+ onChange: function onChange(e) {
+ return setDefaultcontent(e);
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Rankingmodules.footer,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Rankingmodules.clear_button,
+ onClick: function onClick() {
+ return setisedit(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Rankingmodules.save_button,
+ type: "primary",
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var _Header$competition_m3, _Header$competition_m4;
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/update_md_content.json"), {
+ method: 'POST',
+ body: {
+ content: defaultcontent,
+ md_content_id: md_id,
+ competition_module_id: Header === null || Header === void 0 ? void 0 : (_Header$competition_m3 = Header.competition_modules) === null || _Header$competition_m3 === void 0 ? void 0 : (_Header$competition_m4 = _Header$competition_m3.find(function (item) {
+ return item.module_type === 'chart';
+ })) === null || _Header$competition_m4 === void 0 ? void 0 : _Header$competition_m4.id
+ }
+ });
+ case 2:
+ res = _context.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ setisedit(false);
+ getrank();
+ }
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ })),
+ children: "\u4FDD\u5B58\u66F4\u6539"
+ })]
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: '0 20px 20px 20px'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginTop: 20,
+ display: 'flex'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Rankingmodules.searchWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default.Search */.Z.Search, {
+ placeholder: Header !== null && Header !== void 0 && Header.personal ? '请输入参赛人员名称' : '请输入战队名称',
+ size: "large",
+ className: Rankingmodules.search
+ // value={keyword}
+ ,
+ onChange: function onChange(e) {
+ param.keyword = e.target.value;
+ setparam(objectSpread2_default()({}, param));
+ },
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-sousuo9 font14 ".concat(Rankingmodules.searchIcon),
+ onClick: function onClick() {
+ return handleSearch(param.keyword);
+ }
+ }),
+ onSearch: handleSearch
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ flex: 1,
+ textAlign: 'end'
+ },
+ children: ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission3 = Header.permission) === null || _Header$permission3 === void 0 ? void 0 : _Header$permission3.editable)) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Rankingmodules.button,
+ onClick: function onClick() {
+ getexerport(selectedKeys);
+ },
+ children: "\u5BFC\u51FA\u540D\u5355"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Rankingmodules.left,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default */.Z, {
+ style: {
+ border: 'none',
+ width: 200,
+ overflow: 'auto'
+ },
+ mode: "horizontal",
+ selectedKeys: ["".concat(selectedKeys)],
+ items: items
+ })
+ }), !(Header !== null && Header !== void 0 && (_Header$permission4 = Header.permission) !== null && _Header$permission4 !== void 0 && _Header$permission4.editable) && hidden && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {
+ customText: '排行榜当前为封榜状态'
+ }), ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission5 = Header.permission) === null || _Header$permission5 === void 0 ? void 0 : _Header$permission5.editable) || !hidden) && /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomTable */.Gi, {
+ style: {
+ marginTop: 20,
+ marginLeft: 0
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ columns: columns,
+ dataSource: RanKingList === null || RanKingList === void 0 ? void 0 : RanKingList.ranking
+ })
+ })]
+ })
+ })]
+ })
+ })]
+ });
+};
+/* harmony default export */ var Ranking = ((0,_umi_production_exports.connect)(function (_ref3) {
+ var competitions = _ref3.competitions,
+ loading = _ref3.loading,
+ globalSetting = _ref3.globalSetting,
+ user = _ref3.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(Ranking_competitionsPage));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Team/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var Teammodules = ({"flex_box_center":"flex_box_center___Ix1yk","flex_space_between":"flex_space_between___Nvu1L","flex_box_vertical_center":"flex_box_vertical_center___FcD_R","flex_box_center_end":"flex_box_center_end___xtV5Z","flex_box_column":"flex_box_column___rSUdX","bg":"bg___Fi0Vv","title":"title___oBAHH","left":"left___x4G2N","muitem":"muitem___JmDfB","right":"right___RXHwC","searchWrap":"searchWrap___yt5Di","search":"search___sA8FE","searchIcon":"searchIcon___yiKfD","button":"button___ZPcVk","items":"items___wZfml","img":"img___f3zFn","names":"names___k3ZzZ","teamname":"teamname___or8vu","time":"time___qmAOy","createtime":"createtime___KKvxc","width30":"width30___NxY4W","loaderimg":"loaderimg___aQ_vt","scoreByBlankRadio":"scoreByBlankRadio___X8rMJ","scoremodal":"scoremodal___jE4qx","content":"content___wGyD2","bottom":"bottom___mdNOm","yes":"yes___hQBiA","no":"no___AOje6","bottoms":"bottoms___ogmBQ","drawer_style":"drawer_style___aspKt","baseFormItem":"baseFormItem___L4XPW","jsinput":"jsinput___IhGOr","Spanradius":"Spanradius___Phpyg","modal_close":"modal_close___yAd65","ant-btn-default":"ant-btn-default___HT0Nv","ssss":"ssss___RB5TB"});
+;// CONCATENATED MODULE: ./src/assets/images/isrenzheng.svg
+function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
+function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
+function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
+var __defProp = Object.defineProperty;
+var __getOwnPropSymbols = Object.getOwnPropertySymbols;
+var __hasOwnProp = Object.prototype.hasOwnProperty;
+var __propIsEnum = Object.prototype.propertyIsEnumerable;
+var __defNormalProp = function __defNormalProp(obj, key, value) {
+ return key in obj ? __defProp(obj, key, {
+ enumerable: true,
+ configurable: true,
+ writable: true,
+ value: value
+ }) : obj[key] = value;
+};
+var __spreadValues = function __spreadValues(a, b) {
+ for (var prop in b || (b = {})) if (__hasOwnProp.call(b, prop)) __defNormalProp(a, prop, b[prop]);
+ if (__getOwnPropSymbols) {
+ var _iterator = _createForOfIteratorHelper(__getOwnPropSymbols(b)),
+ _step;
+ try {
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
+ var prop = _step.value;
+ if (__propIsEnum.call(b, prop)) __defNormalProp(a, prop, b[prop]);
+ }
+ } catch (err) {
+ _iterator.e(err);
+ } finally {
+ _iterator.f();
+ }
+ }
+ return a;
+};
+
+var SvgIsrenzheng = function SvgIsrenzheng(props) {
+ return /* @__PURE__ */React.createElement("svg", __spreadValues({
+ className: "isrenzheng_svg__icon",
+ viewBox: "0 0 1024 1024",
+ xmlns: "http://www.w3.org/2000/svg",
+ width: 16,
+ height: 16
+ }, props), /* @__PURE__ */React.createElement("path", {
+ d: "M499.566 1020.635c-148.846 0-425.619-227.693-425.619-443.026V148.626l42.35-.731c.878 0 95.378-1.975 192.805-41.545C409.088 65.829 473.6 19.09 474.185 18.65L499.565.293 525.02 18.65c.586.44 65.098 47.104 165.084 87.772a604.453 604.453 0 0 0 192.95 41.545l42.058.731.22 428.837c0 215.333-276.7 443.1-425.692 443.1M159.89 230.838v346.697c0 166.546 241.08 357.083 339.676 357.083 98.596 0 339.675-190.537 339.675-357.083V230.839a691.639 691.639 0 0 1-181.467-44.837 1001.691 1001.691 0 0 1-158.208-80.969c-29.989 19.164-85.285 51.346-157.989 80.97a691.712 691.712 0 0 1-181.687 44.836m317.001 507.904L296.23 584.777l55.588-65.316 115.712 98.596 220.087-253.513 64.95 56.393-275.675 317.806",
+ fill: "#165DFF",
+ fillOpacity: 0.8
+ }));
+};
+
+/* harmony default export */ var isrenzheng = ("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPjxwYXRoIGQ9Ik00OTkuNTY2IDEwMjAuNjM1Yy0xNDguODQ2IDAtNDI1LjYxOS0yMjcuNjkzLTQyNS42MTktNDQzLjAyNlYxNDguNjI2bDQyLjM1LS43MzFjLjg3OCAwIDk1LjM3OC0xLjk3NSAxOTIuODA1LTQxLjU0NUM0MDkuMDg4IDY1LjgyOSA0NzMuNiAxOS4wOSA0NzQuMTg1IDE4LjY1TDQ5OS41NjUuMjkzIDUyNS4wMiAxOC42NWMuNTg2LjQ0IDY1LjA5OCA0Ny4xMDQgMTY1LjA4NCA4Ny43NzJhNjA0LjQ1MyA2MDQuNDUzIDAgMCAwIDE5Mi45NSA0MS41NDVsNDIuMDU4LjczMS4yMiA0MjguODM3YzAgMjE1LjMzMy0yNzYuNyA0NDMuMS00MjUuNjkyIDQ0My4xTTE1OS44OSAyMzAuODM4djM0Ni42OTdjMCAxNjYuNTQ2IDI0MS4wOCAzNTcuMDgzIDMzOS42NzYgMzU3LjA4MyA5OC41OTYgMCAzMzkuNjc1LTE5MC41MzcgMzM5LjY3NS0zNTcuMDgzVjIzMC44MzlhNjkxLjYzOSA2OTEuNjM5IDAgMCAxLTE4MS40NjctNDQuODM3IDEwMDEuNjkxIDEwMDEuNjkxIDAgMCAxLTE1OC4yMDgtODAuOTY5Yy0yOS45ODkgMTkuMTY0LTg1LjI4NSA1MS4zNDYtMTU3Ljk4OSA4MC45N2E2OTEuNzEyIDY5MS43MTIgMCAwIDEtMTgxLjY4NyA0NC44MzZtMzE3LjAwMSA1MDcuOTA0TDI5Ni4yMyA1ODQuNzc3bDU1LjU4OC02NS4zMTYgMTE1LjcxMiA5OC41OTYgMjIwLjA4Ny0yNTMuNTEzIDY0Ljk1IDU2LjM5My0yNzUuNjc1IDMxNy44MDYiIGZpbGw9IiMxNjVERkYiIGZpbGwtb3BhY2l0eT0iLjgiLz48L3N2Zz4=");
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Team/Team.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Team_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+var dropMenu1 = [{
+ id: '',
+ name: '全部'
+}, {
+ id: 1,
+ name: '战队名称'
+}, {
+ id: 2,
+ name: '队长姓名'
+}, {
+ id: 3,
+ name: '指导老师'
+}];
+var identityMap = {
+ "teacher": "教师",
+ "student": "学生",
+ "professional": "专业人士"
+};
+var Team_competitionsPage = function competitionsPage(_ref) {
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, Team_excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ var Header = competitions.Header,
+ RightItems = competitions.RightItems,
+ Staff = competitions.Staff,
+ Prizes = competitions.Prizes,
+ Account = competitions.Account;
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ userList = _useState2[0],
+ setuserList = _useState2[1];
+ var _useState3 = (0,react.useState)({
+ page: 1,
+ per_page: 10,
+ keyword: '',
+ type: '',
+ isteam: 'mine'
+ }),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ params = _useState4[0],
+ setparams = _useState4[1];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ isloading = _useState6[0],
+ setisloading = _useState6[1];
+ //获取课题/api/competitions/{id}/all_team_members.json
+ function getdatas() {
+ return _getdatas.apply(this, arguments);
+ }
+ function _getdatas() {
+ _getdatas = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5() {
+ var url, res;
+ return regeneratorRuntime_default()().wrap(function _callee5$(_context5) {
+ while (1) switch (_context5.prev = _context5.next) {
+ case 0:
+ setisloading(true);
+ url = params.isteam === "mine" ? "/api/competitions/".concat(identifier, "/competition_teams.json") : "/api/competitions/".concat(identifier, "/all_team_members.json");
+ _context5.next = 4;
+ return (0,fetch/* default */.ZP)(url, {
+ method: 'get',
+ params: params
+ });
+ case 4:
+ res = _context5.sent;
+ setisloading(false);
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ setuserList(res);
+ }
+ case 7:
+ case "end":
+ return _context5.stop();
+ }
+ }, _callee5);
+ }));
+ return _getdatas.apply(this, arguments);
+ }
+ (0,react.useEffect)(function () {
+ getdatas();
+ }, [Header]);
+ var columns = [{
+ title: '序号',
+ align: 'left',
+ dataIndex: 'name',
+ width: 62,
+ render: function render(text, item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: index + 1
+ });
+ }
+ }, {
+ title: '战队ID',
+ align: 'left',
+ dataIndex: 'competition_team_id',
+ width: 72,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '战队名称',
+ align: 'left',
+ dataIndex: 'team_name',
+ width: 175,
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000'
+ },
+ children: text || '- -'
+ })
+ });
+ }
+ }, {
+ title: '队员姓名',
+ align: 'left',
+ dataIndex: 'name',
+ width: 110,
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: [text || '- -', (record === null || record === void 0 ? void 0 : record.authentication) && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: "\u5DF2\u5B9E\u540D\u8BA4\u8BC1",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: isrenzheng,
+ style: {
+ marginLeft: 5,
+ marginTop: '-2px'
+ }
+ })
+ })]
+ });
+ }
+ }, {
+ title: '个人成绩',
+ // align: 'right',
+ dataIndex: 'score',
+ width: 86,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: (text === null || text === void 0 ? void 0 : text.toString()) || '- -'
+ });
+ }
+ }, {
+ title: '角色',
+ align: 'left',
+ dataIndex: 'identity',
+ width: 102,
+ render: function render(text, record) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: [identityMap[text], (record === null || record === void 0 ? void 0 : record.professional_certification) && /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: "\u5DF2\u804C\u4E1A\u8BA4\u8BC1",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: isrenzheng,
+ style: {
+ marginLeft: 5,
+ marginTop: '-2px'
+ }
+ })
+ })]
+ });
+ }
+ }, {
+ title: '手机号',
+ align: 'left',
+ dataIndex: 'phone',
+ width: 120,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: text || '- -'
+ });
+ }
+ },
+ // {
+ // title: '邮箱',
+ // align: 'left',
+ // dataIndex: 'mail',
+ // width: 135,
+ // render: (text: any) => {text || '- -'},
+ // },
+ {
+ title: '学号/工号',
+ align: 'left',
+ width: 110,
+ ellipsis: {
+ showTitle: false
+ },
+ dataIndex: 'student_id',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '学校/单位',
+ align: 'left',
+ dataIndex: 'school',
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: text || '- -'
+ })
+ });
+ }
+ }, {
+ title: '地区',
+ align: 'left',
+ dataIndex: 'province',
+ width: 58,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '操作',
+ align: 'right',
+ dataIndex: 'is_cancel_score',
+ width: 120,
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text === 0 ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: "#165DFF",
+ cursor: 'pointer'
+ },
+ onClick: function onClick() {
+ modal/* default.confirm */.Z.confirm({
+ icon: null,
+ title: '取消成绩',
+ content: '请确认是否取消该成员成绩,取消后该成员的成绩将不能用于团队成绩。',
+ onOk: function () {
+ var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/set_score_status.json"), {
+ method: 'put',
+ body: {
+ competition_score_id: item === null || item === void 0 ? void 0 : item.competition_score_id,
+ is_cancel_score: 1
+ }
+ });
+ case 2:
+ res = _context.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ params.page = 1;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ }
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ function onOk() {
+ return _onOk.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ },
+ children: "\u53D6\u6D88\u6210\u7EE9"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/set_score_status.json"), {
+ method: 'put',
+ body: {
+ competition_score_id: item === null || item === void 0 ? void 0 : item.competition_score_id,
+ is_cancel_score: 0
+ }
+ });
+ case 2:
+ res = _context2.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ params.page = 1;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ }
+ case 4:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ style: {
+ color: "#FD9200",
+ cursor: 'pointer'
+ },
+ children: "\u6062\u590D\u6210\u7EE9"
+ })
+ });
+ }
+ }];
+ var columns1 = [{
+ title: '序号',
+ align: 'left',
+ dataIndex: 'name',
+ width: 72,
+ render: function render(text, item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: index + 1
+ });
+ }
+ }, {
+ title: '战队ID',
+ align: 'left',
+ dataIndex: 'id',
+ width: 113,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '战队名称',
+ align: 'left',
+ dataIndex: 'name',
+ width: 167,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: text === null || text === void 0 ? void 0 : text.toString()
+ });
+ }
+ }, {
+ title: '战队成绩',
+ align: 'left',
+ dataIndex: 'score',
+ width: 136,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#000000'
+ },
+ children: text
+ });
+ }
+ }, {
+ title: '队长姓名',
+ align: 'left',
+ dataIndex: 'leader_name',
+ width: 149,
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text, item) {
+ var _item$creator, _item$creator2;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: item === null || item === void 0 ? void 0 : (_item$creator = item.creator) === null || _item$creator === void 0 ? void 0 : _item$creator.name,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: (item === null || item === void 0 ? void 0 : (_item$creator2 = item.creator) === null || _item$creator2 === void 0 ? void 0 : _item$creator2.name) || '- -'
+ })
+ });
+ }
+ }, {
+ title: '指导老师',
+ align: 'left',
+ dataIndex: 'mail',
+ width: 150,
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text, item) {
+ var _item$creator3, _item$team_members, _item$team_members$fi;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: item === null || item === void 0 ? void 0 : (_item$creator3 = item.creator) === null || _item$creator3 === void 0 ? void 0 : _item$creator3.name,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: (item === null || item === void 0 ? void 0 : (_item$team_members = item.team_members) === null || _item$team_members === void 0 ? void 0 : (_item$team_members$fi = _item$team_members.filter(function (item) {
+ return item === null || item === void 0 ? void 0 : item.is_teacher;
+ })) === null || _item$team_members$fi === void 0 ? void 0 : _item$team_members$fi.map(function (item) {
+ return item.name;
+ }).toString()) || '- -'
+ })
+ });
+ }
+ }, {
+ title: '战队人数',
+ align: 'left',
+ dataIndex: 'mail',
+ width: 125,
+ render: function render(text, item) {
+ var _item$team_members2;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: (item === null || item === void 0 ? void 0 : (_item$team_members2 = item.team_members) === null || _item$team_members2 === void 0 ? void 0 : _item$team_members2.length) || '- -'
+ });
+ }
+ }, {
+ title: '报名时间',
+ align: 'left',
+ dataIndex: 'created_at',
+ width: 165,
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#666666'
+ },
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '操作',
+ align: 'right',
+ dataIndex: 'is_cancel_score',
+ // width:66,
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text === 0 ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: "#165DFF",
+ cursor: 'pointer'
+ },
+ onClick: function onClick() {
+ modal/* default.confirm */.Z.confirm({
+ icon: null,
+ centered: true,
+ title: '取消成绩',
+ content: '请确认是否取消该战队成绩,取消后该战队的成绩在排行榜将视为无成绩,不进行排名。',
+ onOk: function () {
+ var _onOk2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ _context3.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/set_score_status.json"), {
+ method: 'put',
+ body: {
+ competition_team_id: item === null || item === void 0 ? void 0 : item.id,
+ is_cancel_score: 1
+ }
+ });
+ case 2:
+ res = _context3.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ params.page = 1;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ }
+ case 4:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ function onOk() {
+ return _onOk2.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ },
+ children: "\u53D6\u6D88\u6210\u7EE9"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ _context4.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/set_score_status.json"), {
+ method: 'put',
+ body: {
+ competition_team_id: item === null || item === void 0 ? void 0 : item.id,
+ is_cancel_score: 0
+ }
+ });
+ case 2:
+ res = _context4.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ params.page = 1;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ }
+ case 4:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ })),
+ style: {
+ color: "#FD9200",
+ cursor: 'pointer'
+ },
+ children: "\u6062\u590D\u6210\u7EE9"
+ })
+ });
+ }
+ }];
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: '15px 0',
+ width: '1200px',
+ margin: 'auto'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ marginTop: '-10px'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default.Group */.ZP.Group, {
+ className: Teammodules.scoreByBlankRadio,
+ optionType: "button",
+ options: [{
+ label: '战队信息',
+ value: 'mine'
+ }, {
+ label: '队员信息',
+ value: 'join'
+ }],
+ onChange: function onChange(e) {
+ params.isteam = e.target.value;
+ params.page = 1;
+ getdatas();
+ },
+ value: params.isteam
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ flex: 1,
+ textAlign: 'end',
+ display: 'flex',
+ justifyContent: 'end'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomInput */.t7, {
+ style: {
+ width: 327,
+ marginRight: 20
+ },
+ dataSource: dropMenu1,
+ value: {
+ id: params.type,
+ value: params.keyword
+ },
+ onChange: function onChange(input, id) {
+ params.keyword = input;
+ params.type = id || '';
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ placeholder: "\u8BF7\u8F93\u5165\u641C\u7D22\u5185\u5BB9"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.button,
+ onClick: function onClick() {
+ var url = params.isteam === "mine" ? "/api/competitions/".concat(identifier, "/competition_teams.xlsx") : "/api/competitions/".concat(identifier, "/all_team_members.xlsx");
+ (0,util/* downLoadFile */.FH)('', (0,util/* setUrlQuery */.NY)({
+ url: env/* default.API_SERVER */.Z.API_SERVER + url,
+ query: objectSpread2_default()({}, params)
+ }));
+ },
+ children: "\u5BFC\u51FA"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomTable */.Gi, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ loading: isloading,
+ style: {
+ marginTop: 20
+ },
+ scroll: {
+ y: 300
+ },
+ columns: params.isteam === 'mine' ? columns1 : columns,
+ dataSource: params.isteam === 'mine' ? userList === null || userList === void 0 ? void 0 : userList.competition_teams : userList === null || userList === void 0 ? void 0 : userList.data,
+ pagination: false
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.countWrap,
+ style: {
+ marginTop: 20
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, {
+ showQuickJumper: true,
+ hideOnSinglePage: true,
+ showTotal: function showTotal(e) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ fontSize: 14
+ },
+ children: ["\u5171 ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#165DFF'
+ },
+ children: e
+ }), " \u6761\u6570\u636E"]
+ });
+ },
+ showSizeChanger: true,
+ pageSizeOptions: ['10', '15', '50', '100', '200'],
+ total: userList === null || userList === void 0 ? void 0 : userList.count,
+ onChange: function onChange(page, pageSize) {
+ params.page = page;
+ params.per_page = pageSize;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ pageSize: params.per_page
+ // hideOnSinglePage={true}
+ ,
+ current: params.page
+ })
+ })]
+ });
+};
+/* harmony default export */ var Team = ((0,_umi_production_exports.connect)(function (_ref4) {
+ var competitions = _ref4.competitions,
+ loading = _ref4.loading,
+ globalSetting = _ref4.globalSetting,
+ user = _ref4.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(Team_competitionsPage));
+// EXTERNAL MODULE: ./node_modules/antd/es/popover/style/index.js + 1 modules
+var popover_style = __webpack_require__(63942);
+// EXTERNAL MODULE: ./node_modules/antd/es/popover/index.js
+var popover = __webpack_require__(55241);
+// EXTERNAL MODULE: ./node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.js
+var ExclamationCircleOutlined = __webpack_require__(87588);
+// EXTERNAL MODULE: ./node_modules/react-copy-to-clipboard/lib/index.js
+var lib = __webpack_require__(74855);
+// EXTERNAL MODULE: ./node_modules/react-cropper/dist/react-cropper.js
+var react_cropper = __webpack_require__(55761);
+// EXTERNAL MODULE: ./node_modules/cropperjs/dist/cropper.css
+var cropper = __webpack_require__(99579);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Team/StudentTeam.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var StudentTeam_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var StudentTeam_competitionsPage = function competitionsPage(_ref) {
+ var _Header$permission, _Header$permission2, _competition_team$my_, _competition_team$my_2, _competition_team$my_3, _competition_team$my_4, _competition_team$com, _competition_team$my_5, _competition_team$com2, _TeamItem$team_member, _Team$name, _Team$name2;
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, StudentTeam_excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ var Header = competitions.Header,
+ competition_team = competitions.competition_team,
+ Staff = competitions.Staff,
+ Prizes = competitions.Prizes,
+ Account = competitions.Account;
+ var _useState = (0,react.useState)({
+ page: 1,
+ per_page: 10,
+ keyword: '',
+ type: 1,
+ isteam: 'mine'
+ }),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ params = _useState2[0],
+ setparams = _useState2[1];
+ var _useState3 = (0,react.useState)([]),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ TeamItem = _useState4[0],
+ setTeamItem = _useState4[1];
+ var _useState5 = (0,react.useState)([]),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ EditTeamItem = _useState6[0],
+ setEditTeamItem = _useState6[1];
+ var _useState7 = (0,react.useState)(false),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ buttonloading = _useState8[0],
+ setbuttonloading = _useState8[1];
+ var _useState9 = (0,react.useState)([]),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ teachers = _useState10[0],
+ setTeachers = _useState10[1];
+ var _useState11 = (0,react.useState)(false),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ downteacher = _useState12[0],
+ setDownteacher = _useState12[1];
+ var _useState13 = (0,react.useState)(''),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ teachname = _useState14[0],
+ setTeachname = _useState14[1];
+ var _useState15 = (0,react.useState)(''),
+ _useState16 = slicedToArray_default()(_useState15, 2),
+ studentname = _useState16[0],
+ setStudentname = _useState16[1];
+ var _useState17 = (0,react.useState)([]),
+ _useState18 = slicedToArray_default()(_useState17, 2),
+ students = _useState18[0],
+ setStudents = _useState18[1];
+ var _useState19 = (0,react.useState)(false),
+ _useState20 = slicedToArray_default()(_useState19, 2),
+ downstudents = _useState20[0],
+ setDownstudents = _useState20[1];
+ var _useState21 = (0,react.useState)([]),
+ _useState22 = slicedToArray_default()(_useState21, 2),
+ loaderid = _useState22[0],
+ setLoaderid = _useState22[1];
+ var leaderidRef = (0,react.useRef)();
+ var _useState23 = (0,react.useState)(''),
+ _useState24 = slicedToArray_default()(_useState23, 2),
+ updateimg = _useState24[0],
+ setupdateimg = _useState24[1];
+ var updateimgRef = (0,react.useRef)("");
+ var _useState25 = (0,react.useState)(true),
+ _useState26 = slicedToArray_default()(_useState25, 2),
+ hasMore = _useState26[0],
+ setHasmore = _useState26[1];
+ var _useState27 = (0,react.useState)(false),
+ _useState28 = slicedToArray_default()(_useState27, 2),
+ isedit = _useState28[0],
+ setisedit = _useState28[1];
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState29 = (0,react.useState)(),
+ _useState30 = slicedToArray_default()(_useState29, 2),
+ imageurl = _useState30[0],
+ setimageurl = _useState30[1];
+ var Croppers = (0,react.useRef)(null);
+ var _useState31 = (0,react.useState)(),
+ _useState32 = slicedToArray_default()(_useState31, 2),
+ Team = _useState32[0],
+ setTeam = _useState32[1];
+ var _useState33 = (0,react.useState)(1),
+ _useState34 = slicedToArray_default()(_useState33, 2),
+ page = _useState34[0],
+ setPage = _useState34[1];
+ var _useState35 = (0,react.useState)(false),
+ _useState36 = slicedToArray_default()(_useState35, 2),
+ isLoading = _useState36[0],
+ setIsLoading = _useState36[1];
+
+ //获取课题/api/competitions/{id}/all_team_members.json
+ function getdatas() {
+ return _getdatas.apply(this, arguments);
+ }
+ function _getdatas() {
+ _getdatas = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee6() {
+ return regeneratorRuntime_default()().wrap(function _callee6$(_context6) {
+ while (1) switch (_context6.prev = _context6.next) {
+ case 0:
+ dispatch({
+ type: 'competitions/competition_teams',
+ payload: objectSpread2_default()(objectSpread2_default()({}, params), {}, {
+ identifier: identifier
+ })
+ });
+ case 1:
+ case "end":
+ return _context6.stop();
+ }
+ }, _callee6);
+ }));
+ return _getdatas.apply(this, arguments);
+ }
+ (0,react.useEffect)(function () {
+ if (!isedit) {
+ setimageurl('');
+ setupdateimg('');
+ updateimgRef.current = "";
+ }
+ }, [isedit]);
+ (0,react.useEffect)(function () {
+ getdatas();
+ }, [Header]);
+ function getStudents(_x) {
+ return _getStudents.apply(this, arguments);
+ }
+ function _getStudents() {
+ _getStudents = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee7(page) {
+ var _data$teachers;
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee7$(_context7) {
+ while (1) switch (_context7.prev = _context7.next) {
+ case 0:
+ _context7.next = 2;
+ return dispatch({
+ type: 'competitions/getStudents',
+ payload: {
+ identifier: identifier,
+ keyword: studentname,
+ team_id: loaderid,
+ page: page
+ }
+ });
+ case 2:
+ data = _context7.sent;
+ if (data) {
+ if (page === 1) {
+ setStudents(toConsumableArray_default()(data.teachers));
+ } else {
+ setStudents([].concat(toConsumableArray_default()(students), toConsumableArray_default()(data.teachers)));
+ }
+ }
+ return _context7.abrupt("return", ((_data$teachers = data.teachers) === null || _data$teachers === void 0 ? void 0 : _data$teachers.length) < 20 ? false : true);
+ case 5:
+ case "end":
+ return _context7.stop();
+ }
+ }, _callee7);
+ }));
+ return _getStudents.apply(this, arguments);
+ }
+ var handleInfiniteOnLoad = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var reload,
+ _res$teachers,
+ res,
+ _args = arguments;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ reload = _args.length > 0 && _args[0] !== undefined ? _args[0] : false;
+ if (!((reload || hasMore) && !isLoading)) {
+ _context.next = 10;
+ break;
+ }
+ setIsLoading(true);
+ setPage(reload ? 1 : page + 1);
+ _context.next = 6;
+ return dispatch({
+ type: 'competitions/getTeacher',
+ payload: {
+ identifier: identifier,
+ keyword: teachname,
+ team_id: loaderid,
+ page: reload ? 1 : page + 1
+ }
+ });
+ case 6:
+ res = _context.sent;
+ reload ? setTeachers(toConsumableArray_default()(res.teachers)) : setTeachers([].concat(toConsumableArray_default()(teachers), toConsumableArray_default()(res.teachers)));
+ setIsLoading(false);
+ if (((_res$teachers = res.teachers) === null || _res$teachers === void 0 ? void 0 : _res$teachers.length) < 20) setHasmore(false);
+ case 10:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function handleInfiniteOnLoad() {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ var handleInfiniteOnLoads = /*#__PURE__*/function () {
+ var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var reload,
+ _res$teachers2,
+ res,
+ _args2 = arguments;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ reload = _args2.length > 0 && _args2[0] !== undefined ? _args2[0] : false;
+ if (!((reload || hasMore) && !isLoading)) {
+ _context2.next = 10;
+ break;
+ }
+ setIsLoading(true);
+ setPage(reload ? 1 : page + 1);
+ _context2.next = 6;
+ return dispatch({
+ type: 'competitions/getStudents',
+ payload: {
+ identifier: identifier,
+ keyword: studentname,
+ team_id: loaderid,
+ page: reload ? 1 : page + 1
+ }
+ });
+ case 6:
+ res = _context2.sent;
+ reload ? setStudents(toConsumableArray_default()(res.teachers)) : setStudents([].concat(toConsumableArray_default()(students), toConsumableArray_default()(res.teachers)));
+ setIsLoading(false);
+ if (((_res$teachers2 = res.teachers) === null || _res$teachers2 === void 0 ? void 0 : _res$teachers2.length) < 20) setHasmore(false);
+ case 10:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return function handleInfiniteOnLoads() {
+ return _ref3.apply(this, arguments);
+ };
+ }();
+ //查找老师
+ function getteacher(_x2) {
+ return _getteacher.apply(this, arguments);
+ }
+ function _getteacher() {
+ _getteacher = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee8(page) {
+ var _data$teachers2;
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee8$(_context8) {
+ while (1) switch (_context8.prev = _context8.next) {
+ case 0:
+ _context8.next = 2;
+ return dispatch({
+ type: 'competitions/getTeacher',
+ payload: {
+ identifier: identifier,
+ keyword: teachname,
+ team_id: loaderid,
+ page: page
+ }
+ });
+ case 2:
+ data = _context8.sent;
+ if (data) {
+ if (page === 1) {
+ setTeachers(toConsumableArray_default()(data.teachers));
+ } else {
+ setTeachers([].concat(toConsumableArray_default()(teachers), toConsumableArray_default()(data.teachers)));
+ }
+ // console.log(data.teachers);
+ // setTeachers([...teachers, ...data.teachers])
+ }
+ return _context8.abrupt("return", ((_data$teachers2 = data.teachers) === null || _data$teachers2 === void 0 ? void 0 : _data$teachers2.length) < 20 ? false : true);
+ case 5:
+ case "end":
+ return _context8.stop();
+ }
+ }, _callee8);
+ }));
+ return _getteacher.apply(this, arguments);
+ }
+ function handleFileChange(e) {
+ var file = e.target.files[0];
+ if (file) {
+ if (file.size > 2 * 1024 * 1024) {
+ message/* default.info */.ZP.info("仅支持文件大小小于2M的文件");
+ return;
+ }
+ }
+ //base64
+ var reader = new FileReader();
+ reader.readAsBinaryString(file);
+ reader.onload = function () {
+ var base64_content = btoa(reader.result);
+ updateimgRef.current = "data:".concat(file.type, ";base64,").concat(base64_content);
+ setupdateimg("data:".concat(file.type, ";base64,").concat(base64_content));
+ };
+ reader.onerror = function () {
+ // console.log('there are some problems');
+ };
+ }
+ function _crop() {
+ setimageurl(Croppers.current.getCroppedCanvas().toDataURL());
+ }
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: '20px',
+ width: '100%'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ marginBottom: 20
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'baseline'
+ },
+ children: [((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission = Header.permission) === null || _Header$permission === void 0 ? void 0 : _Header$permission.editable)) && /*#__PURE__*/(0,jsx_runtime.jsx)(es_radio/* default.Group */.ZP.Group, {
+ className: Teammodules.scoreByBlankRadio,
+ optionType: "button",
+ options: [{
+ label: '我的战队',
+ value: 'mine'
+ }, {
+ label: '全部战队',
+ value: 'join'
+ }],
+ onChange: function onChange(e) {
+ params.isteam = e.target.value;
+ params.keyword = '';
+ params.type = '';
+ params.page = 1;
+ getdatas();
+ },
+ value: params.isteam
+ }), params.isteam === 'mine' && !((0,authority/* isAdmins */.eB)() || Header !== null && Header !== void 0 && (_Header$permission2 = Header.permission) !== null && _Header$permission2 !== void 0 && _Header$permission2.editable) && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ fontSize: 14
+ },
+ children: ["\u6211\u7684\u6218\u961F\uFF08", competition_team === null || competition_team === void 0 ? void 0 : (_competition_team$my_ = competition_team.my_teams) === null || _competition_team$my_ === void 0 ? void 0 : _competition_team$my_.length, "\uFF09"]
+ }), params.isteam === 'join' && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginLeft: 30,
+ color: '#5F6368'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u6218\u961F\u603B\u6570"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#165DFF'
+ },
+ children: competition_team === null || competition_team === void 0 ? void 0 : competition_team.count
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginRight: 20
+ },
+ children: "\u4E2A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u53C2\u8D5B\u603B\u4EBA\u6570"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#165DFF'
+ },
+ children: competition_team === null || competition_team === void 0 ? void 0 : competition_team.members_count
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u4E2A"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ flex: 1,
+ textAlign: 'end',
+ display: 'flex',
+ justifyContent: 'end'
+ },
+ children: [params.isteam === 'join' && /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomInput */.t7, {
+ style: {
+ width: 379
+ },
+ dataSource: [],
+ value: {
+ id: params.type,
+ value: params.keyword
+ },
+ onChange: function onChange(input, id) {
+ params.keyword = input;
+ params.type = 1;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ placeholder: "\u8BF7\u8F93\u5165\u6218\u961F\u540D\u79F0\u8FDB\u884C\u641C\u7D22"
+ }), params.isteam === 'mine' && (competition_team === null || competition_team === void 0 ? void 0 : (_competition_team$my_2 = competition_team.my_teams) === null || _competition_team$my_2 === void 0 ? void 0 : _competition_team$my_2.filter(function (item) {
+ return !item.active;
+ }).length) > 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ fontSize: 14,
+ color: '#FA6400'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ExclamationCircleOutlined/* default */.Z, {
+ style: {
+ marginRight: 6,
+ fontSize: 14
+ }
+ }), " \u60A8\u6709", competition_team === null || competition_team === void 0 ? void 0 : (_competition_team$my_3 = competition_team.my_teams) === null || _competition_team$my_3 === void 0 ? void 0 : _competition_team$my_3.filter(function (item) {
+ return !item.active;
+ }).length, "\u4E2A\u6218\u961F\u672A\u6EE1\u8DB3\u53C2\u8D5B\u8981\u6C42\uFF01\u4E3A\u4E86\u4E0D\u5F71\u54CD\u6210\u7EE9\uFF0C\u8BF7\u8BBE\u7F6E\u6218\u961F\u6210\u5458"]
+ })]
+ })]
+ }), (params === null || params === void 0 ? void 0 : params.isteam) === "mine" && (competition_team === null || competition_team === void 0 ? void 0 : (_competition_team$my_4 = competition_team.my_teams) === null || _competition_team$my_4 === void 0 ? void 0 : _competition_team$my_4.map(function (item, index) {
+ var _item$team_members;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.items,
+ children: [item !== null && item !== void 0 && item.team_log ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Teammodules.img,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + '/' + (item === null || item === void 0 ? void 0 : item.team_log)
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.img,
+ children: item.name.length > 2 ? item.name.substring(0, 2) : item.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.names,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'inline-flex',
+ alignItems: 'baseline'
+ },
+ children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: item === null || item === void 0 ? void 0 : item.name,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.teamname,
+ style: {
+ width: '80%'
+ },
+ children: item === null || item === void 0 ? void 0 : item.name
+ })
+ }), " ", (item === null || item === void 0 ? void 0 : item.manage_permission) && /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ onClick: function onClick() {
+ setisedit(true);
+ setTeam(item);
+ },
+ style: {
+ color: '#165DFF',
+ cursor: 'pointer',
+ marginLeft: 10
+ },
+ className: "iconfont icon-bianji10 font14"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.time,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.createtime,
+ children: "\u521B\u5EFA\u65F6\u95F4"
+ }), " ", item === null || item === void 0 ? void 0 : item.created_at]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.width30,
+ style: {
+ width: '38%'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Teammodules.loaderimg,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(item.creator.image_url)
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ title: item.creator.name,
+ children: item.creator.name.length > 6 ? item.creator.name.substring(0, 6) + '...' : item.creator.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginLeft: 20
+ },
+ children: item.school_name ? item.school_name.length > 6 ? item.school_name.substring(0, 6) + '...' : item.school_name : '--'
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ marginLeft: 60,
+ color: '#5F6367'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u9080\u8BF7\u7801"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ margin: '0px 10px',
+ color: '#232B40'
+ },
+ title: item.invite_code,
+ children: item.invite_code || '--'
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(lib.CopyToClipboard, {
+ text: item.invite_code,
+ onCopy: function onCopy() {
+ return message/* default.success */.ZP.success('复制成功');
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-fuzhi font-14",
+ style: {
+ display: "inline-block",
+ color: '#0152d9',
+ cursor: 'pointer'
+ }
+ })
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.width30,
+ style: {
+ justifyContent: 'end'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#5F6368'
+ },
+ children: "\u6218\u961F\u6210\u5458"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#232B40',
+ margin: '0px 10px'
+ },
+ children: [item === null || item === void 0 ? void 0 : (_item$team_members = item.team_members) === null || _item$team_members === void 0 ? void 0 : _item$team_members.length, "\u4EBA"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#3061D0',
+ cursor: 'pointer'
+ },
+ onClick: function onClick() {
+ setEditTeamItem(item === null || item === void 0 ? void 0 : item.team_members);
+ setLoaderid(item === null || item === void 0 ? void 0 : item.id);
+ },
+ children: "\u8BBE\u7F6E"
+ }), !(item !== null && item !== void 0 && item.active) && /*#__PURE__*/(0,jsx_runtime.jsx)(ExclamationCircleOutlined/* default */.Z, {
+ style: {
+ color: '#FA6400',
+ marginLeft: 10,
+ marginTop: '-2px'
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#3061D0',
+ cursor: 'pointer',
+ marginLeft: 40
+ },
+ onClick: function onClick() {
+ modal/* default.confirm */.Z.confirm({
+ title: item !== null && item !== void 0 && item.manage_permission ? '解散战队' : '退出战队',
+ content: "\u662F\u5426\u786E\u8BA4".concat(item !== null && item !== void 0 && item.manage_permission ? '解散' : '退出', "\u6218\u961F"),
+ okButtonProps: {
+ loading: buttonloading
+ },
+ onOk: function () {
+ var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ var data, _data;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ setbuttonloading(true);
+ if (!(item !== null && item !== void 0 && item.manage_permission)) {
+ _context3.next = 8;
+ break;
+ }
+ _context3.next = 4;
+ return dispatch({
+ type: 'competitions/DeleteTeam',
+ payload: {
+ identifier: identifier,
+ id: item === null || item === void 0 ? void 0 : item.id
+ }
+ });
+ case 4:
+ data = _context3.sent;
+ if (data && data.status === 0) {
+ message/* default.info */.ZP.info("\u89E3\u6563\u6210\u529F");
+ dispatch({
+ type: 'competitions/getStaff',
+ payload: {
+ identifier: identifier
+ }
+ });
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: identifier
+ }
+ });
+ }
+ _context3.next = 12;
+ break;
+ case 8:
+ _context3.next = 10;
+ return dispatch({
+ type: 'competitions/ExitTeam',
+ payload: {
+ identifier: identifier,
+ id: item === null || item === void 0 ? void 0 : item.id
+ }
+ });
+ case 10:
+ _data = _context3.sent;
+ if (_data && _data.status === 0) {
+ message/* default.info */.ZP.info("\u9000\u51FA\u6218\u961F\u6210\u529F");
+ dispatch({
+ type: 'competitions/getStaff',
+ payload: {
+ identifier: identifier
+ }
+ });
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: identifier
+ }
+ });
+ }
+ case 12:
+ setbuttonloading(false);
+ case 13:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ function onOk() {
+ return _onOk.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ },
+ children: item !== null && item !== void 0 && item.manage_permission ? '解散战队' : '退出战队'
+ })]
+ })]
+ });
+ })), (params === null || params === void 0 ? void 0 : params.isteam) === 'join' && (competition_team === null || competition_team === void 0 ? void 0 : (_competition_team$com = competition_team.competition_teams) === null || _competition_team$com === void 0 ? void 0 : _competition_team$com.length) === 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {}), (params === null || params === void 0 ? void 0 : params.isteam) === 'mine' && (competition_team === null || competition_team === void 0 ? void 0 : (_competition_team$my_5 = competition_team.my_teams) === null || _competition_team$my_5 === void 0 ? void 0 : _competition_team$my_5.length) === 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {}), (params === null || params === void 0 ? void 0 : params.isteam) === "join" && (competition_team === null || competition_team === void 0 ? void 0 : (_competition_team$com2 = competition_team.competition_teams) === null || _competition_team$com2 === void 0 ? void 0 : _competition_team$com2.map(function (item, index) {
+ var _item$team_members2;
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.items,
+ children: [item !== null && item !== void 0 && item.team_log ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + '/' + (item === null || item === void 0 ? void 0 : item.team_log)
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.img,
+ children: item.name.length > 2 ? item.name.substring(0, 2) : item.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.names,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.teamname,
+ children: item === null || item === void 0 ? void 0 : item.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.time,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.createtime,
+ children: "\u521B\u5EFA\u65F6\u95F4"
+ }), " ", item === null || item === void 0 ? void 0 : item.created_at]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.width30,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Teammodules.loaderimg,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(item.creator.image_url)
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ title: item.creator.name,
+ children: item.creator.name.length > 6 ? item.creator.name.substring(0, 6) + '...' : item.creator.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginLeft: 20
+ },
+ children: item.school_name ? item.school_name.length > 6 ? item.school_name.substring(0, 6) + '...' : item.school_name : '--'
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.width30,
+ style: {
+ justifyContent: 'end'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#5F6368'
+ },
+ children: "\u6218\u961F\u6210\u5458"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#232B40',
+ margin: '0px 10px'
+ },
+ children: [item === null || item === void 0 ? void 0 : (_item$team_members2 = item.team_members) === null || _item$team_members2 === void 0 ? void 0 : _item$team_members2.length, "\u4EBA"]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#3061D0',
+ cursor: 'pointer'
+ },
+ onClick: function onClick() {
+ setTeamItem(item);
+ },
+ children: "\u67E5\u770B"
+ })]
+ })]
+ });
+ })), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.countWrap,
+ style: {
+ marginTop: 20
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, {
+ showQuickJumper: true,
+ hideOnSinglePage: true,
+ showSizeChanger: true,
+ pageSizeOptions: ['10', '15', '50', '100', '200'],
+ total: competition_team === null || competition_team === void 0 ? void 0 : competition_team.count,
+ onChange: function onChange(page, pageSize) {
+ params.page = page;
+ params.per_page = pageSize;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ pageSize: params.per_page
+ // hideOnSinglePage={true}
+ ,
+ current: params.page
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: (TeamItem === null || TeamItem === void 0 ? void 0 : (_TeamItem$team_member = TeamItem.team_members) === null || _TeamItem$team_member === void 0 ? void 0 : _TeamItem$team_member.length) > 0,
+ width: 1000,
+ className: Teammodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setTeamItem([]);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.title,
+ children: TeamItem === null || TeamItem === void 0 ? void 0 : TeamItem.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setTeamItem([]);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Teammodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danchuangguanbi"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomTable */.Gi, {
+ style: {
+ marginTop: 30
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ dataSource: TeamItem === null || TeamItem === void 0 ? void 0 : TeamItem.team_members,
+ pagination: false,
+ scroll: {
+ y: 300
+ },
+ columns: [{
+ title: '头像',
+ align: 'left',
+ dataIndex: 'image_url',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Teammodules.loaderimg,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(text)
+ });
+ }
+ }, {
+ title: '姓名',
+ align: 'left',
+ dataIndex: 'name',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: (text === null || text === void 0 ? void 0 : text.length) > 6 ? (text === null || text === void 0 ? void 0 : text.substring(0, 6)) + '...' : text || '- -'
+ })
+ });
+ }
+ }, {
+ title: '手机',
+ align: 'left',
+ dataIndex: 'phone',
+ ellipsis: {
+ showTitle: true
+ },
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '学校/单位',
+ align: 'left',
+ dataIndex: 'school_name',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: (text === null || text === void 0 ? void 0 : text.length) > 6 ? (text === null || text === void 0 ? void 0 : text.substring(0, 6)) + '...' : text || '- -'
+ })
+ });
+ }
+ }, {
+ title: '职业',
+ align: 'left',
+ ellipsis: {
+ showTitle: true
+ },
+ dataIndex: 'identity',
+ render: function render(text, item) {
+ return text || '- -';
+ }
+ }, {
+ title: '学号',
+ align: 'left',
+ ellipsis: {
+ showTitle: true
+ },
+ dataIndex: 'student_id',
+ render: function render(text, item) {
+ return text || '- -';
+ }
+ }, {
+ title: '角色',
+ align: 'left',
+ dataIndex: 'role',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: text === 'leader' ? '#3061D0' : '#01795D'
+ },
+ children: [text === "leader" ? '队长' : '队员', (item === null || item === void 0 ? void 0 : item.creator) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#FA6400',
+ display: 'inline-flex',
+ width: 48,
+ height: 22,
+ borderRadius: 4,
+ lineHeight: '22px',
+ background: '#FEEADC',
+ textAlign: 'center',
+ marginLeft: 10,
+ justifyContent: 'center',
+ fontSize: 12
+ },
+ children: "\u521B\u5EFA\u8005"
+ })]
+ });
+ }
+ }]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: (EditTeamItem === null || EditTeamItem === void 0 ? void 0 : EditTeamItem.length) > 0,
+ width: 1000,
+ className: Teammodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setEditTeamItem([]);
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ onClick: function onClick() {
+ setDownteacher(false);
+ setDownstudents(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.title,
+ children: "\u8BBE\u7F6E\u6218\u961F\u6210\u5458"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ getdatas();
+ setStudentname('');
+ setTeachname('');
+ setEditTeamItem([]);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Teammodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danchuangguanbi"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ marginTop: 30
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center',
+ flex: 1
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#5F6368'
+ },
+ children: "\u6DFB\u52A0\u8001\u5E08"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(popover/* default */.Z, {
+ overlayStyle: {
+ width: 600
+ },
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ maxHeight: 260,
+ overflow: 'auto'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)((react_infinite_scroller_default()), {
+ initialLoad: false,
+ pageStart: 1,
+ threshold: 20,
+ loadMore: function loadMore(page) {
+ handleInfiniteOnLoad();
+ },
+ hasMore: hasMore,
+ useWindow: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ showHeader: false,
+ pagination: false,
+ dataSource: teachers,
+ columns: [{
+ align: 'left',
+ width: 60,
+ dataIndex: 'image_url',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ style: {
+ marginLeft: '10px',
+ marginRight: '3px'
+ },
+ className: Teammodules.loaderimg,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(text)
+ });
+ }
+ }, {
+ align: 'left',
+ dataIndex: 'name'
+ }, {
+ align: 'left',
+ dataIndex: 'phone'
+ }, {
+ align: 'left',
+ dataIndex: 'identity'
+ }, {
+ align: 'left',
+ dataIndex: 'school_name'
+ }, {
+ align: 'left',
+ dataIndex: 'image_url',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.task_hide,
+ style: {
+ textAlign: 'left',
+ width: '24%',
+ color: item.enrolled ? '#28be6c' : !item.enrolled && item.enrollable === false ? '#F3730C' : '',
+ padding: '0px 5px',
+ fontSize: '12px'
+ },
+ children: item.enrolled ? '已加入本战队' : !item.enrolled && item.enrollable === false ? '已加入其他战队' : ''
+ });
+ }
+ }],
+ onRow: function onRow(record) {
+ return {
+ onClick: function onClick(event) {
+ if (!(record !== null && record !== void 0 && record.authentication) && Header !== null && Header !== void 0 && Header.is_authentication) {
+ message/* default.info */.ZP.info('当前竞赛需要实名认证,该用户未进行实名认证不能参与。');
+ return;
+ }
+ if (record.enrolled) {
+ message/* default.info */.ZP.info('该用户已经加入战队');
+ return;
+ }
+ if (record.need_mail) {
+ message/* default.info */.ZP.info('该用户没有邮箱');
+ return;
+ }
+ if (record.need_phone) {
+ message/* default.info */.ZP.info('该用户没有手机号');
+ return;
+ }
+ if ((EditTeamItem === null || EditTeamItem === void 0 ? void 0 : EditTeamItem.filter(function (team) {
+ return record.id === team.id;
+ }).length) > 0) {
+ message/* default.info */.ZP.info('该用户已在战队列表,请不要重复添加');
+ return;
+ }
+ var teachers = EditTeamItem;
+ teachers.push(record);
+ console.log('---', teachers);
+ setDownteacher(false);
+ setEditTeamItem(toConsumableArray_default()(teachers));
+ }
+ };
+ }
+ })
+ })
+ }),
+ title: "",
+ placement: "bottomLeft",
+ getPopupContainer: function getPopupContainer(trigger) {
+ return trigger.parentNode;
+ },
+ open: downteacher,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ marginLeft: 16
+ },
+ className: Teammodules.searchWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default.Search */.Z.Search, {
+ placeholder: "\u8BF7\u641C\u7D22\u6559\u5E08\u59D3\u540D/\u624B\u673A\u53F7\u8FDB\u884C\u6DFB\u52A0",
+ size: "large",
+ className: Teammodules.search,
+ value: teachname,
+ onChange: function onChange(e) {
+ setTeachname(e.target.value);
+ },
+ onSearch: function onSearch(value) {
+ setDownteacher(true);
+ setTeachers([]);
+ setPage(1);
+ getteacher(1);
+ },
+ onBlur: function onBlur() {
+ // setDownteacher(false)
+ setHasmore(true);
+ setPage(1);
+ setIsLoading(false);
+ },
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-sousuo9 font14 ".concat(Teammodules.searchIcon),
+ onClick: function onClick(e) {
+ e.stopPropagation();
+ setDownteacher(true);
+ setTeachers([]);
+ setPage(1);
+ getteacher(1);
+ }
+ })
+ })
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center',
+ flex: 1
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#5F6368'
+ },
+ children: "\u6DFB\u52A0\u5B66\u751F/\u4E13\u4E1A\u4EBA\u58EB"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(popover/* default */.Z, {
+ overlayStyle: {
+ width: 700
+ },
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ maxHeight: 260,
+ overflow: 'auto'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)((react_infinite_scroller_default()), {
+ initialLoad: false,
+ pageStart: 1,
+ threshold: 20,
+ loadMore: function loadMore(page) {
+ handleInfiniteOnLoads();
+ },
+ hasMore: hasMore,
+ useWindow: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ showHeader: false,
+ pagination: false,
+ dataSource: students,
+ columns: [{
+ align: 'left',
+ width: 60,
+ dataIndex: 'image_url',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ style: {
+ marginLeft: '10px',
+ marginRight: '3px'
+ },
+ className: Teammodules.loaderimg,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(text)
+ });
+ }
+ }, {
+ align: 'left',
+ dataIndex: 'name'
+ }, {
+ align: 'left',
+ dataIndex: 'phone'
+ }, {
+ align: 'left',
+ dataIndex: 'student_id'
+ }, {
+ align: 'left',
+ dataIndex: 'school_name'
+ }, {
+ align: 'left',
+ dataIndex: 'image_url',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.task_hide,
+ style: {
+ textAlign: 'left',
+ width: '24%',
+ color: item.enrolled ? '#28be6c' : !item.enrolled && item.enrollable === false ? '#F3730C' : '',
+ padding: '0px 5px',
+ fontSize: '12px'
+ },
+ children: item.enrolled ? '已加入本战队' : !item.enrolled && item.enrollable === false ? '已加入其他战队' : ''
+ });
+ }
+ }],
+ onRow: function onRow(record) {
+ return {
+ onClick: function onClick(event) {
+ if (!(record !== null && record !== void 0 && record.authentication) && Header !== null && Header !== void 0 && Header.is_authentication) {
+ message/* default.info */.ZP.info('当前竞赛需要实名认证,该用户未进行实名认证不能参与。');
+ return;
+ }
+ if (record.enrolled) {
+ message/* default.info */.ZP.info('该用户已经加入战队');
+ return;
+ }
+ if (record.need_mail) {
+ message/* default.info */.ZP.info('该用户没有邮箱');
+ return;
+ }
+ if (record.need_phone) {
+ message/* default.info */.ZP.info('该用户没有手机号');
+ return;
+ }
+ if ((EditTeamItem === null || EditTeamItem === void 0 ? void 0 : EditTeamItem.filter(function (team) {
+ return record.id === team.id;
+ }).length) > 0) {
+ message/* default.info */.ZP.info('该用户已在战队列表,请不要重复添加');
+ return;
+ }
+ var teachers = EditTeamItem;
+ teachers.push(record);
+ setDownstudents(false);
+ setEditTeamItem(toConsumableArray_default()(teachers));
+ }
+ };
+ }
+ })
+ })
+ }),
+ title: "",
+ placement: "bottomRight",
+ getPopupContainer: function getPopupContainer(trigger) {
+ return trigger.parentNode;
+ },
+ open: downstudents,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ marginLeft: 16
+ },
+ className: Teammodules.searchWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default.Search */.Z.Search, {
+ placeholder: "\u8BF7\u641C\u7D22\u961F\u5458\u59D3\u540D/\u624B\u673A\u53F7\u5E76\u6DFB\u52A0",
+ size: "large",
+ className: Teammodules.search,
+ value: studentname,
+ onChange: function onChange(e) {
+ setStudentname(e.target.value);
+ },
+ onSearch: function onSearch(value) {
+ setDownstudents(true);
+ setStudents([]);
+ setPage(1);
+ getStudents(1);
+ },
+ onBlur: function onBlur() {
+ setHasmore(true);
+ setPage(1);
+ setIsLoading(false);
+ },
+ suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-sousuo9 font14 ".concat(Teammodules.searchIcon),
+ onClick: function onClick(e) {
+ e.stopPropagation();
+ setDownstudents(true);
+ setStudents([]);
+ setPage(1);
+ getStudents(1);
+ }
+ })
+ })
+ })
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ display: 'flex',
+ marginBottom: '12px',
+ marginTop: '20px'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ style: {
+ flex: '1',
+ color: '#666666'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#9B9B9B'
+ },
+ children: "\u8BF7\u6DFB\u52A0\u6218\u961F\u6210\u5458\uFF1A"
+ }), Staff && Staff.all_staff ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [Staff && Staff.all_staff.minimum, "-", Staff && Staff.all_staff.maximum, "\u540D\u6210\u5458"]
+ }) : '', Staff && Staff.teacher_staff ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [Staff && Staff.teacher_staff.minimum, "-", Staff && Staff.teacher_staff.maximum, "\u540D\u6559\u5E08"]
+ }) : '', Staff && Staff.teacher_staff && Staff.member_staff ? '/' : '', Staff && Staff.member_staff ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [Staff && Staff.member_staff.minimum, "-", Staff && Staff.member_staff.maximum, "\u540D\u5B66\u751F"]
+ }) : '']
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomTable */.Gi, {
+ style: {
+ marginTop: '-10px',
+ padding: '0 8px'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ dataSource: EditTeamItem,
+ pagination: false,
+ scroll: {
+ y: 300
+ },
+ columns: [{
+ title: '头像',
+ align: 'left',
+ width: 60,
+ dataIndex: 'image_url',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Teammodules.loaderimg,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(text)
+ });
+ }
+ }, {
+ title: '姓名',
+ align: 'left',
+ dataIndex: 'name',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: (text === null || text === void 0 ? void 0 : text.length) > 6 ? (text === null || text === void 0 ? void 0 : text.substring(0, 6)) + '...' : text || '- -'
+ })
+ });
+ }
+ }, {
+ title: '手机',
+ align: 'left',
+ width: 130,
+ dataIndex: 'phone',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '- -'
+ })
+ });
+ }
+ }, {
+ title: '学校/单位',
+ align: 'left',
+ dataIndex: 'school_name',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: text,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: (text === null || text === void 0 ? void 0 : text.length) > 6 ? (text === null || text === void 0 ? void 0 : text.substring(0, 6)) + '...' : text || '- -'
+ })
+ });
+ }
+ }, {
+ title: '职业',
+ align: 'left',
+ dataIndex: 'identity',
+ render: function render(text, item) {
+ return text || '- -';
+ }
+ }, {
+ title: '学号',
+ align: 'left',
+ dataIndex: 'student_id',
+ render: function render(text, item) {
+ return text || '- -';
+ }
+ }, {
+ title: '角色',
+ align: 'left',
+ dataIndex: 'role',
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: text === 'leader' ? '#3061D0' : '#01795D'
+ },
+ children: [text === "leader" ? '队长' : '队员', (item === null || item === void 0 ? void 0 : item.creator) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#FA6400',
+ display: 'inline-flex',
+ width: 48,
+ height: 22,
+ borderRadius: 4,
+ lineHeight: '22px',
+ background: '#FEEADC',
+ textAlign: 'center',
+ marginLeft: 10,
+ justifyContent: 'center',
+ fontSize: 12
+ },
+ children: "\u521B\u5EFA\u8005"
+ })]
+ });
+ }
+ }, {
+ title: '操作',
+ align: 'right',
+ width: 150,
+ dataIndex: 'role',
+ render: function render(text, items, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ color: '#3061D0'
+ },
+ children: [text != "leader" && /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ onClick: function onClick() {
+ var data = EditTeamItem;
+ var leaderindex = EditTeamItem && EditTeamItem.findIndex(function (item) {
+ return item.role === 'leader';
+ });
+ data[index].role = 'leader';
+ data[leaderindex].role = data && data[leaderindex].is_teacher ? 'teacher' : 'member';
+ //排序 规则为 队长永远只第一位 创建者只第二位
+ var datas = data.sort(function (item, item1) {
+ return item.creator ? -1 : 1;
+ }).sort(function (item, item1) {
+ return item.role === 'leader' ? -1 : 1;
+ });
+ setEditTeamItem(toConsumableArray_default()(datas));
+ leaderidRef.current = items.id;
+ },
+ children: "\u8BBE\u7F6E\u961F\u957F"
+ }), text != "leader" && /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ onClick: function onClick() {
+ var data = EditTeamItem && EditTeamItem.filter(function (item) {
+ return item.id != items.id;
+ });
+ setEditTeamItem(toConsumableArray_default()(data));
+ },
+ style: {
+ marginLeft: 20
+ },
+ children: "\u5220\u9664"
+ })]
+ });
+ }
+ }]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.bottom,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Teammodules.no,
+ onClick: function onClick() {
+ setEditTeamItem([]);
+ setStudentname('');
+ setTeachname('');
+ getdatas();
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: buttonloading,
+ className: Teammodules.yes,
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() {
+ var member_ids, teacher_ids, data;
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ member_ids = [];
+ teacher_ids = [];
+ EditTeamItem && EditTeamItem.map(function (item, index) {
+ if (item.is_teacher) {
+ teacher_ids.push(item.id);
+ } else {
+ member_ids.push(item.id);
+ }
+ });
+ _context4.next = 5;
+ return dispatch({
+ type: 'competitions/SubmitTeam',
+ payload: {
+ identifier: identifier,
+ teamid: loaderid,
+ member_ids: member_ids,
+ teacher_ids: teacher_ids,
+ leader: leaderidRef.current
+ }
+ });
+ case 5:
+ data = _context4.sent;
+ if (data && data.status === 0) {
+ // console.log(data.teachers);
+ message/* default.info */.ZP.info('修改成功');
+ setEditTeamItem([]);
+ getdatas();
+ }
+ case 7:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ })),
+ children: "\u786E\u8BA4"
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: isedit,
+ width: 610,
+ className: Teammodules.scoremodal,
+ closable: false,
+ destroyOnClose: true,
+ centered: true,
+ onCancel: function onCancel() {
+ return setisedit(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.title,
+ children: "\u7F16\u8F91\u6218\u961F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setisedit(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Teammodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danchuangguanbi"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
+ form: form,
+ layout: "vertical",
+ initialValues: {
+ name: Team === null || Team === void 0 ? void 0 : Team.name
+ },
+ onFinish: /*#__PURE__*/function () {
+ var _ref5 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5(values) {
+ var _Croppers$current, _Croppers$current$get;
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee5$(_context5) {
+ while (1) switch (_context5.prev = _context5.next) {
+ case 0:
+ setbuttonloading(true);
+ _context5.next = 3;
+ return dispatch({
+ type: 'competitions/UpTeam',
+ payload: {
+ identifier: identifier,
+ Teannameid: Team === null || Team === void 0 ? void 0 : Team.id,
+ name: values === null || values === void 0 ? void 0 : values.name,
+ image: ((_Croppers$current = Croppers.current) === null || _Croppers$current === void 0 ? void 0 : (_Croppers$current$get = _Croppers$current.getCroppedCanvas()) === null || _Croppers$current$get === void 0 ? void 0 : _Croppers$current$get.toDataURL("image/jpeg")) || ''
+ }
+ });
+ case 3:
+ data = _context5.sent;
+ setbuttonloading(false);
+ if ((data === null || data === void 0 ? void 0 : data.status) === 0) {
+ // return
+ getdatas();
+ setisedit(false);
+ }
+ case 6:
+ case "end":
+ return _context5.stop();
+ }
+ }, _callee5);
+ }));
+ return function (_x3) {
+ return _ref5.apply(this, arguments);
+ };
+ }(),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u6218\u961F\u540D\u79F0",
+ name: "name",
+ className: Teammodules.jsinput,
+ rules: [{
+ required: true,
+ validator: function validator(_, value) {
+ var _value$replaceAll;
+ return (value === null || value === void 0 ? void 0 : (_value$replaceAll = value.replaceAll(' ', '')) === null || _value$replaceAll === void 0 ? void 0 : _value$replaceAll.length) > 0 ? Promise.resolve() : Promise.reject('请填写竞赛名称');
+ }
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ maxLength: 60,
+ className: Teammodules.baseFormItem,
+ showCount: true,
+ style: {
+ fontSize: 14,
+ marginTop: 10
+ }
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ style: {
+ marginTop: '15px',
+ marginLeft: '8px',
+ width: "544px"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "LOGO\uFF1A"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("label", {
+ id: "uploadBtn",
+ style: {
+ color: '#4DACFF',
+ cursor: "pointer"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("input", {
+ type: "file",
+ className: "sr-only",
+ id: "inputImage",
+ name: "file",
+ accept: "image/*",
+ onChange: handleFileChange,
+ style: {
+ display: "none"
+ }
+ }), "\u4E0A\u4F20LOGO"]
+ }), "\xA0", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginLeft: 10,
+ color: '#FA6400'
+ },
+ children: "\uFF08\u652F\u6301jpg\u3001gif\u3001png\u683C\u5F0F\u7684\u56FE\u7247\uFF0C\u5EFA\u8BAE\u6587\u4EF6\u5C0F\u4E8E2M\uFF09"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginTop: '15px',
+ marginLeft: '8px',
+ display: 'flex'
+ },
+ children: [imageurl ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Teammodules.Spanradius,
+ src: imageurl
+ }) : Team !== null && Team !== void 0 && Team.team_log ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + '/' + (Team === null || Team === void 0 ? void 0 : Team.team_log),
+ className: Teammodules.Spanradius
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.Spanradius,
+ children: (Team === null || Team === void 0 ? void 0 : (_Team$name = Team.name) === null || _Team$name === void 0 ? void 0 : _Team$name.length) > 2 ? Team === null || Team === void 0 ? void 0 : (_Team$name2 = Team.name) === null || _Team$name2 === void 0 ? void 0 : _Team$name2.substring(0, 2) : Team === null || Team === void 0 ? void 0 : Team.name
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(react_cropper/* default */.Z, {
+ style: {
+ width: '320px',
+ height: '320px',
+ marginLeft: "30px",
+ background: '#EEEEEE'
+ },
+ src: updateimgRef.current || env/* default.IMG_SERVER */.Z.IMG_SERVER + '/' + (Team === null || Team === void 0 ? void 0 : Team.team_log),
+ guides: false,
+ ref: Croppers,
+ crop: _crop
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Teammodules.bottom,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Teammodules.no,
+ onClick: function onClick() {
+ setisedit(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: buttonloading,
+ className: Teammodules.yes,
+ onClick: function onClick() {
+ form.submit();
+ },
+ children: "\u786E\u8BA4"
+ })]
+ })]
+ })]
+ });
+};
+/* harmony default export */ var StudentTeam = ((0,_umi_production_exports.connect)(function (_ref6) {
+ var competitions = _ref6.competitions,
+ loading = _ref6.loading,
+ globalSetting = _ref6.globalSetting,
+ user = _ref6.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(StudentTeam_competitionsPage));
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/Team/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Edit_Team_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+var dropMenu = [{
+ id: '',
+ name: '全部'
+}, {
+ id: 1,
+ name: '姓名'
+}, {
+ id: 2,
+ name: '手机号'
+}, {
+ id: 3,
+ name: '邮箱'
+}];
+var Team_dropMenu1 = [{
+ id: '',
+ name: '全部'
+}, {
+ id: 1,
+ name: '战队名称'
+}, {
+ id: 2,
+ name: '队长姓名'
+}, {
+ id: 3,
+ name: '指导老师'
+}];
+var Team_identityMap = {
+ "teacher": "教师",
+ "student": "学生",
+ "professional": "专业人士"
+};
+var Edit_Team_competitionsPage = function competitionsPage(_ref) {
+ var _Header$permission;
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, Edit_Team_excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ var Header = competitions.Header,
+ competition_team = competitions.competition_team,
+ Staff = competitions.Staff,
+ Prizes = competitions.Prizes,
+ Account = competitions.Account;
+ var _useState = (0,react.useState)([]),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ userList = _useState2[0],
+ setuserList = _useState2[1];
+ var _useState3 = (0,react.useState)(''),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ isteam = _useState4[0],
+ setisteam = _useState4[1];
+ var _useState5 = (0,react.useState)({
+ page: 1,
+ per_page: 10,
+ keyword: '',
+ type: '',
+ personal: true
+ }),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ params = _useState6[0],
+ setparams = _useState6[1];
+
+ //获取课题/api/competitions/{id}/all_team_members.json
+ function getdatas() {
+ return _getdatas.apply(this, arguments);
+ }
+ function _getdatas() {
+ _getdatas = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ _context3.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/all_team_members.json"), {
+ method: 'get',
+ params: params
+ });
+ case 2:
+ res = _context3.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ setuserList(res);
+ }
+ case 4:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ return _getdatas.apply(this, arguments);
+ }
+ var _useState7 = (0,react.useState)(false),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ isshow = _useState8[0],
+ setisshow = _useState8[1];
+ (0,react.useEffect)(function () {
+ if (Header !== null && Header !== void 0 && Header.personal) {
+ getdatas();
+ } else {}
+ }, [Header]);
+ var columns = [{
+ title: '序号',
+ align: 'center',
+ dataIndex: 'name',
+ width: 80,
+ render: function render(text, item, index) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: index + 1
+ });
+ }
+ }, {
+ title: '参赛人',
+ align: 'center',
+ dataIndex: 'name',
+ width: 120,
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text,
+ children: text
+ });
+ }
+ }, {
+ title: '个人成绩',
+ align: 'center',
+ width: 100,
+ dataIndex: 'score',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || "- -"
+ });
+ }
+ }, {
+ title: '角色',
+ align: 'center',
+ width: 100,
+ dataIndex: 'identity',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: Team_identityMap[text]
+ });
+ }
+ }, {
+ title: '手机号',
+ align: 'center',
+ width: 120,
+ dataIndex: 'phone',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '学号/工号',
+ align: 'center',
+ dataIndex: 'student_id',
+ width: 120,
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text,
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '学校/单位',
+ align: 'center',
+ dataIndex: 'school',
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text || "",
+ children: text || "--"
+ });
+ }
+ }, {
+ title: '地区',
+ align: 'center',
+ dataIndex: 'province',
+ width: 100,
+ ellipsis: {
+ showTitle: false
+ },
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "topLeft",
+ title: text || "",
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '操作',
+ align: 'center',
+ dataIndex: 'is_cancel_score',
+ width: 100,
+ render: function render(text, item) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text === 0 ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: "#165DFF",
+ cursor: 'pointer'
+ },
+ onClick: function onClick() {
+ modal/* default.confirm */.Z.confirm({
+ icon: null,
+ centered: true,
+ title: '取消成绩',
+ content: '请确认是否取消该成员成绩,取消后该成员的成绩将视为无成绩,不进行排名。',
+ onOk: function () {
+ var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/set_score_status.json"), {
+ method: 'put',
+ body: {
+ competition_score_id: item === null || item === void 0 ? void 0 : item.competition_score_id,
+ is_cancel_score: 1
+ }
+ });
+ case 2:
+ res = _context.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ params.page = 1;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ }
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ function onOk() {
+ return _onOk.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ },
+ children: "\u53D6\u6D88\u6210\u7EE9"
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/set_score_status.json"), {
+ method: 'put',
+ body: {
+ competition_score_id: item === null || item === void 0 ? void 0 : item.competition_score_id,
+ is_cancel_score: 0
+ }
+ });
+ case 2:
+ res = _context2.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ params.page = 1;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ }
+ case 4:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ style: {
+ color: "#FD9200",
+ cursor: 'pointer'
+ },
+ children: "\u6062\u590D\u6210\u7EE9"
+ })
+ });
+ }
+ }];
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("section", {
+ className: Teammodules.bg,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.title,
+ style: {
+ display: 'flex'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ style: {
+ width: '100%'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(col/* default */.Z, {
+ flex: "1",
+ children: Header !== null && Header !== void 0 && Header.personal ? '参赛人员' : '战队详情'
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(col/* default */.Z, {
+ children: [((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission = Header.permission) === null || _Header$permission === void 0 ? void 0 : _Header$permission.editable) && !Header.personal) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.button,
+ onClick: function onClick() {
+ setisshow(true);
+ },
+ children: "\u7BA1\u7406\u6218\u961F\u6210\u7EE9"
+ }), !(Staff !== null && Staff !== void 0 && Staff.enroll_ended) && !Header.personal && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.button,
+ style: {
+ margin: '0px 20px'
+ },
+ onClick: function onClick() {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '2'
+ }
+ });
+ },
+ children: "\u52A0\u5165\u6218\u961F"
+ }), " ", !(Staff !== null && Staff !== void 0 && Staff.enroll_ended) && !Header.personal && /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: Teammodules.button,
+ onClick: function onClick() {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '3'
+ }
+ });
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-qizhi",
+ style: {
+ marginRight: 6,
+ fontSize: 14,
+ color: '#3061D0'
+ }
+ }), " \u521B\u5EFA\u6218\u961F"]
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex'
+ },
+ children: [Header !== null && Header !== void 0 && Header.personal ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ padding: '20px 30px',
+ width: '100%'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomInput */.t7, {
+ style: {
+ width: 327,
+ marginRight: 15
+ },
+ dataSource: dropMenu,
+ value: {
+ id: params.type,
+ value: params.keyword
+ },
+ onChange: function onChange(input, id) {
+ params.keyword = input;
+ params.type = id || '';
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ placeholder: "\u8BF7\u8F93\u5165\u641C\u7D22\u5185\u5BB9"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ flex: 1,
+ textAlign: 'end'
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Teammodules.button,
+ onClick: function onClick() {
+ (0,util/* downLoadFile */.FH)('', (0,util/* setUrlQuery */.NY)({
+ url: env/* default.API_SERVER */.Z.API_SERVER + "/api/competitions/".concat(identifier, "/all_team_members.xlsx"),
+ query: objectSpread2_default()({}, params)
+ }));
+ },
+ children: "\u5BFC\u51FA"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ style: {
+ marginTop: 20
+ },
+ columns: columns,
+ dataSource: userList === null || userList === void 0 ? void 0 : userList.data,
+ pagination: false
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Teammodules.countWrap,
+ style: {
+ marginTop: 20
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, {
+ showQuickJumper: true,
+ hideOnSinglePage: true,
+ showSizeChanger: true,
+ pageSizeOptions: ['10', '15', '50', '100', '200'],
+ total: userList === null || userList === void 0 ? void 0 : userList.count,
+ onChange: function onChange(page, pageSize) {
+ params.page = page;
+ params.per_page = pageSize;
+ setparams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ pageSize: params.per_page
+ // hideOnSinglePage={true}
+ ,
+ current: params.page
+ })
+ })]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)(StudentTeam, {}), /*#__PURE__*/(0,jsx_runtime.jsx)(drawer/* default */.Z, {
+ className: Teammodules.drawer_style,
+ title: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: {
+ fontSize: '16px'
+ },
+ children: "\u6218\u961F\u6210\u7EE9"
+ }),
+ placement: 'bottom',
+ width: 500,
+ height: 564,
+ onClose: function onClose() {
+ return setisshow(false);
+ },
+ open: isshow,
+ children: isshow ? /*#__PURE__*/(0,jsx_runtime.jsx)(Team, {}) : ''
+ })]
+ })]
+ });
+};
+/* harmony default export */ var Edit_Team = ((0,_umi_production_exports.connect)(function (_ref3) {
+ var competitions = _ref3.competitions,
+ loading = _ref3.loading,
+ globalSetting = _ref3.globalSetting,
+ user = _ref3.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(Edit_Team_competitionsPage));
+// EXTERNAL MODULE: ./src/pages/Competitions/components/PhoneModal.tsx
+var PhoneModal = __webpack_require__(74009);
+// EXTERNAL MODULE: ./src/components/AuthenticationModel/index.tsx
+var AuthenticationModel = __webpack_require__(8213);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Edit/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Edit_excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var Edit_competitionsPage = function competitionsPage(_ref) {
+ var _Header$permission, _Header$permission2, _types$find, _tabs$find;
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, Edit_excluded);
+ var _useState = (0,react.useState)({
+ tabsIndex: '1'
+ }),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ params = _useState2[0],
+ setParams = _useState2[1];
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier,
+ enter = _useParams.enter;
+ var Header = competitions.Header,
+ Staff = competitions.Staff;
+ var _useState3 = (0,react.useState)(false),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ enterDocument = _useState4[0],
+ setenterDocument = _useState4[1];
+ var _useSearchParams = (0,_umi_production_exports.useSearchParams)(),
+ _useSearchParams2 = slicedToArray_default()(_useSearchParams, 1),
+ searchParams = _useSearchParams2[0];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ isAdd = _useState6[0],
+ setIsAdd = _useState6[1];
+ var _useState7 = (0,react.useState)(false),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ isCreate = _useState8[0],
+ setisCreate = _useState8[1];
+ var _useState9 = (0,react.useState)(false),
+ _useState10 = slicedToArray_default()(_useState9, 2),
+ buttonloading = _useState10[0],
+ setbuttonloading = _useState10[1];
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState11 = (0,react.useState)(false),
+ _useState12 = slicedToArray_default()(_useState11, 2),
+ showphone = _useState12[0],
+ setshowphone = _useState12[1];
+ var _useState13 = (0,react.useState)(false),
+ _useState14 = slicedToArray_default()(_useState13, 2),
+ isopen = _useState14[0],
+ setisopen = _useState14[1];
+ var _useState15 = (0,react.useState)(),
+ _useState16 = slicedToArray_default()(_useState15, 2),
+ datas = _useState16[0],
+ setdatas = _useState16[1];
+ var _useState17 = (0,react.useState)(false),
+ _useState18 = slicedToArray_default()(_useState17, 2),
+ showmodal = _useState18[0],
+ setshowmodal = _useState18[1];
+ var _useState19 = (0,react.useState)(false),
+ _useState20 = slicedToArray_default()(_useState19, 2),
+ showmodals = _useState20[0],
+ setshowmodals = _useState20[1];
+ var _useState21 = (0,react.useState)(false),
+ _useState22 = slicedToArray_default()(_useState21, 2),
+ visible = _useState22[0],
+ setvisible = _useState22[1];
+ var _useState23 = (0,react.useState)([]),
+ _useState24 = slicedToArray_default()(_useState23, 2),
+ schoolList = _useState24[0],
+ setSchoolList = _useState24[1];
+ var types = [{
+ name: '待审核',
+ type: 'preparing'
+ }, {
+ name: '审核中',
+ type: 'review'
+ }, {
+ name: '被驳回',
+ type: 'not_passed'
+ }, {
+ name: '即将发布',
+ type: 'nearly_published'
+ }, {
+ name: '进行中',
+ type: 'progressing'
+ }, {
+ name: '已结束',
+ type: 'ended'
+ }, {
+ name: '未发布',
+ type: 'unpublish'
+ }];
+ (0,react.useEffect)(function () {
+ if (searchParams.get('type') === '4') {
+ setParams({
+ tabsIndex: '4'
+ });
+ setenterDocument(true);
+ } else {
+ if (searchParams.get('type')) {
+ setParams({
+ tabsIndex: searchParams.get('type')
+ });
+ } else {
+ setParams({
+ tabsIndex: '1'
+ });
+ }
+ }
+ }, [searchParams.get('type')]);
+ var tabs = [{
+ id: '1',
+ name: '概览',
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)(view, {})
+ }, {
+ id: '2',
+ name: '排行榜',
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)(Ranking, {})
+ }, (Header === null || Header === void 0 ? void 0 : Header.personal) && ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission = Header.permission) === null || _Header$permission === void 0 ? void 0 : _Header$permission.editable)) && {
+ id: '3',
+ name: Header !== null && Header !== void 0 && Header.personal ? '参赛人员' : '战队',
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)(Edit_Team, {})
+ }, !(Header !== null && Header !== void 0 && Header.personal) && {
+ id: '3',
+ name: '战队',
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)(Edit_Team, {})
+ }, ((0,authority/* isAdmins */.eB)() || (Header === null || Header === void 0 ? void 0 : (_Header$permission2 = Header.permission) === null || _Header$permission2 === void 0 ? void 0 : _Header$permission2.editable)) && {
+ id: '4',
+ name: '设置',
+ content: /*#__PURE__*/(0,jsx_runtime.jsx)(Setting, {
+ enterDocument: enterDocument,
+ changeKey: new Date()
+ })
+ }].filter(function (item) {
+ return !!item;
+ });
+ (0,react.useEffect)(function () {
+ if (window.location.href.split('enter=').length > 1) {
+ setParams({
+ tabsIndex: '4'
+ });
+ }
+ }, []);
+ (0,react.useEffect)(function () {
+ var _user$userInfo;
+ if ((user === null || user === void 0 ? void 0 : (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.role) === 16) {
+ dispatch({
+ type: 'user/showPopLogin',
+ payload: {
+ showPopLogin: true,
+ showClosable: false
+ }
+ });
+ }
+ }, [user === null || user === void 0 ? void 0 : user.userInfo]);
+ (0,react.useEffect)(function () {
+ if (competitions.actionTabs.key === '1') {
+ // setMenuActive('赛题设置')
+ setParams({
+ tabsIndex: '4'
+ });
+ } else if (competitions.actionTabs.key === '2') {
+ var _user$userInfo2;
+ if (Header.teacher_need_phone || Header.member_need_phone) {
+ event.stopPropagation();
+ setshowphone(true);
+ return;
+ }
+ if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch)) {
+ return;
+ }
+ if (Header !== null && Header !== void 0 && Header.need_check_mail) {
+ event.stopPropagation();
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ okText: '确定',
+ cancelText: '取消',
+ title: '提示',
+ icon: null,
+ content: '您暂未绑定邮箱,为了后续竞赛奖项颁发等相关事宜的正常且准确进行,请完成绑定再参加报名。',
+ onOk: function onOk() {
+ window.open('/account/secure');
+ }
+ });
+ return;
+ }
+ if (Header !== null && Header !== void 0 && Header.is_authentication && !(user !== null && user !== void 0 && (_user$userInfo2 = user.userInfo) !== null && _user$userInfo2 !== void 0 && _user$userInfo2.authentication)) {
+ dispatch({
+ type: 'shixunsDetail/setActionTabs',
+ payload: {
+ key: 'Banner-Auth'
+ }
+ });
+ return;
+ }
+ setIsAdd(true);
+ } else if (competitions.actionTabs.key === '3') {
+ var _user$userInfo3;
+ if (Header !== null && Header !== void 0 && Header.need_check_mail) {
+ event.stopPropagation();
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ okText: '确定',
+ cancelText: '取消',
+ title: '提示',
+ icon: null,
+ content: '您暂未绑定邮箱,为了后续竞赛奖项颁发等相关事宜的正常且准确进行,请完成绑定再参加报名。',
+ onOk: function onOk() {
+ window.open('/account/secure');
+ }
+ });
+ return;
+ }
+ if (Header.teacher_need_phone || Header.member_need_phone) {
+ event.stopPropagation();
+ setshowphone(true);
+ return;
+ }
+ if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch)) {
+ return;
+ }
+ if (Header !== null && Header !== void 0 && Header.is_authentication && !(user !== null && user !== void 0 && (_user$userInfo3 = user.userInfo) !== null && _user$userInfo3 !== void 0 && _user$userInfo3.authentication)) {
+ dispatch({
+ type: 'shixunsDetail/setActionTabs',
+ payload: {
+ key: 'Banner-Auth'
+ }
+ });
+ return;
+ }
+ setisCreate(true);
+ } else if (competitions.actionTabs.key === '4') {
+ setshowmodal(true);
+ } else if (competitions.actionTabs.key === '6') {
+ setshowmodals(true);
+ } else {
+ setisCreate(false);
+ setIsAdd(false);
+ }
+ }, [competitions.actionTabs]);
+ (0,react.useEffect)(function () {
+ if (identifier) {
+ init();
+ }
+ }, [identifier]);
+ function init() {
+ return _init.apply(this, arguments);
+ }
+ function _init() {
+ _init = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee6() {
+ return regeneratorRuntime_default()().wrap(function _callee6$(_context6) {
+ while (1) switch (_context6.prev = _context6.next) {
+ case 0:
+ dispatch({
+ type: 'competitions/getStaff',
+ payload: {
+ identifier: identifier
+ }
+ });
+ dispatch({
+ type: 'competitions/getHeader',
+ payload: {
+ identifier: identifier
+ }
+ });
+ case 2:
+ case "end":
+ return _context6.stop();
+ }
+ }, _callee6);
+ }));
+ return _init.apply(this, arguments);
+ }
+ function isadd() {
+ var _user$userInfo4, _user$userInfo5;
+ //判断 如果不符合条件 不能加入竞赛
+ if (user !== null && user !== void 0 && (_user$userInfo4 = user.userInfo) !== null && _user$userInfo4 !== void 0 && _user$userInfo4.is_teacher) {
+ var _Staff$all_staff, _Staff$teacher_staff;
+ if (Staff !== null && Staff !== void 0 && (_Staff$all_staff = Staff.all_staff) !== null && _Staff$all_staff !== void 0 && _Staff$all_staff.mutiple_limited || Staff !== null && Staff !== void 0 && (_Staff$teacher_staff = Staff.teacher_staff) !== null && _Staff$teacher_staff !== void 0 && _Staff$teacher_staff.mutiple_limited) {
+ if (Staff !== null && Staff !== void 0 && Staff.enrolled) {
+ message/* default.info */.ZP.info('你已经报名,不能重复报名');
+ return true;
+ }
+ }
+ } else {
+ var _Staff$all_staff2, _Staff$member_staff;
+ if (Staff !== null && Staff !== void 0 && (_Staff$all_staff2 = Staff.all_staff) !== null && _Staff$all_staff2 !== void 0 && _Staff$all_staff2.mutiple_limited || Staff !== null && Staff !== void 0 && (_Staff$member_staff = Staff.member_staff) !== null && _Staff$member_staff !== void 0 && _Staff$member_staff.mutiple_limited) {
+ if (Staff !== null && Staff !== void 0 && Staff.enrolled) {
+ message/* default.info */.ZP.info('你已经报名,不能重复报名');
+ return true;
+ }
+ }
+ }
+
+ //判断竞赛是否关闭
+ if (Staff !== null && Staff !== void 0 && Staff.enroll_ended) {
+ message/* default.info */.ZP.info('报名已截止,无需报名');
+ return true;
+ }
+ // 是否可以全部报名
+ if (Staff !== null && Staff !== void 0 && Staff.all_staff) return false;
+ //禁止老师or学生报名
+ if (user !== null && user !== void 0 && (_user$userInfo5 = user.userInfo) !== null && _user$userInfo5 !== void 0 && _user$userInfo5.is_teacher) {
+ if (!Staff.teacher_staff) {
+ message/* default.info */.ZP.info('已禁止老师报名');
+ return true;
+ }
+ } else {
+ if (!(Staff !== null && Staff !== void 0 && Staff.member_staff)) {
+ message/* default.info */.ZP.info('已禁止学生报名');
+ return true;
+ }
+ }
+ }
+ var submitData = function submitData(e) {
+ (0,service_competitions/* competition_review */.qt)(objectSpread2_default()(objectSpread2_default()({}, e), {}, {
+ id: identifier
+ })).then(function (res) {
+ if ((res === null || res === void 0 ? void 0 : res.status) == 0) {
+ message/* default.success */.ZP.success('发布审核成功,审核通过后,竞赛可上线启动');
+ setvisible(false);
+ init();
+ } else {
+ message/* default.error */.ZP.error(res === null || res === void 0 ? void 0 : res.message);
+ }
+ });
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("section", {
+ className: Editmodules.bg,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "edu-container",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.top,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(breadcrumb/* default */.Z, {
+ separator: ">",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(breadcrumb/* default.Item */.Z.Item, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(_umi_production_exports.Link, {
+ style: {
+ fontSize: 12
+ },
+ to: "/competitions",
+ children: "\u5728\u7EBF\u7ADE\u8D5B"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(breadcrumb/* default.Item */.Z.Item, {
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ fontSize: 12
+ },
+ children: Header === null || Header === void 0 ? void 0 : Header.name
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.content,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Editmodules.Banner,
+ src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "".concat(Header === null || Header === void 0 ? void 0 : Header.image)
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.right,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.titles,
+ children: [Header === null || Header === void 0 ? void 0 : Header.name, Header !== null && Header !== void 0 && Header.sub_title ? '-' + Header.sub_title : null]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.bonus,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ children: !!(Header !== null && Header !== void 0 && Header.bonus) ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ className: "font20",
+ children: ["\xA5", parseInt(Header && Header.bonus).toLocaleString()]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ fontSize: '20px',
+ color: '#C5C5C5'
+ },
+ children: "\u6682\u65E0"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.items,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-jiangjin"
+ }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u5956\u91D1"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: "font20",
+ children: parseInt(Header && (Header === null || Header === void 0 ? void 0 : Header.visits_count)).toLocaleString()
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.items,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-liulan1"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u6D4F\u89C8"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: "font20",
+ children: parseInt(Header && (Header === null || Header === void 0 ? void 0 : Header.member_count)).toLocaleString()
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.items,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-baoming"
+ }), " ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: "\u62A5\u540D"
+ })]
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.bottom,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#9096A3'
+ },
+ children: "\u7ADE\u8D5B\u65F6\u95F4"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginLeft: 20
+ },
+ children: Header !== null && Header !== void 0 && Header.start_time ? /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [Header === null || Header === void 0 ? void 0 : Header.start_time, "~", Header === null || Header === void 0 ? void 0 : Header.end_time]
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#3061D0',
+ cursor: "pointer"
+ },
+ onClick: function onClick() {
+ setParams({
+ tabsIndex: '4'
+ });
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '7'
+ }
+ });
+ },
+ children: "\u53BB\u5B8C\u5584"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ margin: "14px 0px"
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#9096A3'
+ },
+ children: "\u62A5\u540D\u622A\u6B62"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginLeft: 20
+ },
+ children: Header !== null && Header !== void 0 && Header.enroll_end_time ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: Header === null || Header === void 0 ? void 0 : Header.enroll_end_time
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#3061D0',
+ cursor: "pointer"
+ },
+ onClick: function onClick() {
+ setParams({
+ tabsIndex: '4'
+ });
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '7'
+ }
+ });
+ },
+ children: "\u53BB\u5B8C\u5584"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#9096A3'
+ },
+ children: "\u7ADE\u8D5B\u72B6\u6001"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ marginLeft: 20
+ },
+ children: (_types$find = types.find(function (item) {
+ return item.type === (Header === null || Header === void 0 ? void 0 : Header.competition_status);
+ })) === null || _types$find === void 0 ? void 0 : _types$find.name
+ })]
+ }), ['unpublish', 'preparing', 'review', 'not_passed'].includes(Header === null || Header === void 0 ? void 0 : Header.competition_status) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Editmodules.publish,
+ onClick: function onClick() {
+ if ((Header === null || Header === void 0 ? void 0 : Header.not_finish_count) > 0) {
+ modal/* default.confirm */.Z.confirm({
+ icon: null,
+ title: '',
+ okText: '去完善',
+ content: '检测到当前您还未完善竞赛指引的内容,请先完善指引清单,再发布审核竞赛',
+ onOk: function () {
+ var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ setParams({
+ tabsIndex: '4'
+ });
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '5'
+ }
+ });
+ case 2:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ function onOk() {
+ return _onOk.apply(this, arguments);
+ }
+ return onOk;
+ }()
+ });
+ } else {
+ setvisible(true);
+ (0,paths/* getSchoolOption */.GY)({}).then(function (res) {
+ setSchoolList(res === null || res === void 0 ? void 0 : res.schools);
+ }).then(function () {
+ var _user$userInfo6, _user$userInfo7, _user$userInfo8;
+ form.setFieldsValue({
+ sponsor_schools: (_user$userInfo6 = user.userInfo) === null || _user$userInfo6 === void 0 ? void 0 : _user$userInfo6.user_school_id,
+ sponsor_user_name: (_user$userInfo7 = user.userInfo) === null || _user$userInfo7 === void 0 ? void 0 : _user$userInfo7.real_name,
+ sponsor_user_phone: (_user$userInfo8 = user.userInfo) === null || _user$userInfo8 === void 0 ? void 0 : _user$userInfo8.phone
+ });
+ // common_header(identifier).then((res) => {
+ // form.setFieldValue('sponsor_schools', res?.sponsor_schools_array)
+ // form.setFieldValue('sponsor_user_name', res?.sponsor_user_name)
+ // form.setFieldValue('sponsor_user_phone', res?.sponsor_user_phone)
+ // })
+ });
+ }
+ },
+ children: "\u53D1\u5E03\u7ADE\u8D5B"
+ }), (Header === null || Header === void 0 ? void 0 : Header.competition_status) === 'progressing' && !(Header !== null && Header !== void 0 && Header.team_member_present) && !(Staff !== null && Staff !== void 0 && Staff.enroll_ended) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Editmodules.publish,
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res, _user$userInfo9, data;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(identifier, "/check_open.json"), {
+ method: 'post'
+ });
+ case 2:
+ res = _context2.sent;
+ if (!(res.status !== 0)) {
+ _context2.next = 5;
+ break;
+ }
+ return _context2.abrupt("return");
+ case 5:
+ if (!(Header !== null && Header !== void 0 && Header.personal)) {
+ _context2.next = 32;
+ break;
+ }
+ if (!(Header.teacher_need_phone || Header.member_need_phone)) {
+ _context2.next = 10;
+ break;
+ }
+ event.stopPropagation();
+ setshowphone(true);
+ return _context2.abrupt("return");
+ case 10:
+ if ((0,verifyLogin/* handleVerify */.tJ)(dispatch)) {
+ _context2.next = 12;
+ break;
+ }
+ return _context2.abrupt("return");
+ case 12:
+ if (!(Header !== null && Header !== void 0 && Header.need_check_mail)) {
+ _context2.next = 16;
+ break;
+ }
+ event.stopPropagation();
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ okText: '确定',
+ cancelText: '取消',
+ title: '提示',
+ icon: null,
+ content: '您暂未绑定邮箱,为了后续竞赛奖项颁发等相关事宜的正常且准确进行,请完成绑定再参加报名。',
+ onOk: function onOk() {
+ window.open('/account/secure');
+ }
+ });
+ return _context2.abrupt("return");
+ case 16:
+ if (!(Header !== null && Header !== void 0 && Header.is_authentication && !(user !== null && user !== void 0 && (_user$userInfo9 = user.userInfo) !== null && _user$userInfo9 !== void 0 && _user$userInfo9.authentication))) {
+ _context2.next = 19;
+ break;
+ }
+ dispatch({
+ type: 'shixunsDetail/setActionTabs',
+ payload: {
+ key: 'Banner-Auth'
+ }
+ });
+ return _context2.abrupt("return");
+ case 19:
+ if (!isadd()) {
+ _context2.next = 22;
+ break;
+ }
+ setbuttonloading(false);
+ return _context2.abrupt("return");
+ case 22:
+ if (!buttonloading) {
+ _context2.next = 24;
+ break;
+ }
+ return _context2.abrupt("return");
+ case 24:
+ setbuttonloading(true);
+ _context2.next = 27;
+ return dispatch({
+ type: 'competitions/AddTeam',
+ payload: {
+ identifier: identifier
+ }
+ });
+ case 27:
+ data = _context2.sent;
+ setbuttonloading(false);
+ if (data && data.status === 0) {
+ setdatas(data);
+ setisopen(true);
+ init();
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {}
+ });
+ }
+ _context2.next = 33;
+ break;
+ case 32:
+ setshowmodal(true);
+ case 33:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ children: "\u7ACB\u5373\u62A5\u540D"
+ }), (Header === null || Header === void 0 ? void 0 : Header.competition_status) === 'progressing' && (Header === null || Header === void 0 ? void 0 : Header.team_member_present) && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Editmodules.publish,
+ onClick: function onClick() {
+ setParams({
+ tabsIndex: '1'
+ });
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: 'entrance'
+ }
+ });
+ },
+ children: "\u8D5B\u9898\u5165\u53E3"
+ }), (Header === null || Header === void 0 ? void 0 : Header.competition_status) === 'ended' && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Editmodules.ended,
+ children: "\u5DF2\u7ED3\u675F"
+ })]
+ })]
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(affix/* default */.Z, {
+ offsetTop: 0,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomTabs */.YG, {
+ value: params.tabsIndex,
+ style: {
+ marginBottom: 25,
+ paddingLeft: 20,
+ background: '#fff',
+ height: 64
+ },
+ onChange: function onChange(e) {
+ params.tabsIndex = e;
+ setParams(objectSpread2_default()({}, params));
+ if (e === '3') {
+ var _Header$permission3;
+ if ((0,authority/* isAdmins */.eB)() || (_Header$permission3 = Header.permission) !== null && _Header$permission3 !== void 0 && _Header$permission3.editable) {} else {
+ if (!(Header !== null && Header !== void 0 && Header.team_member_present) && !(Staff !== null && Staff !== void 0 && Staff.enroll_ended)) {
+ if (Header.personal) {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '6'
+ }
+ });
+ } else {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '4'
+ }
+ });
+ }
+ }
+ }
+ }
+ if (e == '4') {
+ setenterDocument(false);
+ }
+ },
+ dataSource: tabs
+ })
+ }), (Header.competition_status === 'unpublish' || Header.competition_status === 'preparing' || Header.competition_status === 'review') && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.tag,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ExclamationCircleOutlined/* default */.Z, {}), " \u63D0\u793A\uFF1A\u8BE5\u7ADE\u8D5B\u8FD8\u672A\u5BA1\u6838\uFF0C\u6682\u65F6\u53EA\u6709\u7BA1\u7406\u5458\u53EF\u89C1"]
+ }), Header.competition_status === 'not_passed' && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.tag,
+ style: {
+ color: 'red',
+ background: 'rgba(229,51,51,0.1)'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ExclamationCircleOutlined/* default */.Z, {}), " \u5BA1\u6838\u88AB\u9A73\u56DE", /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ placement: "bottom",
+ title: Header === null || Header === void 0 ? void 0 : Header.not_passed_reason,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ marginLeft: 20
+ },
+ children: ["\u9A73\u56DE\u7406\u7531\uFF1A", Header === null || Header === void 0 ? void 0 : Header.not_passed_reason]
+ })
+ })]
+ }), (_tabs$find = tabs.find(function (item) {
+ return item.id === params.tabsIndex;
+ })) === null || _tabs$find === void 0 ? void 0 : _tabs$find.content]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: isAdd,
+ width: 610,
+ className: Editmodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setIsAdd(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.title,
+ children: "\u52A0\u5165\u6218\u961F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setIsAdd(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Editmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danchuangguanbi"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
+ form: form,
+ layout: "vertical",
+ onFinish: /*#__PURE__*/function () {
+ var _ref3 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3(values) {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ setbuttonloading(true);
+ if (!isadd()) {
+ _context3.next = 4;
+ break;
+ }
+ setbuttonloading(false);
+ return _context3.abrupt("return");
+ case 4:
+ _context3.next = 6;
+ return dispatch({
+ type: 'competitions/JoinTeam',
+ payload: {
+ identifier: identifier,
+ invite_code: values.name
+ }
+ });
+ case 6:
+ data = _context3.sent;
+ setbuttonloading(false);
+ if (data.status === 0) {
+ setisopen(true);
+ setdatas(data);
+ init();
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {}
+ });
+ }
+ case 9:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ }));
+ return function (_x) {
+ return _ref3.apply(this, arguments);
+ };
+ }(),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u9080\u8BF7\u7801",
+ name: "name",
+ className: Editmodules.jsinput,
+ rules: [{
+ required: true,
+ validator: function validator(_, value) {
+ var _value$replaceAll;
+ return (value === null || value === void 0 ? void 0 : (_value$replaceAll = value.replaceAll(' ', '')) === null || _value$replaceAll === void 0 ? void 0 : _value$replaceAll.length) > 0 ? Promise.resolve() : Promise.reject('请填写竞赛名称');
+ }
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ maxLength: 60,
+ className: Editmodules.baseFormItem,
+ showCount: true,
+ placeholder: "\u8BF7\u8F93\u5165\u9080\u8BF7\u7801"
+ })
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.bottom,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Editmodules.no,
+ onClick: function onClick() {
+ setIsAdd(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: buttonloading,
+ className: Editmodules.yes,
+ onClick: function onClick() {
+ form.submit();
+ },
+ children: "\u786E\u8BA4"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: showmodal,
+ width: 318,
+ className: Editmodules.scoremodal
+ // className='modal_styles'
+ ,
+ closable: false,
+ centered: true,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.title,
+ children: "\u62A5\u540D"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setshowmodal(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Editmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danchuangguanbi",
+ style: {
+ fontSize: '14px'
+ }
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.content,
+ children: "\u9009\u62E9\u53C2\u8D5B\u65B9\u5F0F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.bottoms,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Editmodules.no,
+ onClick: function onClick() {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '2'
+ }
+ });
+ setshowmodal(false);
+ },
+ children: "\u52A0\u5165\u6218\u961F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Editmodules.yes,
+ onClick: function onClick() {
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {
+ key: '3'
+ }
+ });
+ setshowmodal(false);
+ },
+ children: "\u521B\u5EFA\u6218\u961F"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: showmodals,
+ width: 318,
+ className: Editmodules.scoremodal,
+ closable: false,
+ centered: true,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.title,
+ children: "\u62A5\u540D"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setshowmodals(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Editmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danchuangguanbi"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.content,
+ children: "\u60A8\u6682\u672A\u62A5\u540D\uFF0C\u8BF7\u5148\u62A5\u540D"
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.bottoms,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Editmodules.yes,
+ onClick: function onClick() {
+ setshowmodals(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Editmodules.no,
+ loading: buttonloading,
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4() {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ if (!isadd()) {
+ _context4.next = 3;
+ break;
+ }
+ setbuttonloading(false);
+ return _context4.abrupt("return");
+ case 3:
+ if (!buttonloading) {
+ _context4.next = 5;
+ break;
+ }
+ return _context4.abrupt("return");
+ case 5:
+ setbuttonloading(true);
+ _context4.next = 8;
+ return dispatch({
+ type: 'competitions/AddTeam',
+ payload: {
+ identifier: identifier
+ }
+ });
+ case 8:
+ data = _context4.sent;
+ setbuttonloading(false);
+ if (data && data.status === 0) {
+ setdatas(data);
+ setisopen(true);
+ init();
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {}
+ });
+ }
+ setshowmodals(false);
+ case 12:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ })),
+ children: "\u7ACB\u5373\u62A5\u540D"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: isCreate,
+ width: 610,
+ className: Editmodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setisCreate(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.title,
+ children: "\u521B\u5EFA\u6218\u961F"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setisCreate(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Editmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-danchuangguanbi"
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
+ form: form,
+ layout: "vertical",
+ onFinish: /*#__PURE__*/function () {
+ var _ref5 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5(values) {
+ var data;
+ return regeneratorRuntime_default()().wrap(function _callee5$(_context5) {
+ while (1) switch (_context5.prev = _context5.next) {
+ case 0:
+ setbuttonloading(true);
+ if (!isadd()) {
+ _context5.next = 4;
+ break;
+ }
+ setbuttonloading(false);
+ return _context5.abrupt("return");
+ case 4:
+ _context5.next = 6;
+ return dispatch({
+ type: 'competitions/AddTeam',
+ payload: {
+ identifier: identifier,
+ name: values.name
+ }
+ });
+ case 6:
+ data = _context5.sent;
+ setbuttonloading(false);
+ if (data && data.status === 0) {
+ setdatas(data);
+ setisopen(true);
+ init();
+ dispatch({
+ type: 'competitions/setActionTabs',
+ payload: {}
+ });
+ }
+ case 9:
+ case "end":
+ return _context5.stop();
+ }
+ }, _callee5);
+ }));
+ return function (_x2) {
+ return _ref5.apply(this, arguments);
+ };
+ }(),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u961F\u540D",
+ name: "name",
+ className: Editmodules.jsinput,
+ rules: [{
+ required: true,
+ validator: function validator(_, value) {
+ var _value$replaceAll2;
+ return (value === null || value === void 0 ? void 0 : (_value$replaceAll2 = value.replaceAll(' ', '')) === null || _value$replaceAll2 === void 0 ? void 0 : _value$replaceAll2.length) > 0 ? Promise.resolve() : Promise.reject('请填写竞赛名称');
+ }
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ maxLength: 60,
+ className: Editmodules.baseFormItem,
+ showCount: true,
+ placeholder: "\u8BF7\u8F93\u5165\u961F\u540D"
+ })
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Editmodules.bottom,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Editmodules.no,
+ onClick: function onClick() {
+ setisCreate(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: buttonloading,
+ className: Editmodules.yes,
+ onClick: function onClick() {
+ form.submit();
+ },
+ children: "\u786E\u8BA4"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: visible,
+ width: 610,
+ className: Editmodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setvisible(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.title,
+ children: "\u4E3A\u4E86\u52A0\u5FEB\u7ADE\u8D5B\u5BA1\u6838\u901F\u5EA6\uFF0C\u8BF7\u786E\u8BA4\u4EE5\u4E0B\u4FE1\u606F\u662F\u5426\u51C6\u786E"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setvisible(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Editmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-guanbi",
+ style: {
+ color: '#979797',
+ fontSize: '15px'
+ }
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, {
+ form: form,
+ className: Editmodules.formWrap,
+ onFinish: submitData,
+ labelCol: {
+ flex: '110px'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: Editmodules.form_item,
+ label: "\u4E3B\u529E\u65B9",
+ colon: false,
+ name: "sponsor_schools",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select/* default */.Z, {
+ mode: "multiple",
+ className: Editmodules.form_item_item_select,
+ options: schoolList,
+ fieldNames: {
+ label: 'name',
+ value: 'id'
+ },
+ placeholder: "\u8BF7\u8F93\u5165\u4E3B\u529E\u65B9",
+ filterOption: function filterOption(input, option) {
+ var _option$name;
+ return ((_option$name = option === null || option === void 0 ? void 0 : option.name) !== null && _option$name !== void 0 ? _option$name : '').toLowerCase().includes(input.toLowerCase());
+ }
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: Editmodules.form_item,
+ label: "\u4E3B\u8981\u8D1F\u8D23\u4EBA\u59D3\u540D",
+ colon: false,
+ name: "sponsor_user_name",
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: Editmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u4E3B\u8981\u8D1F\u8D23\u4EBA\u59D3\u540D"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ className: Editmodules.form_item,
+ label: "\u4E3B\u8981\u8D1F\u8D23\u4EBA\u7535\u8BDD",
+ colon: false,
+ name: "sponsor_user_phone",
+ rules: [{
+ pattern: new RegExp(/^((0\d{2,3}(-)?\d{7,8})|(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8})$/, "g"),
+ message: '必须是正确的座机号或者手机号'
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ className: Editmodules.form_item_item,
+ placeholder: "\u8BF7\u8F93\u5165\u4E3B\u8981\u8D1F\u8D23\u4EBA\u7535\u8BDD"
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Editmodules.bottom,
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default.Item */.Z.Item, {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ size: "large",
+ className: Editmodules.no,
+ onClick: function onClick() {
+ setvisible(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Editmodules.yes,
+ size: "large",
+ type: "primary",
+ htmlType: "submit",
+ loading: loading,
+ children: "\u4FDD\u5B58"
+ })]
+ })
+ })]
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(AuthenticationModel/* default */.Z, {}), /*#__PURE__*/(0,jsx_runtime.jsx)(PhoneModal/* default */.Z, {
+ datas: datas,
+ isopen: isopen,
+ setisopen: setisopen,
+ isShowPhone: showphone,
+ setIsShowPhone: setshowphone,
+ user: user,
+ dispatch: dispatch,
+ onOK: function onOK() {
+ init();
+ }
+ })]
+ });
+};
+/* harmony default export */ var Edit = ((0,_umi_production_exports.connect)(function (_ref6) {
+ var competitions = _ref6.competitions,
+ loading = _ref6.loading,
+ globalSetting = _ref6.globalSetting,
+ user = _ref6.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(Edit_competitionsPage));
+
+/***/ }),
+
+/***/ 74009:
+/*!**********************************************************!*\
+ !*** ./src/pages/Competitions/components/PhoneModal.tsx ***!
+ \**********************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+/* harmony import */ var antd_es_modal_style__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! antd/es/modal/style */ 35611);
+/* harmony import */ var antd_es_modal__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! antd/es/modal */ 85402);
+/* harmony import */ var antd_es_button_style__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! antd/es/button/style */ 29913);
+/* harmony import */ var antd_es_button__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! antd/es/button */ 71577);
+/* harmony import */ var antd_es_input_style__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! antd/es/input/style */ 69463);
+/* harmony import */ var antd_es_input__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! antd/es/input */ 75008);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js */ 17061);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3__);
+/* harmony import */ var antd_es_message_style__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! antd/es/message/style */ 14934);
+/* harmony import */ var antd_es_message__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! antd/es/message */ 12461);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/asyncToGenerator.js */ 17156);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5__);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/slicedToArray.js */ 27424);
+/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6__);
+/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! react */ 67294);
+/* harmony import */ var _utils_fetch__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @/utils/fetch */ 84519);
+/* harmony import */ var _utils_hooks_useInterval__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/hooks/useInterval */ 1971);
+/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @/utils/util */ 29427);
+/* harmony import */ var _utils_env__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @/utils/env */ 59758);
+/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! react/jsx-runtime */ 85893);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var phoneReg = /^1\d{10}$/;
+function Addmodal(_ref) {
+ var isShowPhone = _ref.isShowPhone,
+ setIsShowPhone = _ref.setIsShowPhone,
+ user = _ref.user,
+ dispatch = _ref.dispatch,
+ onOK = _ref.onOK,
+ isopen = _ref.isopen,
+ setisopen = _ref.setisopen,
+ datas = _ref.datas;
+ var _useState = (0,react__WEBPACK_IMPORTED_MODULE_7__.useState)(''),
+ _useState2 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default()(_useState, 2),
+ phone = _useState2[0],
+ setphone = _useState2[1];
+ var _useState3 = (0,react__WEBPACK_IMPORTED_MODULE_7__.useState)(''),
+ _useState4 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default()(_useState3, 2),
+ PhoneValue = _useState4[0],
+ setPhoneValue = _useState4[1];
+ var _useState5 = (0,react__WEBPACK_IMPORTED_MODULE_7__.useState)(60),
+ _useState6 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default()(_useState5, 2),
+ countdown = _useState6[0],
+ setCountdown = _useState6[1];
+ var _useState7 = (0,react__WEBPACK_IMPORTED_MODULE_7__.useState)(),
+ _useState8 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default()(_useState7, 2),
+ countdownFlag = _useState8[0],
+ setCountdownFlag = _useState8[1];
+ var _useState9 = (0,react__WEBPACK_IMPORTED_MODULE_7__.useState)(false),
+ _useState10 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default()(_useState9, 2),
+ isShowPoint = _useState10[0],
+ setIsShowPoint = _useState10[1];
+ var _useState11 = (0,react__WEBPACK_IMPORTED_MODULE_7__.useState)(false),
+ _useState12 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default()(_useState11, 2),
+ isShowUntie = _useState12[0],
+ setIsShowUntie = _useState12[1];
+ var _useState13 = (0,react__WEBPACK_IMPORTED_MODULE_7__.useState)(''),
+ _useState14 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_slicedToArray_js__WEBPACK_IMPORTED_MODULE_6___default()(_useState13, 2),
+ UntieValue = _useState14[0],
+ setUntieValue = _useState14[1];
+ var intervalId = (0,react__WEBPACK_IMPORTED_MODULE_7__.useRef)();
+ (0,react__WEBPACK_IMPORTED_MODULE_7__.useEffect)(function () {
+ return function () {
+ intervalId.current && clearInterval(intervalId.current);
+ };
+ }, []);
+ (0,_utils_hooks_useInterval__WEBPACK_IMPORTED_MODULE_9__/* .useInterval */ .Y)(function () {
+ if (!countdownFlag) {
+ return;
+ } else {
+ setCountdown(60);
+ }
+ if (countdown > 0) {
+ setCountdown(countdown - 1);
+ } else {
+ setCountdown(60);
+ setCountdownFlag(false);
+ intervalId.current && clearInterval(intervalId.current);
+ }
+ }, 1000);
+ var handleGetCode = /*#__PURE__*/function () {
+ var _ref2 = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().mark(function _callee() {
+ var _user$userInfo;
+ var data, smscode, res;
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .ZP)("/api/users/accounts/".concat((_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login, "/valid_phone.json"), {
+ method: 'get',
+ params: {
+ phone: phone
+ }
+ });
+ case 2:
+ data = _context.sent;
+ if (!((data === null || data === void 0 ? void 0 : data.status) === -1)) {
+ _context.next = 5;
+ break;
+ }
+ return _context.abrupt("return");
+ case 5:
+ if (!(data !== null && data !== void 0 && data.is_exists)) {
+ _context.next = 8;
+ break;
+ }
+ setIsShowPoint(true);
+ return _context.abrupt("return");
+ case 8:
+ smscode = (0,_utils_util__WEBPACK_IMPORTED_MODULE_10__/* .setmiyah */ .M)(phone);
+ _context.next = 11;
+ return dispatch({
+ type: 'account/getCode',
+ payload: {
+ login: phone,
+ type: 3,
+ smscode: smscode
+ }
+ });
+ case 11:
+ res = _context.sent;
+ if (res.status === 1) {
+ antd_es_message__WEBPACK_IMPORTED_MODULE_13__/* ["default"].info */ .ZP.info('验证码已发送,请注意查收');
+ setCountdownFlag(true);
+ }
+ case 13:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function handleGetCode() {
+ return _ref2.apply(this, arguments);
+ };
+ }();
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("div", {
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_14__/* ["default"] */ .Z, {
+ title: "\u5F3A\u5236\u89E3\u7ED1",
+ open: isShowUntie,
+ onCancel: function onCancel() {
+ return setIsShowUntie(false);
+ },
+ onOk: /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().mark(function _callee2() {
+ var _user$userInfo2;
+ var data;
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ if (UntieValue) {
+ _context2.next = 3;
+ break;
+ }
+ antd_es_message__WEBPACK_IMPORTED_MODULE_13__/* ["default"].info */ .ZP.info('验证码不能为空');
+ return _context2.abrupt("return");
+ case 3:
+ _context2.next = 5;
+ return (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .ZP)("/api/users/accounts/".concat(user === null || user === void 0 ? void 0 : (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.login, "/phone_force_unbind.json"), {
+ method: 'POST',
+ body: {
+ code: UntieValue,
+ phone: phone
+ }
+ });
+ case 5:
+ data = _context2.sent;
+ if ((data === null || data === void 0 ? void 0 : data.status) === 0) {
+ antd_es_message__WEBPACK_IMPORTED_MODULE_13__/* ["default"].info */ .ZP.info('解绑成功');
+ setCountdownFlag(false);
+ setIsShowUntie(false);
+ onOK();
+ setIsShowPhone(false);
+ setUntieValue('');
+ }
+ case 7:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("div", {
+ style: {
+ padding: '8px 24px'
+ },
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("p", {
+ children: "\u82E5\u539F\u8D26\u53F7\u53EA\u6709\u7ED1\u5B9A\u4E86\u624B\u673A\u53F7\u4E00\u79CD\u767B\u5F55\u65B9\u5F0F\uFF0C\u5F3A\u5236\u89E3\u7ED1\u540E\u4F1A\u5BFC\u81F4\u539F\u8D26\u53F7\u65E0\u6CD5\u767B\u5F55\uFF0C\u8BF7\u786E\u5B9A\u662F\u5426\u5F3A\u5236\u89E3\u7ED1"
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("p", {
+ children: ["\u4F60\u7684\u624B\u673A\u53F7\uFF1A", phone]
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("p", {
+ children: ["\u624B\u673A\u9A8C\u8BC1\u7801\uFF1A", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_input__WEBPACK_IMPORTED_MODULE_15__/* ["default"] */ .Z, {
+ value: UntieValue,
+ size: "large",
+ onChange: function onChange(e) {
+ return setUntieValue(e.target.value);
+ },
+ style: {
+ width: '240px'
+ }
+ }), " ", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_button__WEBPACK_IMPORTED_MODULE_16__/* ["default"] */ .Z, {
+ disabled: countdownFlag,
+ type: "primary",
+ size: "large",
+ onClick: /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().mark(function _callee3() {
+ var smscode, res;
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
+ case 0:
+ smscode = (0,_utils_util__WEBPACK_IMPORTED_MODULE_10__/* .setmiyah */ .M)(phone);
+ _context3.next = 3;
+ return dispatch({
+ type: 'account/getCode',
+ payload: {
+ login: phone,
+ type: 10,
+ smscode: smscode
+ }
+ });
+ case 3:
+ res = _context3.sent;
+ if (res.status === 1) {
+ antd_es_message__WEBPACK_IMPORTED_MODULE_13__/* ["default"].info */ .ZP.info('验证码已发送,请注意查收');
+ setCountdownFlag(true);
+ }
+ case 5:
+ case "end":
+ return _context3.stop();
+ }
+ }, _callee3);
+ })),
+ children: countdownFlag ? "\u91CD\u65B0\u53D1\u9001".concat(countdown, "s") : '获取验证码'
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_14__/* ["default"] */ .Z, {
+ title: "\u63D0\u793A",
+ open: isShowPoint,
+ onCancel: function onCancel() {
+ setIsShowPoint(false);
+ },
+ okText: "\u8FDB\u884C\u5F3A\u5236\u89E3\u7ED1",
+ okButtonProps: {
+ type: "primary",
+ ghost: true,
+ style: {
+ width: "124px"
+ }
+ },
+ onOk: function onOk() {
+ setIsShowUntie(true);
+ setIsShowPoint(false);
+ }
+ // footer={
+ //
+ // }
+ ,
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("div", {
+ style: {
+ padding: '7px 24px'
+ },
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("span", {
+ children: "\u8BE5\u624B\u673A\u53F7\u5DF2\u7ECF\u88AB\u7ED1\u5B9A\u8D26\u53F7\uFF0C\u5982\u679C\u9700\u8981\u5C06\u8BE5\u624B\u673A\u53F7\u7ED1\u5B9A\u5728\u5F53\u524D\u8D26\u53F7\u4E0A\uFF0C\u4F60\u53EF\u4EE5\u8FDB\u884C\u4E0B\u65B9\u4EFB\u610F\u4E00\u79CD\u89E3\u7ED1\u64CD\u4F5C\uFF1A"
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("br", {}), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("p", {
+ style: {
+ marginTop: '1em',
+ display: 'flex'
+ },
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("span", {
+ style: {
+ flex: '1'
+ },
+ children: "1\u3001\u4F7F\u7528\u8BE5\u624B\u673A\u53F7\u767B\u5F55\u5E73\u53F0\u8FDB\u884C\u89E3\u7ED1\uFF0C\u518D\u5C06\u624B\u673A\u53F7\u7ED1\u5B9A\u5F53\u524D\u8D26\u53F7\u4E0A\u3002"
+ })
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("p", {
+ style: {
+ marginTop: '1em',
+ display: 'flex'
+ },
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("span", {
+ style: {
+ flex: '1'
+ },
+ children: "2\u3001\u5F3A\u5236\u89E3\u7ED1\uFF08\u5F3A\u5236\u89E3\u7ED1\u53EF\u80FD\u4F1A\u5BFC\u81F4\u89E3\u7ED1\u8D26\u53F7\u65E0\u6CD5\u767B\u5F55\uFF09"
+ })
+ })]
+ })
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_14__/* ["default"] */ .Z, {
+ title: "\u7ED1\u5B9A\u624B\u673A\u53F7",
+ open: isShowPhone,
+ onCancel: function onCancel() {
+ return setIsShowPhone(false);
+ },
+ onOk: /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().mark(function _callee4() {
+ var _ref6, login, res;
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
+ case 0:
+ if (phoneReg.test(phone)) {
+ _context4.next = 3;
+ break;
+ }
+ antd_es_message__WEBPACK_IMPORTED_MODULE_13__/* ["default"].info */ .ZP.info("请输入有效的11位手机号码");
+ return _context4.abrupt("return");
+ case 3:
+ if (PhoneValue) {
+ _context4.next = 6;
+ break;
+ }
+ antd_es_message__WEBPACK_IMPORTED_MODULE_13__/* ["default"].info */ .ZP.info("请输入验证码");
+ return _context4.abrupt("return");
+ case 6:
+ _ref6 = user.userInfo || {}, login = _ref6.login;
+ _context4.next = 9;
+ return dispatch({
+ type: 'account/bindPhone',
+ payload: {
+ login: login,
+ phone: phone,
+ code: PhoneValue
+ }
+ });
+ case 9:
+ res = _context4.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ setIsShowPhone(false);
+ onOK();
+ }
+ case 11:
+ case "end":
+ return _context4.stop();
+ }
+ }, _callee4);
+ })),
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("div", {
+ style: {
+ padding: '8px 24px'
+ },
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("p", {
+ children: "\u5E73\u53F0\u5DF2\u68C0\u6D4B\u5230\u60A8\u672A\u7ED1\u5B9A\u624B\u673A\u53F7\uFF0C\u4E3A\u4E86\u4E0D\u5F71\u54CD\u4F7F\u7528\u62A5\u540D\u529F\u80FD\uFF0C\u8BF7\u5148\u7ED1\u5B9A\u624B\u673A\u53F7\u7801"
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("p", {
+ children: ["\u4F60\u7684\u624B\u673A\u53F7\uFF1A", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_input__WEBPACK_IMPORTED_MODULE_15__/* ["default"] */ .Z, {
+ size: "large",
+ value: phone,
+ onChange: function onChange(e) {
+ return setphone(e.target.value);
+ },
+ style: {
+ width: '240px'
+ }
+ })]
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("p", {
+ children: ["\u624B\u673A\u9A8C\u8BC1\u7801\uFF1A", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_input__WEBPACK_IMPORTED_MODULE_15__/* ["default"] */ .Z, {
+ size: "large",
+ value: PhoneValue,
+ onChange: function onChange(e) {
+ return setPhoneValue(e.target.value);
+ },
+ style: {
+ width: '240px'
+ }
+ }), " ", /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_button__WEBPACK_IMPORTED_MODULE_16__/* ["default"] */ .Z, {
+ disabled: countdownFlag,
+ type: "primary",
+ size: "large",
+ onClick: /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_5___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().mark(function _callee5() {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_3___default()().wrap(function _callee5$(_context5) {
+ while (1) switch (_context5.prev = _context5.next) {
+ case 0:
+ if (phoneReg.test(phone)) {
+ _context5.next = 3;
+ break;
+ }
+ antd_es_message__WEBPACK_IMPORTED_MODULE_13__/* ["default"].info */ .ZP.info("请输入有效的11位手机号码");
+ return _context5.abrupt("return");
+ case 3:
+ handleGetCode();
+ case 4:
+ case "end":
+ return _context5.stop();
+ }
+ }, _callee5);
+ })),
+ children: countdownFlag ? "\u91CD\u65B0\u53D1\u9001".concat(countdown, "s") : '获取验证码'
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)(antd_es_modal__WEBPACK_IMPORTED_MODULE_14__/* ["default"] */ .Z, {
+ open: isopen,
+ footer: false,
+ onCancel: function onCancel() {
+ return setisopen(false);
+ },
+ centered: true,
+ width: 460,
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("div", {
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("div", {
+ style: {
+ marginTop: 50,
+ fontSize: 26,
+ color: '#3d3d3d',
+ textAlign: 'center',
+ marginBottom: 20
+ },
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("i", {
+ style: {
+ fontSize: 26,
+ color: '#52C41A'
+ },
+ className: "iconfont icon-tongguo"
+ }), " \u62A5\u540D\u6210\u529F"]
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)("div", {
+ style: {
+ alignItems: 'center',
+ textAlign: 'center'
+ },
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("img", {
+ style: {
+ width: 180,
+ border: '1px solid #eeeeef',
+ padding: 10,
+ marginBottom: 20
+ },
+ src: _utils_env__WEBPACK_IMPORTED_MODULE_11__/* ["default"].IMG_SERVER */ .Z.IMG_SERVER + (datas === null || datas === void 0 ? void 0 : datas.QR_code)
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx)("p", {
+ style: {
+ color: '#AAAAAA'
+ },
+ children: "\u53C2\u8D5B\u8005\u53EF\u626B\u7801\u52A0\u5165\u5927\u8D5B\u5B98\u65B9\u4EA4\u6D41\u7FA4\uFF0C\u83B7\u53D6\u6700\u65B0\u7ADE\u8D5B\u901A\u77E5"
+ })]
+ })]
+ })
+ })]
+ });
+}
+/* harmony default export */ __webpack_exports__["Z"] = (Addmodal);
+
+/***/ }),
+
+/***/ 12325:
+/*!*******************************!*\
+ !*** ./src/utils/cityData.ts ***!
+ \*******************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+/* harmony export */ __webpack_require__.d(__webpack_exports__, {
+/* harmony export */ "P": function() { return /* binding */ CityData; }
+/* harmony export */ });
+var CityData = [{
+ value: '北京',
+ label: '北京',
+ children: [{
+ value: "东城",
+ label: '东城'
+ }, {
+ value: "西城",
+ label: "西城"
+ }, {
+ value: "朝阳",
+ label: "朝阳"
+ }, {
+ value: "丰台",
+ label: "丰台"
+ }, {
+ value: "石景山",
+ label: "石景山"
+ }, {
+ value: "海淀",
+ label: "海淀"
+ }, {
+ value: "门头沟",
+ label: "门头沟"
+ }, {
+ value: "房山",
+ label: "房山"
+ }, {
+ value: "通州",
+ label: "通州"
+ }, {
+ value: "顺义",
+ label: "顺义"
+ }, {
+ value: "昌平",
+ label: "昌平"
+ }, {
+ value: "大兴",
+ label: "大兴"
+ }, {
+ value: "平谷",
+ label: "平谷"
+ }, {
+ value: "怀柔",
+ label: "怀柔"
+ }, {
+ value: "密云",
+ label: "密云"
+ }, {
+ value: "延庆",
+ label: "延庆"
+ }]
+}, {
+ value: '上海',
+ label: '上海',
+ children: [{
+ value: "崇明",
+ label: '崇明'
+ }, {
+ value: '黄浦',
+ label: '黄浦'
+ }, {
+ value: '卢湾',
+ label: '卢湾'
+ }, {
+ value: '徐汇',
+ label: '徐汇'
+ }, {
+ value: '长宁',
+ label: '长宁'
+ }, {
+ value: '静安',
+ label: '静安'
+ }, {
+ value: '普陀',
+ label: '普陀'
+ }, {
+ value: '闸北',
+ label: '闸北'
+ }, {
+ value: '虹口',
+ label: '虹口'
+ }, {
+ value: '杨浦',
+ label: '杨浦'
+ }, {
+ value: '闵行',
+ label: '闵行'
+ }, {
+ value: '宝山',
+ label: '宝山'
+ }, {
+ value: '嘉定',
+ label: '嘉定'
+ }, {
+ value: '浦东',
+ label: '浦东'
+ }, {
+ value: '金山',
+ label: '金山'
+ }, {
+ value: '松江',
+ label: '松江'
+ }, {
+ value: '青浦',
+ label: '青浦'
+ }, {
+ value: '南汇',
+ label: '南汇'
+ }, {
+ value: '奉贤',
+ label: '奉贤'
+ }]
+}, {
+ value: '广东',
+ label: '广东',
+ children: [{
+ value: "广州",
+ label: '广州'
+ }, {
+ value: '深圳',
+ label: '深圳'
+ }, {
+ value: '珠海',
+ label: '珠海'
+ }, {
+ value: '东莞',
+ label: '东莞'
+ }, {
+ value: '中山',
+ label: '中山'
+ }, {
+ value: '佛山',
+ label: '佛山'
+ }, {
+ value: '惠州',
+ label: '惠州'
+ }, {
+ value: '河源',
+ label: '河源'
+ }, {
+ value: '潮州',
+ label: '潮州'
+ }, {
+ value: '江门',
+ label: '江门'
+ }, {
+ value: '揭阳',
+ label: '揭阳'
+ }, {
+ value: '茂名',
+ label: '茂名'
+ }, {
+ value: '梅州',
+ label: '梅州'
+ }, {
+ value: '清远',
+ label: '清远'
+ }, {
+ value: '汕头',
+ label: '汕头'
+ }, {
+ value: '汕尾',
+ label: '汕尾'
+ }, {
+ value: '韶关',
+ label: '韶关'
+ }, {
+ value: '顺德',
+ label: '顺德'
+ }, {
+ value: '阳江',
+ label: '阳江'
+ }, {
+ value: '云浮',
+ label: '云浮'
+ }, {
+ value: '湛江',
+ label: '湛江'
+ }, {
+ value: '肇庆',
+ label: '肇庆'
+ }]
+}, {
+ value: '江苏',
+ label: '江苏',
+ children: [{
+ value: "南京",
+ label: '南京'
+ }, {
+ value: '常熟',
+ label: '常熟'
+ }, {
+ value: '常州',
+ label: '常州'
+ }, {
+ value: '海门',
+ label: '海门'
+ }, {
+ value: '淮安',
+ label: '淮安'
+ }, {
+ value: '江都',
+ label: '江都'
+ }, {
+ value: '江阴',
+ label: '江阴'
+ }, {
+ value: '昆山',
+ label: '昆山'
+ }, {
+ value: '连云港',
+ label: '连云港'
+ }, {
+ value: '南通',
+ label: '南通'
+ }, {
+ value: '启东',
+ label: '启东'
+ }, {
+ value: '沭阳',
+ label: '沭阳'
+ }, {
+ value: '宿迁',
+ label: '宿迁'
+ }, {
+ value: '苏州',
+ label: '苏州'
+ }, {
+ value: '太仓',
+ label: '太仓'
+ }, {
+ value: '泰州',
+ label: '泰州'
+ }, {
+ value: '同里',
+ label: '同里'
+ }, {
+ value: '无锡',
+ label: '无锡'
+ }, {
+ value: '徐州',
+ label: '徐州'
+ }, {
+ value: '盐城',
+ label: '盐城'
+ }, {
+ value: '扬州',
+ label: '扬州'
+ }, {
+ value: '宜兴',
+ label: '宜兴'
+ }, {
+ value: '仪征',
+ label: '仪征'
+ }, {
+ value: '张家港',
+ label: '张家港'
+ }, {
+ value: '镇江',
+ label: '镇江'
+ }]
+}, {
+ value: '重庆',
+ label: '重庆',
+ children: [{
+ value: "万州",
+ label: '万州'
+ }, {
+ value: '涪陵',
+ label: '涪陵'
+ }, {
+ value: '渝中',
+ label: '渝中'
+ }, {
+ value: '大渡口',
+ label: '大渡口'
+ }, {
+ value: '江北',
+ label: '江北'
+ }, {
+ value: '沙坪坝',
+ label: '沙坪坝'
+ }, {
+ value: '九龙坡',
+ label: '九龙坡'
+ }, {
+ value: '南岸',
+ label: '南岸'
+ }, {
+ value: '北碚',
+ label: '北碚'
+ }, {
+ value: '万盛',
+ label: '万盛'
+ }, {
+ value: '双挢',
+ label: '双挢'
+ }, {
+ value: '渝北',
+ label: '渝北'
+ }, {
+ value: '巴南',
+ label: '巴南'
+ }, {
+ value: '黔江',
+ label: '黔江'
+ }, {
+ value: '长寿',
+ label: '长寿'
+ }, {
+ value: '綦江',
+ label: '綦江'
+ }, {
+ value: '潼南',
+ label: '潼南'
+ }, {
+ value: '铜梁',
+ label: '铜梁'
+ }, {
+ value: '大足',
+ label: '大足'
+ }, {
+ value: '荣昌',
+ label: '荣昌'
+ }, {
+ value: '壁山',
+ label: '壁山'
+ }, {
+ value: '梁平',
+ label: '梁平'
+ }, {
+ value: '城口',
+ label: '城口'
+ }, {
+ value: '丰都',
+ label: '丰都'
+ }, {
+ value: '垫江',
+ label: '垫江'
+ }, {
+ value: '武隆',
+ label: '武隆'
+ }, {
+ value: '忠县',
+ label: '忠县'
+ }, {
+ value: '开县',
+ label: '开县'
+ }, {
+ value: '云阳',
+ label: '云阳'
+ }, {
+ value: '奉节',
+ label: '奉节'
+ }, {
+ value: '巫山',
+ label: '巫山'
+ }, {
+ value: '巫溪',
+ label: '巫溪'
+ }, {
+ value: '石柱',
+ label: '石柱'
+ }, {
+ value: '秀山',
+ label: '秀山'
+ }, {
+ value: '酉阳',
+ label: '酉阳'
+ }, {
+ value: '彭水',
+ label: '彭水'
+ }, {
+ value: '江津',
+ label: '江津'
+ }, {
+ value: '合川',
+ label: '合川'
+ }, {
+ value: '永川',
+ label: '永川'
+ }, {
+ value: '南川',
+ label: '南川'
+ }]
+}, {
+ value: '安徽',
+ label: '安徽',
+ children: [{
+ value: "合肥",
+ label: '合肥'
+ }, {
+ value: '安庆',
+ label: '安庆'
+ }, {
+ value: '蚌埠',
+ label: '蚌埠'
+ }, {
+ value: '亳州',
+ label: '亳州'
+ }, {
+ value: '巢湖',
+ label: '巢湖'
+ }, {
+ value: '滁州',
+ label: '滁州'
+ }, {
+ value: '阜阳',
+ label: '阜阳'
+ }, {
+ value: '贵池',
+ label: '贵池'
+ }, {
+ value: '淮北',
+ label: '淮北'
+ }, {
+ value: '淮化',
+ label: '淮化'
+ }, {
+ value: '淮南',
+ label: '淮南'
+ }, {
+ value: '黄山',
+ label: '黄山'
+ }, {
+ value: '九华山',
+ label: '九华山'
+ }, {
+ value: '六安',
+ label: '六安'
+ }, {
+ value: '马鞍山',
+ label: '马鞍山'
+ }, {
+ value: '宿州',
+ label: '宿州'
+ }, {
+ value: '铜陵',
+ label: '铜陵'
+ }, {
+ value: '屯溪',
+ label: '屯溪'
+ }, {
+ value: '芜湖',
+ label: '芜湖'
+ }, {
+ value: '宣城',
+ label: '宣城'
+ }]
+}, {
+ value: '福建',
+ label: '福建',
+ children: [{
+ value: "福州",
+ label: '福州'
+ }, {
+ value: '厦门',
+ label: '厦门'
+ }, {
+ value: '泉州',
+ label: '泉州'
+ }, {
+ value: '漳州',
+ label: '漳州'
+ }, {
+ value: '龙岩',
+ label: '龙岩'
+ }, {
+ value: '南平',
+ label: '南平'
+ }, {
+ value: '宁德',
+ label: '宁德'
+ }, {
+ value: '莆田',
+ label: '莆田'
+ }, {
+ value: '三明',
+ label: '三明'
+ }]
+}, {
+ value: '甘肃',
+ label: '甘肃',
+ children: [{
+ value: "兰州",
+ label: '兰州'
+ }, {
+ value: "嘉峪关",
+ label: '嘉峪关'
+ }, {
+ value: '白银',
+ label: '白银'
+ }, {
+ value: '定西',
+ label: '定西'
+ }, {
+ value: '敦煌',
+ label: '敦煌'
+ }, {
+ value: '甘南',
+ label: '甘南'
+ }, {
+ value: '金昌',
+ label: '金昌'
+ }, {
+ value: '酒泉',
+ label: '酒泉'
+ }, {
+ value: '临夏',
+ label: '临夏'
+ }, {
+ value: '平凉',
+ label: '平凉'
+ }, {
+ value: '天水',
+ label: '天水'
+ }, {
+ value: '陇南',
+ label: '陇南'
+ }, {
+ value: '武威',
+ label: '武威'
+ }, {
+ value: '西峰',
+ label: '西峰'
+ }, {
+ value: '张掖',
+ label: '张掖'
+ }]
+}, {
+ value: '广西',
+ label: '广西',
+ children: [{
+ value: "南宁",
+ label: '南宁'
+ }, {
+ value: "来宾",
+ label: '来宾'
+ }, {
+ value: '百色',
+ label: '百色'
+ }, {
+ value: '北海',
+ label: '北海'
+ }, {
+ value: '桂林',
+ label: '桂林'
+ }, {
+ value: '防城港',
+ label: '防城港'
+ }, {
+ value: '贵港',
+ label: '贵港'
+ }, {
+ value: '河池',
+ label: '河池'
+ }, {
+ value: '贺州',
+ label: '贺州'
+ }, {
+ value: '柳州',
+ label: '柳州'
+ }, {
+ value: '钦州',
+ label: '钦州'
+ }, {
+ value: '梧州',
+ label: '梧州'
+ }, {
+ value: '玉林',
+ label: '玉林'
+ }]
+}, {
+ value: '贵州',
+ label: '贵州',
+ children: [{
+ value: "贵阳",
+ label: '贵阳'
+ }, {
+ value: '安顺',
+ label: '安顺'
+ }, {
+ value: '毕节',
+ label: '毕节'
+ }, {
+ value: '都匀',
+ label: '都匀'
+ }, {
+ value: '凯里',
+ label: '凯里'
+ }, {
+ value: '六盘水',
+ label: '六盘水'
+ }, {
+ value: '铜仁',
+ label: '铜仁'
+ }, {
+ value: '兴义',
+ label: '兴义'
+ }, {
+ value: '玉屏',
+ label: '玉屏'
+ }, {
+ value: '遵义',
+ label: '遵义'
+ }]
+}, {
+ value: '海南',
+ label: '海南',
+ children: [{
+ value: "海口",
+ label: '海口'
+ }, {
+ value: '儋县',
+ label: '儋县'
+ }, {
+ value: '陵水',
+ label: '陵水'
+ }, {
+ value: '琼海',
+ label: '琼海'
+ }, {
+ value: '三亚',
+ label: '三亚'
+ }, {
+ value: '通什',
+ label: '通什'
+ }, {
+ value: '万宁',
+ label: '万宁'
+ }]
+}, {
+ value: '河北',
+ label: '河北',
+ children: [{
+ value: "石家庄",
+ label: '石家庄'
+ }, {
+ value: '保定',
+ label: '保定'
+ }, {
+ value: '北戴河',
+ label: '北戴河'
+ }, {
+ value: '沧州',
+ label: '沧州'
+ }, {
+ value: '承德',
+ label: '承德'
+ }, {
+ value: '丰润',
+ label: '丰润'
+ }, {
+ value: '邯郸',
+ label: '邯郸'
+ }, {
+ value: '衡水',
+ label: '衡水'
+ }, {
+ value: '廊坊',
+ label: '廊坊'
+ }, {
+ value: '南戴河',
+ label: '南戴河'
+ }, {
+ value: '秦皇岛',
+ label: '秦皇岛'
+ }, {
+ value: '唐山',
+ label: '唐山'
+ }, {
+ value: '新城',
+ label: '新城'
+ }, {
+ value: '邢台',
+ label: '邢台'
+ }, {
+ value: '张家口',
+ label: '张家口'
+ }]
+}, {
+ value: '黑龙江',
+ label: '黑龙江',
+ children: [{
+ value: "哈尔滨",
+ label: '哈尔滨'
+ }, {
+ value: '北安',
+ label: '北安'
+ }, {
+ value: '大庆',
+ label: '大庆'
+ }, {
+ value: '大兴安岭',
+ label: '大兴安岭'
+ }, {
+ value: '鹤岗',
+ label: '鹤岗'
+ }, {
+ value: '黑河',
+ label: '黑河'
+ }, {
+ value: '佳木斯',
+ label: '佳木斯'
+ }, {
+ value: '鸡西',
+ label: '鸡西'
+ }, {
+ value: '牡丹江',
+ label: '牡丹江'
+ }, {
+ value: '齐齐哈尔',
+ label: '齐齐哈尔'
+ }, {
+ value: '七台河',
+ label: '七台河'
+ }, {
+ value: '双鸭山',
+ label: '双鸭山'
+ }, {
+ value: '绥化',
+ label: '绥化'
+ }, {
+ value: '伊春',
+ label: '伊春'
+ }]
+}, {
+ value: '河南',
+ label: '河南',
+ children: [{
+ value: "郑州",
+ label: '郑州'
+ }, {
+ value: '安阳',
+ label: '安阳'
+ }, {
+ value: '鹤壁',
+ label: '鹤壁'
+ }, {
+ value: '潢川',
+ label: '潢川'
+ }, {
+ value: '焦作',
+ label: '焦作'
+ }, {
+ value: '济源',
+ label: '济源'
+ }, {
+ value: '开封',
+ label: '开封'
+ }, {
+ value: '漯河',
+ label: '漯河'
+ }, {
+ value: '洛阳',
+ label: '洛阳'
+ }, {
+ value: '南阳',
+ label: '南阳'
+ }, {
+ value: '平顶山',
+ label: '平顶山'
+ }, {
+ value: '濮阳',
+ label: '濮阳'
+ }, {
+ value: '三门峡',
+ label: '三门峡'
+ }, {
+ value: '商丘',
+ label: '商丘'
+ }, {
+ value: '新乡',
+ label: '新乡'
+ }, {
+ value: '信阳',
+ label: '信阳'
+ }, {
+ value: '许昌',
+ label: '许昌'
+ }, {
+ value: '周口',
+ label: '周口'
+ }, {
+ value: '驻马店',
+ label: '驻马店'
+ }]
+}, {
+ value: '香港',
+ label: '香港',
+ children: [{
+ value: "香港",
+ label: '香港'
+ }, {
+ value: '九龙',
+ label: '九龙'
+ }, {
+ value: '新界',
+ label: '新界'
+ }]
+}, {
+ value: '湖北',
+ label: '湖北',
+ children: [{
+ value: "武汉",
+ label: '武汉'
+ }, {
+ value: "天门",
+ label: '天门'
+ }, {
+ value: '恩施',
+ label: '恩施'
+ }, {
+ value: '鄂州',
+ label: '鄂州'
+ }, {
+ value: '黄冈',
+ label: '黄冈'
+ }, {
+ value: '黄石',
+ label: '黄石'
+ }, {
+ value: '荆门',
+ label: '荆门'
+ }, {
+ value: '荆州',
+ label: '荆州'
+ }, {
+ value: '潜江',
+ label: '潜江'
+ }, {
+ value: '十堰',
+ label: '十堰'
+ }, {
+ value: '随州',
+ label: '随州'
+ }, {
+ value: '武穴',
+ label: '武穴'
+ }, {
+ value: '仙桃',
+ label: '仙桃'
+ }, {
+ value: '咸宁',
+ label: '咸宁'
+ }, {
+ value: '襄阳',
+ label: '襄阳'
+ }, {
+ value: '襄樊',
+ label: '襄樊'
+ }, {
+ value: '孝感',
+ label: '孝感'
+ }, {
+ value: '宜昌',
+ label: '宜昌'
+ }]
+}, {
+ value: '湖南',
+ label: '湖南',
+ children: [{
+ value: "长沙",
+ label: '长沙'
+ }, {
+ value: '常德',
+ label: '常德'
+ }, {
+ value: '郴州',
+ label: '郴州'
+ }, {
+ value: '衡阳',
+ label: '衡阳'
+ }, {
+ value: '怀化',
+ label: '怀化'
+ }, {
+ value: '吉首',
+ label: '吉首'
+ }, {
+ value: '娄底',
+ label: '娄底'
+ }, {
+ value: '邵阳',
+ label: '邵阳'
+ }, {
+ value: '湘潭',
+ label: '湘潭'
+ }, {
+ value: '益阳',
+ label: '益阳'
+ }, {
+ value: '岳阳',
+ label: '岳阳'
+ }, {
+ value: '永州',
+ label: '永州'
+ }, {
+ value: '张家界',
+ label: '张家界'
+ }, {
+ value: '株洲',
+ label: '株洲'
+ }]
+}, {
+ value: '江西',
+ label: '江西',
+ children: [{
+ value: "南昌",
+ label: '南昌'
+ }, {
+ value: '抚州',
+ label: '抚州'
+ }, {
+ value: '赣州',
+ label: '赣州'
+ }, {
+ value: '吉安',
+ label: '吉安'
+ }, {
+ value: '景德镇',
+ label: '景德镇'
+ }, {
+ value: '井冈山',
+ label: '井冈山'
+ }, {
+ value: '九江',
+ label: '九江'
+ }, {
+ value: '庐山',
+ label: '庐山'
+ }, {
+ value: '萍乡',
+ label: '萍乡'
+ }, {
+ value: '上饶',
+ label: '上饶'
+ }, {
+ value: '新余',
+ label: '新余'
+ }, {
+ value: '宜春',
+ label: '宜春'
+ }, {
+ value: '鹰潭',
+ label: '鹰潭'
+ }]
+}, {
+ value: '吉林',
+ label: '吉林',
+ children: [{
+ value: "长春",
+ label: '长春'
+ }, {
+ value: '吉林',
+ label: '吉林'
+ }, {
+ value: '白城',
+ label: '白城'
+ }, {
+ value: '白山',
+ label: '白山'
+ }, {
+ value: '珲春',
+ label: '珲春'
+ }, {
+ value: '辽源',
+ label: '辽源'
+ }, {
+ value: '梅河',
+ label: '梅河'
+ }, {
+ value: '四平',
+ label: '四平'
+ }, {
+ value: '松原',
+ label: '松原'
+ }, {
+ value: '通化',
+ label: '通化'
+ }, {
+ value: '延吉',
+ label: '延吉'
+ }]
+}, {
+ value: '辽宁',
+ label: '辽宁',
+ children: [{
+ value: "沈阳",
+ label: '沈阳'
+ }, {
+ value: '鞍山',
+ label: '鞍山'
+ }, {
+ value: '本溪',
+ label: '本溪'
+ }, {
+ value: '朝阳',
+ label: '朝阳'
+ }, {
+ value: '大连',
+ label: '大连'
+ }, {
+ value: '丹东',
+ label: '丹东'
+ }, {
+ value: '抚顺',
+ label: '抚顺'
+ }, {
+ value: '阜新',
+ label: '阜新'
+ }, {
+ value: '葫芦岛',
+ label: '葫芦岛'
+ }, {
+ value: '锦州',
+ label: '锦州'
+ }, {
+ value: '辽阳',
+ label: '辽阳'
+ }, {
+ value: '盘锦',
+ label: '盘锦'
+ }, {
+ value: '铁岭',
+ label: '铁岭'
+ }, {
+ value: '营口',
+ label: '营口'
+ }]
+}, {
+ value: '澳门',
+ label: '澳门',
+ children: [{
+ value: '澳门',
+ label: '澳门'
+ }]
+}, {
+ value: '内蒙古',
+ label: '内蒙古',
+ children: [{
+ value: "呼和浩特",
+ label: '呼和浩特'
+ }, {
+ value: '阿拉善盟',
+ label: '阿拉善盟'
+ }, {
+ value: '包头',
+ label: '包头'
+ }, {
+ value: '赤峰',
+ label: '赤峰'
+ }, {
+ value: '东胜',
+ label: '东胜'
+ }, {
+ value: '海拉尔',
+ label: '海拉尔'
+ }, {
+ value: '集宁',
+ label: '集宁'
+ }, {
+ value: '临河',
+ label: '临河'
+ }, {
+ value: '通辽',
+ label: '通辽'
+ }, {
+ value: '乌海',
+ label: '乌海'
+ }, {
+ value: '乌兰浩特',
+ label: '乌兰浩特'
+ }, {
+ value: '锡林浩特',
+ label: '锡林浩特'
+ }]
+}, {
+ value: '宁夏',
+ label: '宁夏',
+ children: [{
+ value: "银川",
+ label: '银川'
+ }, {
+ value: '固源',
+ label: '固源'
+ }, {
+ value: '石嘴山',
+ label: '石嘴山'
+ }, {
+ value: '吴忠',
+ label: '吴忠'
+ }]
+}, {
+ value: '青海',
+ label: '青海',
+ children: [{
+ value: "西宁",
+ label: '西宁'
+ }, {
+ value: '德令哈',
+ label: '德令哈'
+ }, {
+ value: '格尔木',
+ label: '格尔木'
+ }, {
+ value: '共和',
+ label: '共和'
+ }, {
+ value: '海东',
+ label: '海东'
+ }, {
+ value: '海晏',
+ label: '海晏'
+ }, {
+ value: '玛沁',
+ label: '玛沁'
+ }, {
+ value: '同仁',
+ label: '同仁'
+ }, {
+ value: '玉树',
+ label: '玉树'
+ }]
+}, {
+ value: '山东',
+ label: '山东',
+ children: [{
+ value: "济南",
+ label: '济南'
+ }, {
+ value: '滨州',
+ label: '滨州'
+ }, {
+ value: '兖州',
+ label: '兖州'
+ }, {
+ value: '德州',
+ label: '德州'
+ }, {
+ value: '东营',
+ label: '东营'
+ }, {
+ value: '菏泽',
+ label: '菏泽'
+ }, {
+ value: '济宁',
+ label: '济宁'
+ }, {
+ value: '莱芜',
+ label: '莱芜'
+ }, {
+ value: '聊城',
+ label: '聊城'
+ }, {
+ value: '临沂',
+ label: '临沂'
+ }, {
+ value: '蓬莱',
+ label: '蓬莱'
+ }, {
+ value: '青岛',
+ label: '青岛'
+ }, {
+ value: '曲阜',
+ label: '曲阜'
+ }, {
+ value: '日照',
+ label: '日照'
+ }, {
+ value: '泰安',
+ label: '泰安'
+ }, {
+ value: '潍坊',
+ label: '潍坊'
+ }, {
+ value: '威海',
+ label: '威海'
+ }, {
+ value: '烟台',
+ label: '烟台'
+ }, {
+ value: '枣庄',
+ label: '枣庄'
+ }, {
+ value: '淄博',
+ label: '淄博'
+ }]
+}, {
+ value: '山西',
+ label: '山西',
+ children: [{
+ value: "太原",
+ label: '太原'
+ }, {
+ value: "吕梁",
+ label: '吕梁'
+ }, {
+ value: '长治',
+ label: '长治'
+ }, {
+ value: '大同',
+ label: '大同'
+ }, {
+ value: '候马',
+ label: '候马'
+ }, {
+ value: '晋城',
+ label: '晋城'
+ }, {
+ value: '离石',
+ label: '离石'
+ }, {
+ value: '临汾',
+ label: '临汾'
+ }, {
+ value: '宁武',
+ label: '宁武'
+ }, {
+ value: '朔州',
+ label: '朔州'
+ }, {
+ value: '忻州',
+ label: '忻州'
+ }, {
+ value: '阳泉',
+ label: '阳泉'
+ }, {
+ value: '榆次',
+ label: '榆次'
+ }, {
+ value: '晋中',
+ label: '晋中'
+ }, {
+ value: '运城',
+ label: '运城'
+ }]
+}, {
+ value: '陕西',
+ label: '陕西',
+ children: [{
+ value: "西安",
+ label: '西安'
+ }, {
+ value: '安康',
+ label: '安康'
+ }, {
+ value: '宝鸡',
+ label: '宝鸡'
+ }, {
+ value: '汉中',
+ label: '汉中'
+ }, {
+ value: '渭南',
+ label: '渭南'
+ }, {
+ value: '商州',
+ label: '商州'
+ }, {
+ value: '绥德',
+ label: '绥德'
+ }, {
+ value: '铜川',
+ label: '铜川'
+ }, {
+ value: '咸阳',
+ label: '咸阳'
+ }, {
+ value: '延安',
+ label: '延安'
+ }, {
+ value: '榆林',
+ label: '榆林'
+ }]
+}, {
+ value: '四川',
+ label: '四川',
+ children: [{
+ value: "成都",
+ label: '成都'
+ }, {
+ value: '巴中',
+ label: '巴中'
+ }, {
+ value: '达川',
+ label: '达川'
+ }, {
+ value: '德阳',
+ label: '德阳'
+ }, {
+ value: '都江堰',
+ label: '都江堰'
+ }, {
+ value: '峨眉山',
+ label: '峨眉山'
+ }, {
+ value: '涪陵',
+ label: '涪陵'
+ }, {
+ value: '广安',
+ label: '广安'
+ }, {
+ value: '广元',
+ label: '广元'
+ }, {
+ value: '九寨沟',
+ label: '九寨沟'
+ }, {
+ value: '康定',
+ label: '康定'
+ }, {
+ value: '乐山',
+ label: '乐山'
+ }, {
+ value: '泸州',
+ label: '泸州'
+ }, {
+ value: '马尔康',
+ label: '马尔康'
+ }, {
+ value: '绵阳',
+ label: '绵阳'
+ }, {
+ value: '眉山',
+ label: '眉山'
+ }, {
+ value: '南充',
+ label: '南充'
+ }, {
+ value: '内江',
+ label: '内江'
+ }, {
+ value: '攀枝花',
+ label: '攀枝花'
+ }, {
+ value: '遂宁',
+ label: '遂宁'
+ }, {
+ value: '汶川',
+ label: '汶川'
+ }, {
+ value: '西昌',
+ label: '西昌'
+ }, {
+ value: '雅安',
+ label: '雅安'
+ }, {
+ value: '宜宾',
+ label: '宜宾'
+ }, {
+ value: '自贡',
+ label: '自贡'
+ }, {
+ value: '资阳',
+ label: '资阳'
+ }]
+}, {
+ value: '台湾',
+ label: '台湾',
+ children: [{
+ value: "台北",
+ label: '台北'
+ }, {
+ value: '基隆',
+ label: '基隆'
+ }, {
+ value: '台南',
+ label: '台南'
+ }, {
+ value: '台中',
+ label: '台中'
+ }, {
+ value: '高雄',
+ label: '高雄'
+ }, {
+ value: '屏东',
+ label: '屏东'
+ }, {
+ value: '南投',
+ label: '南投'
+ }, {
+ value: '云林',
+ label: '云林'
+ }, {
+ value: '新竹',
+ label: '新竹'
+ }, {
+ value: '彰化',
+ label: '彰化'
+ }, {
+ value: '苗栗',
+ label: '苗栗'
+ }, {
+ value: '嘉义',
+ label: '嘉义'
+ }, {
+ value: '桃园',
+ label: '桃园'
+ }, {
+ value: '宜兰',
+ label: '宜兰'
+ }, {
+ value: '台东',
+ label: '台东'
+ }, {
+ value: '金门',
+ label: '金门'
+ }, {
+ value: '马祖',
+ label: '马祖'
+ }, {
+ value: '澎湖',
+ label: '澎湖'
+ }]
+}, {
+ value: '天津',
+ label: '天津',
+ children: [{
+ value: "天津",
+ label: '天津'
+ }, {
+ value: '和平',
+ label: '和平'
+ }, {
+ value: '东丽',
+ label: '东丽'
+ }, {
+ value: '河东',
+ label: '河东'
+ }, {
+ value: '西青',
+ label: '西青'
+ }, {
+ value: '河西',
+ label: '河西'
+ }, {
+ value: '津南',
+ label: '津南'
+ }, {
+ value: '南开',
+ label: '南开'
+ }, {
+ value: '北辰',
+ label: '北辰'
+ }, {
+ value: '河北',
+ label: '河北'
+ }, {
+ value: '武清',
+ label: '武清'
+ }, {
+ value: '红挢',
+ label: '红挢'
+ }, {
+ value: '塘沽',
+ label: '塘沽'
+ }, {
+ value: '汉沽',
+ label: '汉沽'
+ }, {
+ value: '大港',
+ label: '大港'
+ }, {
+ value: '宁河',
+ label: '宁河'
+ }, {
+ value: '静海',
+ label: '静海'
+ }, {
+ value: '宝坻',
+ label: '宝坻'
+ }, {
+ value: '蓟县',
+ label: '蓟县'
+ }]
+}, {
+ value: '新疆',
+ label: '新疆',
+ children: [{
+ value: "乌鲁木齐",
+ label: '乌鲁木齐'
+ }, {
+ value: '阿克苏',
+ label: '阿克苏'
+ }, {
+ value: '阿勒泰',
+ label: '阿勒泰'
+ }, {
+ value: '阿图什',
+ label: '阿图什'
+ }, {
+ value: '博乐',
+ label: '博乐'
+ }, {
+ value: '昌吉',
+ label: '昌吉'
+ }, {
+ value: '东山',
+ label: '东山'
+ }, {
+ value: '哈密',
+ label: '哈密'
+ }, {
+ value: '和田',
+ label: '和田'
+ }, {
+ value: '喀什',
+ label: '喀什'
+ }, {
+ value: '克拉玛依',
+ label: '克拉玛依'
+ }, {
+ value: '库车',
+ label: '库车'
+ }, {
+ value: '库尔勒',
+ label: '库尔勒'
+ }, {
+ value: '奎屯',
+ label: '奎屯'
+ }, {
+ value: '石河子',
+ label: '石河子'
+ }, {
+ value: '塔城',
+ label: '塔城'
+ }, {
+ value: '吐鲁番',
+ label: '吐鲁番'
+ }, {
+ value: '伊宁',
+ label: '伊宁'
+ }]
+}, {
+ value: '西藏',
+ label: '西藏',
+ children: [{
+ value: "拉萨",
+ label: '拉萨'
+ }, {
+ value: '阿里',
+ label: '阿里'
+ }, {
+ value: '昌都',
+ label: '昌都'
+ }, {
+ value: '林芝',
+ label: '林芝'
+ }, {
+ value: '那曲',
+ label: '那曲'
+ }, {
+ value: '日喀则',
+ label: '日喀则'
+ }, {
+ value: '山南',
+ label: '山南'
+ }]
+}, {
+ value: '云南',
+ label: '云南',
+ children: [{
+ value: "昆明",
+ label: '昆明'
+ }, {
+ value: '大理',
+ label: '大理'
+ }, {
+ value: '保山',
+ label: '保山'
+ }, {
+ value: '楚雄',
+ label: '楚雄'
+ }, {
+ value: '大理',
+ label: '大理'
+ }, {
+ value: '东川',
+ label: '东川'
+ }, {
+ value: '个旧',
+ label: '个旧'
+ }, {
+ value: '景洪',
+ label: '景洪'
+ }, {
+ value: '开远',
+ label: '开远'
+ }, {
+ value: '临沧',
+ label: '临沧'
+ }, {
+ value: '丽江',
+ label: '丽江'
+ }, {
+ value: '六库',
+ label: '六库'
+ }, {
+ value: '潞西',
+ label: '潞西'
+ }, {
+ value: '曲靖',
+ label: '曲靖'
+ }, {
+ value: '思茅',
+ label: '思茅'
+ }, {
+ value: '文山',
+ label: '文山'
+ }, {
+ value: '西双版纳',
+ label: '西双版纳'
+ }, {
+ value: '玉溪',
+ label: '玉溪'
+ }, {
+ value: '中甸',
+ label: '中甸'
+ }, {
+ value: '昭通',
+ label: '昭通'
+ }]
+}, {
+ value: '浙江',
+ label: '浙江',
+ children: [{
+ value: "杭州",
+ label: '杭州'
+ }, {
+ value: "温州",
+ label: '温州'
+ }, {
+ value: '安吉',
+ label: '安吉'
+ }, {
+ value: '慈溪',
+ label: '慈溪'
+ }, {
+ value: '定海',
+ label: '定海'
+ }, {
+ value: '奉化',
+ label: '奉化'
+ }, {
+ value: '海盐',
+ label: '海盐'
+ }, {
+ value: '黄岩',
+ label: '黄岩'
+ }, {
+ value: '湖州',
+ label: '湖州'
+ }, {
+ value: '嘉兴',
+ label: '嘉兴'
+ }, {
+ value: '金华',
+ label: '金华'
+ }, {
+ value: '临安',
+ label: '临安'
+ }, {
+ value: '临海',
+ label: '临海'
+ }, {
+ value: '丽水',
+ label: '丽水'
+ }, {
+ value: '宁波',
+ label: '宁波'
+ }, {
+ value: '瓯海',
+ label: '瓯海'
+ }, {
+ value: '平湖',
+ label: '平湖'
+ }, {
+ value: '千岛湖',
+ label: '千岛湖'
+ }, {
+ value: '衢州',
+ label: '衢州'
+ }, {
+ value: '江山',
+ label: '江山'
+ }, {
+ value: '瑞安',
+ label: '瑞安'
+ }, {
+ value: '绍兴',
+ label: '绍兴'
+ }, {
+ value: '嵊州',
+ label: '嵊州'
+ }, {
+ value: '台州',
+ label: '台州'
+ }, {
+ value: '温岭',
+ label: '温岭'
+ }, {
+ value: '余姚',
+ label: '余姚'
+ }, {
+ value: '舟山',
+ label: '舟山'
+ }]
+}, {
+ value: '海外',
+ label: '海外',
+ children: [{
+ value: "美国",
+ label: '美国'
+ }, {
+ value: '日本',
+ label: '日本'
+ }, {
+ value: '英国',
+ label: '英国'
+ }, {
+ value: '法国',
+ label: '法国'
+ }, {
+ value: '德国',
+ label: '德国'
+ }, {
+ value: '其他',
+ label: '其他'
+ }]
+}];
+
+/***/ }),
+
+/***/ 1971:
+/*!*****************************************!*\
+ !*** ./src/utils/hooks/useInterval.tsx ***!
+ \*****************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+/* harmony export */ __webpack_require__.d(__webpack_exports__, {
+/* harmony export */ "Y": function() { return /* binding */ useInterval; }
+/* harmony export */ });
+/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 67294);
+
+function useInterval(callback, delay) {
+ var savedCallback = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)();
+ var savedId = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)();
+
+ // 保存新回调
+ (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(function () {
+ savedCallback.current = callback;
+ });
+
+ // 建立 interval
+ (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(function () {
+ function tick() {
+ savedCallback.current();
+ }
+ if (delay !== null) {
+ var id = setInterval(tick, delay);
+ savedId.current = id;
+ return function () {
+ return clearInterval(id);
+ };
+ }
+ }, [delay]);
+}
+
+/***/ }),
+
+/***/ 16455:
+/*!**********************************************************!*\
+ !*** ./src/pages/Competitions/Detail/index.less?modules ***!
+ \**********************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__) {
+
+// extracted by mini-css-extract-plugin
+/* harmony default export */ __webpack_exports__["Z"] = ({"flex_box_center":"flex_box_center___fo_3c","flex_space_between":"flex_space_between___G46CO","flex_box_vertical_center":"flex_box_vertical_center___br3Kr","flex_box_center_end":"flex_box_center_end___Xdo94","flex_box_column":"flex_box_column___Bcnmr","wrp":"wrp___TY7QJ","bg":"bg___xiaSy","commonimg":"commonimg___a4R0Q","titlesize":"titlesize___Wdd_a","timesize":"timesize___OkfYO","flex1":"flex1___N6paY","buttonsize":"buttonsize___syL9V","myteam":"myteam___RTWAt","bootmdetail":"bootmdetail___taUGk","flex6":"flex6___RuzJ4","menuItem":"menuItem___Kww4S","spanprev":"spanprev___Cssg_","spannext":"spannext___jVFGE","divwidth":"divwidth___r5hE3","receiveclick":"receiveclick___BauOs","receivealready":"receivealready___Z7Wo0","bkfff":"bkfff___lHrcJ","ant-input":"ant-input___m4bn_","onediv":"onediv___xzZRa","onetop":"onetop___M4GfM","towdiv":"towdiv___yj3ds","towtop":"towtop___veKa4","threediv":"threediv___Ztz0D","threetop":"threetop___zDXIg","imgradius":"imgradius___r4uGN","prize":"prize___YNRD4","spanrightradius":"spanrightradius___tC6T5","bottomItem":"bottomItem___CHcMJ","myTeam":"myTeam___fm7KX","downloadpdf":"downloadpdf___a2NuA","pdfBut":"pdfBut___Drr6h","PerfectBut":"PerfectBut___wEhjV","PerfectCent":"PerfectCent___HD3Id","PerfectCentName":"PerfectCentName___smdJX","teamItem":"teamItem___mx2f3","dash":"dash___l6QH1","modal":"modal___yXh2H","maskText":"maskText___Tdh6h","box":"box___K2uQ4","open_style":"open_style___gLTB9","title_style":"title_style___j6zvN"});
+
+/***/ }),
+
+/***/ 96908:
+/*!**************************************************************************!*\
+ !*** ./src/components/ui-customization/Cards/ShixunList/img/Jupyter.png ***!
+ \**************************************************************************/
+/***/ (function(module) {
+
+module.exports = "data:image/png;base64,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";
+
+/***/ }),
+
+/***/ 57177:
+/*!*****************************************************************************!*\
+ !*** ./src/components/ui-customization/Cards/ShixunList/img/JupyterLab.png ***!
+ \*****************************************************************************/
+/***/ (function(module) {
+
+module.exports = "data:image/png;base64,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";
+
+/***/ }),
+
+/***/ 81378:
+/*!************************************************************************!*\
+ !*** ./src/components/ui-customization/Cards/ShixunList/img/unity.png ***!
+ \************************************************************************/
+/***/ (function(module) {
+
+module.exports = "data:image/png;base64,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";
+
+/***/ })
+
+}]);
\ No newline at end of file
diff --git a/p__Competitions__Edit__index.chunk.css b/p__Competitions__Edit__index.chunk.css
new file mode 100644
index 0000000000..cc1933fcaa
--- /dev/null
+++ b/p__Competitions__Edit__index.chunk.css
@@ -0,0 +1,5410 @@
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/index.less?modules ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___Pwy41 {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___iGrQJ {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___yCxnY {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___WYWWp {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___XMpFi {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.bg___WrQc9 {
+ min-height: 100vh;
+ background: #fff;
+ padding-bottom: 30px;
+}
+.bg___WrQc9 .top___eHaMu {
+ padding-top: 15px;
+}
+.bg___WrQc9 .top___eHaMu .title___ZzSKL {
+ margin-top: 36px;
+ display: flex;
+ align-items: center;
+}
+.bg___WrQc9 .top___eHaMu .title___ZzSKL .img___TSo4p {
+ width: 36px;
+ height: 36px;
+ border-radius: 8px;
+ margin-right: 8px;
+}
+.bg___WrQc9 .top___eHaMu .title___ZzSKL .span___i1hTN {
+ margin-left: 30px;
+ font-size: 12px;
+ color: #888888;
+}
+.bg___WrQc9 .top___eHaMu .title___ZzSKL .button___M8rSK {
+ cursor: pointer;
+ display: inline-block;
+ line-height: 32px;
+ text-align: center;
+ width: 116px;
+ color: #165DFF;
+ height: 32px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 16px;
+ border: 1px solid #BACFFE;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ {
+ margin-top: 20px;
+ display: flex;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .Banner___t6PnF {
+ width: 700px;
+ height: 300px;
+ max-height: 300px;
+ flex-shrink: 0;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT {
+ max-height: 300px;
+ margin-left: 40px;
+ width: 100%;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .titles___UHOD8 {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ overflow: hidden;
+ font-size: 25px;
+ font-weight: 600;
+ height: 72px;
+ color: #232B40;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .bonus___l9Tlu {
+ margin-top: 24px;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 0 10px;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .bonus___l9Tlu div {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .bonus___l9Tlu div .items___CPICU {
+ display: flex;
+ align-items: center;
+ flex-direction: initial;
+ color: #5F6367;
+ margin-top: 2px;
+ margin-bottom: 14px;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .bonus___l9Tlu div .items___CPICU i {
+ color: #c5c5c5;
+ margin-top: 1px;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .bonus___l9Tlu div .items___CPICU span {
+ margin-left: 6px;
+ color: #5F6367;
+ font-size: 14px;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .bonus___l9Tlu div p {
+ font-size: 20px;
+ font-weight: 600;
+ color: #232B40;
+ margin-bottom: 0px;
+}
+.bg___WrQc9 .top___eHaMu .content___BOwAQ .right___x1tqT .bottom___HHYt7 {
+ margin-top: 34px;
+ position: relative;
+}
+.bg___WrQc9 .tag___DBN6l {
+ height: 30px;
+ background: rgba(255, 157, 24, 0.1);
+ border-radius: 0px 0px 8px 8px;
+ padding: 0px 40px 0px 20px;
+ line-height: 30px;
+ color: #FF9D18;
+ font-size: 12px;
+ margin-top: -25px;
+ margin-bottom: 25px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+.jsinput___oh61y div[class~='ant-form-item-label'] {
+ margin-bottom: 10px;
+}
+.baseFormItem___t5ZrH {
+ font-size: 14px;
+}
+.baseFormItem___t5ZrH input[class~='ant-input'] {
+ height: 38px;
+}
+.baseFormItem___t5ZrH input[class~='ant-input-number-input'] {
+ height: 46px;
+}
+.baseFormItem___t5ZrH div[class~='ant-select-selector'] {
+ height: 46px;
+}
+.baseFormItem___t5ZrH div[class~='ant-select-selector'] span[class~='ant-select-selection-item'] {
+ line-height: 46px;
+}
+.baseFormItem___t5ZrH div[class~='ant-select-selector'] span[class~='ant-select-selection-placeholder'] {
+ line-height: 46px;
+}
+.baseFormItem___t5ZrH span[class~='ant-select-arrow'] {
+ right: 12px;
+}
+.scoremodal___yE6h8 [class~='ant-modal-body'] {
+ padding: 25px;
+}
+.scoremodal___yE6h8 .title___ZzSKL {
+ color: #000000;
+ font-size: 16px;
+ font-weight: 500;
+ display: flex;
+ width: 100%;
+}
+.scoremodal___yE6h8 .content___BOwAQ {
+ margin-top: 25px;
+}
+.scoremodal___yE6h8 .bottom___HHYt7 {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal___yE6h8 .bottom___HHYt7 .yes___XyW4g {
+ padding: 0px 16px;
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-weight: 400;
+ color: #FFFFFF;
+ border: 0px;
+}
+.scoremodal___yE6h8 .bottom___HHYt7 .no___kIYD7 {
+ margin-right: 20px;
+ padding: 0px 16px;
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-weight: 400;
+ color: #464F66;
+ line-height: 14px;
+}
+.scoremodal___yE6h8 .bottoms___X64Ij {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal___yE6h8 .bottoms___X64Ij .yes___XyW4g {
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+}
+.scoremodal___yE6h8 .bottoms___X64Ij .no___kIYD7 {
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #464F66;
+ margin-right: 20px;
+}
+.scoremodal___yE6h8 .loaderimg___w2vWU {
+ width: 28px;
+ height: 28px;
+ border-radius: 50%;
+}
+.enroll___lbTQ5 {
+ padding: 14px 40px;
+ color: #AB6A24;
+ height: 44px;
+ display: flex;
+ align-items: center;
+ position: absolute;
+ right: 1px;
+ cursor: pointer;
+ bottom: -5px;
+ font-size: 16px;
+ border-radius: 24px;
+ background: linear-gradient(303deg, #FFC886 0%, #FFEFBC 100%);
+ box-shadow: 0px 1px 6px 0px rgba(205, 142, 31, 0.4);
+ border: 1px solid #f5c996;
+ letter-spacing: 2px;
+}
+.publish___kDAkJ {
+ padding: 14px 40px;
+ height: 44px;
+ background: #3061D0;
+ display: flex;
+ color: #FFFFFF;
+ align-items: center;
+ position: absolute;
+ right: 1px;
+ font-size: 16px;
+ cursor: pointer;
+ bottom: -5px;
+ box-shadow: inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 24px;
+ letter-spacing: 2px;
+}
+.ended___mycKl {
+ padding: 14px 40px;
+ min-width: 152px;
+ display: flex;
+ color: #C0C0C0;
+ align-items: center;
+ position: absolute;
+ right: 1px;
+ cursor: no-drop;
+ justify-content: center;
+ font-size: 16px;
+ bottom: -5px;
+ height: 44px;
+ background: #FAFBFC;
+ box-shadow: inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 24px;
+ border: 1px solid #E9EAEC;
+ letter-spacing: 2px;
+ text-indent: 10px;
+}
+.scoremodal___yE6h8 [class~='ant-modal-body'] {
+ padding: 25px;
+}
+.scoremodal___yE6h8 .title___ZzSKL {
+ color: #000000;
+ font-size: 16px;
+ font-weight: 500;
+ display: flex;
+ width: 100%;
+}
+.scoremodal___yE6h8 .content___BOwAQ {
+ margin-top: 25px;
+}
+.scoremodal___yE6h8 .bottom___HHYt7 {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal___yE6h8 .bottom___HHYt7 .yes___XyW4g {
+ padding: 0px 20px;
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-weight: 400;
+ color: #FFFFFF;
+ border: 0px;
+}
+.scoremodal___yE6h8 .bottom___HHYt7 .no___kIYD7 {
+ margin-right: 20px;
+ width: 60px;
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-weight: 400;
+ color: #464F66;
+ line-height: 14px;
+}
+.scoremodal___yE6h8 .form_item___lsqU3 {
+ line-height: 40px;
+}
+.scoremodal___yE6h8 .form_item___lsqU3 .form_item_item___Zdnul {
+ height: 40px;
+ line-height: 40px;
+ width: 100%;
+}
+.scoremodal___yE6h8 .form_item___lsqU3 .form_item_item_select____5lDo {
+ font-size: 14px;
+ line-height: 40px;
+ width: 100%;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/Banner/index.less?modules ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___NeSU8 {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___ImTGl {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___BtRd9 {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___qcLe3 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___Ze_3q {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.banner___PoUBO {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.banner___PoUBO .content___XoDjy {
+ width: 1200px;
+ height: 212px;
+ display: flex;
+ align-items: flex-start;
+ justify-content: space-between;
+}
+.banner___PoUBO .content___XoDjy aside {
+ margin-top: 56px;
+}
+.banner___PoUBO .content___XoDjy aside p {
+ display: flex;
+ align-items: center;
+}
+.banner___PoUBO .content___XoDjy aside p b {
+ font-size: 30px;
+ font-weight: 500;
+ color: #000000;
+ letter-spacing: 4px;
+ margin-right: 20px;
+}
+.banner___PoUBO .content___XoDjy aside p span {
+ font-size: 16px;
+ color: #000000;
+ letter-spacing: 4px;
+}
+.banner___PoUBO .content___XoDjy aside .btns___Pb35j {
+ margin-top: 35px;
+}
+.banner___PoUBO .content___XoDjy aside .btns___Pb35j > div {
+ display: inline-block;
+ height: 32px;
+ background: #f6f7f9;
+ box-shadow: 0px 2px 4px 0px #e0dfe1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 4px;
+ border: 1px solid #dadbde;
+ font-size: 14px;
+ color: #3b3e47;
+ line-height: 30px;
+ margin-right: 23px;
+ padding: 0 16px;
+ position: relative;
+ cursor: pointer;
+}
+.banner___PoUBO .content___XoDjy aside .btns___Pb35j > div:hover {
+ color: #165dff;
+ border: 1px solid #bacffe;
+}
+.banner___PoUBO .content___XoDjy aside .btns___Pb35j > div img {
+ position: absolute;
+ z-index: 1;
+ top: -21px;
+ right: 22px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/CustomTags/index.less?modules ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___hG6RI {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___ss3Fh {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___K80p9 {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___qmXX3 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___GFV8F {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.row___aXJjm {
+ display: flex;
+ align-items: flex-start;
+ justify-content: flex-start;
+}
+.row___aXJjm .title___HUKL0 {
+ font-size: 14px;
+ color: #9096a3;
+ flex-shrink: 0;
+ width: 41px;
+ text-align-last: justify;
+ margin-top: 4px;
+ margin-right: 12px;
+}
+.row___aXJjm .tagsWrap___XB2W3 {
+ flex: 1 1;
+ position: relative;
+}
+.row___aXJjm .tagsWrap___XB2W3 .action___VdHb1 {
+ font-size: 14px;
+ color: #82a8ff;
+ width: 55px;
+ position: absolute;
+ z-index: 2;
+ bottom: 20px;
+ right: 0px;
+ cursor: pointer;
+}
+.row___aXJjm .tagsWrap___XB2W3 .action___VdHb1 i {
+ display: inline-block;
+ font-size: 12px;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC {
+ max-height: 245px;
+ overflow: hidden;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC .tag___V7Eft > span {
+ display: inline-flex;
+ align-items: center;
+ margin-left: 8px;
+ margin-bottom: 17px;
+ font-size: 14px;
+ cursor: pointer;
+ padding: 4px 12px;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC .tag___V7Eft > span .name___Hk1Ip {
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ max-width: 600px;
+ display: inline-block;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC .tag___V7Eft > span .num___xQpcH {
+ margin-left: 3px;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC .tag___V7Eft > span:hover {
+ color: #165dff !important;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC .tag___V7Eft .active___XryTX {
+ color: #165dff !important;
+ border-radius: 2px;
+ background: #f6f7f9;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC::-webkit-scrollbar-thumb {
+ background: rgba(0, 0, 0, 0.05) !important;
+ border-radius: 3px;
+}
+.row___aXJjm .tagsWrap___XB2W3 .bar___t1kKC::-webkit-scrollbar-track {
+ background-color: #f6f7f9 !important;
+ box-shadow: none !important;
+ box-shadow: initial !important;
+}
+.row___aXJjm .tagsBorderWrap___OMxjs .bar___t1kKC {
+ padding-top: 8px;
+ border-radius: 4px;
+ border: 1px solid rgba(219, 220, 224, 0.5);
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/SuperiorTabs/index.less?modules ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___aK2n3 {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___HX0Oh {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___LJOJr {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___SCakF {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___AYv4m {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.tabs___GTqPV {
+ height: 32px;
+ background: #f6f7f9;
+ box-shadow: inset 0px 1px 3px 0px #d7d8d9;
+ border-radius: 16px;
+ display: inline-block;
+}
+.tabs___GTqPV span {
+ display: inline-block;
+ padding: 0 20px;
+ line-height: 32px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #9096a3;
+ position: relative;
+ cursor: pointer;
+}
+.tabs___GTqPV span:hover {
+ color: #165dff;
+}
+.tabs___GTqPV span::after {
+ content: '';
+ position: absolute;
+ width: 1px;
+ height: calc(100% - 2px);
+ background: #e2e2e2;
+ border-radius: 4px;
+ z-index: 1;
+ left: 0;
+ top: 1px;
+ background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #e2e2e2 50%, rgba(255, 255, 255, 0) 100%);
+}
+.tabs___GTqPV span:first-child::after,
+.tabs___GTqPV .active___F26E8 + span::after {
+ display: none;
+}
+.tabs___GTqPV .active___F26E8 {
+ background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
+ box-shadow: 0px 0px 2px 0px #e8effb;
+ border-radius: 16px;
+ border: 1px solid #c8d2ea;
+ color: #165dff;
+ line-height: 30px;
+}
+.tabs___GTqPV .active___F26E8::after {
+ display: none;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/CustomInput/index.less?modules ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___yX6Oa {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___t7oqF {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___dEIHy {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___taQDF {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___xY_Lr {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.input___PW2zI {
+ width: 507px;
+ height: 38px;
+ background: #f6f7f9;
+ border-radius: 19px;
+ display: flex;
+ align-items: center;
+ padding: 0 17px;
+}
+.input___PW2zI .dropdown___vSy8B {
+ position: relative;
+ flex-shrink: 0;
+}
+.input___PW2zI .dropdown___vSy8B:hover .menu___NiyBu {
+ display: block;
+}
+.input___PW2zI .dropdown___vSy8B .text___Grueu {
+ color: #000000;
+ font-size: 14px;
+ cursor: default;
+ height: 38px;
+ display: flex;
+ align-items: center;
+}
+.input___PW2zI .dropdown___vSy8B .text___Grueu i {
+ font-size: 12px;
+ display: inline-block;
+ transform: translateY(1px) scale(0.6);
+ color: #979797;
+}
+.input___PW2zI .dropdown___vSy8B .text___Grueu .b1___ZKryM {
+ display: inline-block;
+ width: 1px;
+ height: 38px;
+ margin-left: 15px;
+ margin-right: 0px;
+ background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
+}
+.input___PW2zI .dropdown___vSy8B .text___Grueu .b2___aKyGa {
+ display: inline-block;
+ width: 1px;
+ height: 38px;
+ margin-left: 0px;
+ margin-right: 8px;
+ background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #e2e2e2 50%, rgba(255, 255, 255, 0) 100%);
+}
+.input___PW2zI .dropdown___vSy8B .menu___NiyBu {
+ display: none;
+ position: absolute;
+ z-index: 999;
+ width: auto;
+ left: -16px;
+ top: 35px;
+ padding: 4px;
+ background-color: #fff;
+ border-radius: 8px;
+ box-shadow: 0px 10px 16px 0px #cecece;
+}
+.input___PW2zI .dropdown___vSy8B .menu___NiyBu div {
+ clear: both;
+ margin: 0;
+ padding: 5px 12px;
+ color: rgba(0, 0, 0, 0.88);
+ font-weight: 400;
+ font-size: 14px;
+ text-align: left;
+ line-height: 1.57142857;
+ cursor: pointer;
+ transition: all 0.2s;
+ white-space: nowrap;
+}
+.input___PW2zI .dropdown___vSy8B .menu___NiyBu div:hover {
+ background-color: #f5f5f5;
+}
+.input___PW2zI > input {
+ flex: 1 1;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/QuickPager/index.less?modules ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___tol8o {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___Z235C {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___Wq1sZ {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___LLxom {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___DbMSN {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.quickPager___GM30J {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.quickPager___GM30J > div {
+ width: 60px;
+ height: 28px;
+ line-height: 26px;
+ text-align: center;
+ background: #f8f9fc;
+ border-radius: 2px;
+ border: 1px solid rgba(195, 207, 224, 0.5);
+ font-size: 12px;
+ color: #464f66;
+ margin: 0 10px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ cursor: pointer;
+}
+.quickPager___GM30J > div:hover {
+ color: #165dff;
+}
+.quickPager___GM30J .disabled___Ozc8I {
+ background: #f3f3f5;
+ border: 0;
+ line-height: 28px;
+ cursor: not-allowed;
+ color: #cecece;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/Cards/ShixunList/index.less?modules ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___FO7TP {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___LotYx {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___bWdaw {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___mVJ1o {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___M83Mm {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.list___oOsiS {
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ flex-wrap: wrap;
+ padding: 0;
+}
+.list___oOsiS .wrap___G6T7F {
+ height: 277px;
+ background: #ffffff;
+ box-shadow: 0px 2px 4px 0px #d6dae1;
+ border-radius: 8px;
+ position: relative;
+}
+.list___oOsiS .wrap___G6T7F .lockWrap___Rl79E {
+ position: absolute;
+ width: 100%;
+ left: 0px;
+ top: 0px;
+ background-color: rgba(0, 0, 0, 0.5);
+ height: 100%;
+ z-index: 10;
+ display: flex;
+ cursor: default;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ border-radius: 8px;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l:hover .cover___b2bYW {
+ transform: scale(1.1);
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .img___IQX7w {
+ overflow: hidden;
+ height: calc(100% - 100px);
+ border-radius: 8px 8px 0 0;
+ position: relative;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .img___IQX7w .cover___b2bYW {
+ width: 100%;
+ transition: all 0.5s;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .img___IQX7w .sign___HkT6C {
+ position: absolute;
+ z-index: 1;
+ left: 0;
+ bottom: 0;
+ height: 30px;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .name___SsJx8 {
+ height: 52px;
+ font-size: 16px;
+ font-weight: 600;
+ color: #000000;
+ padding: 0 12px;
+ width: 100%;
+ display: flex;
+ align-items: center;
+ padding-top: 30px;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .name___SsJx8 .e___TMqq0 {
+ display: inline-block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ max-width: 100%;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .tags___bcjyo {
+ height: 45px;
+ display: flex;
+ align-items: center;
+ color: #000f37;
+ padding: 0 12px;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .tags___bcjyo i {
+ color: #7d8592;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .tags___bcjyo > span {
+ margin-right: 5px;
+ font-size: 12px;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .tags___bcjyo .rate___YACg7 {
+ display: flex;
+ align-items: center;
+ margin-left: auto;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .tags___bcjyo .rate___YACg7 [class~='ant-rate-star'] {
+ font-size: 13px;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .tags___bcjyo .rate___YACg7 [class~='ant-rate'] {
+ font-size: 12px;
+ margin-top: -3px;
+ color: #ffa100;
+}
+.list___oOsiS .wrap___G6T7F .li___oZZ7l .tags___bcjyo .rate___YACg7 [class~='ant-rate-star']:not(:last-child) {
+ margin-right: 2px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/Cards/CourseList/index.less?modules ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___AQ53o {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___i2aIa {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___sPEKB {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___GhSSH {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___R9_Hb {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.list___jb2Ay {
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ flex-wrap: wrap;
+ padding: 0;
+}
+.list___jb2Ay .wrap___VsQDr {
+ height: 308px;
+ background: #ffffff;
+ box-shadow: 0px 2px 4px 0px #d6dae1;
+ border-radius: 8px;
+ position: relative;
+}
+.list___jb2Ay .wrap___VsQDr .lockWrap___g1k1T {
+ position: absolute;
+ width: 100%;
+ left: 0px;
+ top: 0px;
+ background-color: rgba(0, 0, 0, 0.5);
+ height: 100%;
+ z-index: 10;
+ display: flex;
+ cursor: default;
+ justify-content: center;
+ align-items: center;
+ border-radius: 8px;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC:hover .cover___Mu8wr {
+ transform: scale(1.1);
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .img___IpFLA {
+ overflow: hidden;
+ height: calc(100% - 131px);
+ border-radius: 8px 8px 0 0;
+ position: relative;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .img___IpFLA .cover___Mu8wr {
+ width: 100%;
+ transition: all 0.5s;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .img___IpFLA .sign___DXJ4d {
+ position: absolute;
+ z-index: 1;
+ right: 0;
+ top: 10px;
+ height: 30px;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .name___l7FoJ {
+ height: 52px;
+ font-size: 16px;
+ font-weight: 600;
+ color: #000000;
+ padding: 0 12px;
+ width: 100%;
+ display: flex;
+ align-items: center;
+ padding-top: 30px;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .name___l7FoJ .e___pXQUG {
+ display: inline-block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ max-width: 100%;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .unit___wCIFR {
+ font-size: 14px;
+ color: #000f37;
+ padding: 0px 12px;
+ margin-top: 8px;
+ display: inline-block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ max-width: 100%;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .unit___wCIFR i {
+ color: #7d8592;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .tags___w_Mil {
+ height: 34px;
+ display: flex;
+ align-items: center;
+ color: #000f37;
+ padding: 0px 12px;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .tags___w_Mil i {
+ color: #7d8592;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .tags___w_Mil > span {
+ margin-right: 15px;
+ font-size: 12px;
+}
+.list___jb2Ay .wrap___VsQDr .li___IxCLC .tags___w_Mil .tag___y1ZGO {
+ width: 76px;
+ height: 26px;
+ border-radius: 13px;
+ border: 1px solid #d6f7ef;
+ font-size: 14px;
+ color: #01795d;
+ line-height: 24px;
+ text-align: center;
+ margin-left: auto;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/Cards/ClassroomList/index.less?modules ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___eMcr7 {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___HcNca {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___ZnvVN {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___fdgDf {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___SEKvd {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.list___L1hmU {
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ flex-wrap: wrap;
+ padding: 0;
+}
+.list___L1hmU .wrap___pKgcW {
+ height: 270px;
+ background: #ffffff;
+ box-shadow: 0px 1px 4px 0px #d6dae1;
+ border-radius: 8px;
+ position: relative;
+}
+.list___L1hmU .wrap___pKgcW:hover .lockWrap___SMhkK {
+ display: flex;
+}
+.list___L1hmU .wrap___pKgcW .lockWrap___SMhkK {
+ position: absolute;
+ z-index: 10;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 0, 0, 0.6);
+ box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
+ border-radius: 8px;
+ display: none;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+}
+.list___L1hmU .wrap___pKgcW .lockWrap___SMhkK div {
+ width: 116px;
+ height: 36px;
+ border-radius: 18px;
+ border: 1px solid #ffffff;
+ font-size: 14px;
+ font-weight: 600;
+ color: #ffffff;
+ line-height: 34px;
+ text-align: center;
+ margin: 10px 0;
+ cursor: pointer;
+}
+.list___L1hmU .wrap___pKgcW .lockWrap___SMhkK div:hover {
+ box-shadow: 0px 0px 4px 0px #4f85ff;
+ border: 1px solid #c2d3f8;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB {
+ height: calc(100% - 50px);
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: flex-start;
+ padding: 0 24px;
+ position: relative;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB .sign___uwRpq {
+ position: absolute;
+ z-index: 1;
+ width: 44px;
+ height: 22px;
+ background: #ffe9c1;
+ border-radius: 8px 0px 13px 0px;
+ left: 0;
+ top: 0;
+ color: #a45204;
+ text-align: center;
+ line-height: 22px;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB .name___Fpf90 {
+ font-weight: 600;
+ color: #333333;
+ margin-top: 25px;
+ font-size: 16px;
+ white-space: normal;
+ text-align: center;
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ overflow: hidden;
+ line-height: 26px;
+ height: 48px;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB .img___AMLhL {
+ width: 60px;
+ height: 60px;
+ border-radius: 30px;
+ margin-top: 14px;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB .text___KiTb7 {
+ font-size: 14px;
+ color: #333333;
+ margin-top: 8px;
+ width: 98%;
+ text-align: center;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB .btns___i6IuZ {
+ display: flex;
+ align-items: center;
+ margin-top: 12px;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB .btns___i6IuZ div {
+ width: 76px;
+ background: #ffffff;
+ height: 26px;
+ border-radius: 13px;
+ border: 1px solid #d6f7ef;
+ font-size: 14px;
+ color: #01795d;
+ line-height: 24px;
+ text-align: center;
+ margin: 0 10px;
+}
+.list___L1hmU .wrap___pKgcW .top___udHSB .btns___i6IuZ aside {
+ width: 76px;
+ background: #ffffff;
+ height: 26px;
+ border-radius: 13px;
+ border: 1px solid #ffe9c1;
+ font-size: 14px;
+ color: #a45204;
+ line-height: 24px;
+ text-align: center;
+ margin: 0 10px;
+}
+.list___L1hmU .wrap___pKgcW .bottom____k2sh {
+ height: 50px;
+ border-top: 1px solid #f5f5f5;
+ display: flex;
+ align-items: center;
+ padding: 0 12px;
+}
+.list___L1hmU .wrap___pKgcW .bottom____k2sh > div {
+ margin-left: auto;
+}
+.list___L1hmU .wrap___pKgcW .bottom____k2sh > span {
+ display: flex;
+ align-items: center;
+ margin-right: 12px;
+ color: #999999;
+}
+.list___L1hmU .wrap___pKgcW .bottom____k2sh > span i {
+ font-size: 14px;
+ font-size: 12px;
+ color: #999999;
+ margin-right: 6px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/CustomTabs/index.less?modules ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___d27mZ {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___qfRU9 {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___fCRld {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___ORMV8 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___PNKtZ {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.tabs___alpa7 {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ border-bottom: 1px solid #dbdce0;
+ height: 54px;
+}
+.tabs___alpa7 .tabsWrap___aCQjw {
+ display: flex;
+ align-items: center;
+ height: 100%;
+}
+.tabs___alpa7 .tabsWrap___aCQjw .tab___MKLr4 {
+ display: flex;
+ align-items: center;
+ margin-right: 40px;
+ height: 100%;
+ cursor: pointer;
+}
+.tabs___alpa7 .tabsWrap___aCQjw .tab___MKLr4 > div {
+ position: relative;
+ font-size: 14px;
+ font-weight: 400;
+ color: #5f6368;
+ display: flex;
+ align-items: center;
+ height: 100%;
+}
+.tabs___alpa7 .tabsWrap___aCQjw .tab___MKLr4 .active___nl_4v {
+ font-weight: 500;
+ color: #202124;
+}
+.tabs___alpa7 .tabsWrap___aCQjw .tab___MKLr4 .active___nl_4v:after {
+ position: absolute;
+ content: '';
+ width: 100%;
+ z-index: 4;
+ border-radius: 2px;
+ left: 0px;
+ bottom: 0px;
+ height: 3px;
+ background: #202124;
+ border-radius: 100px 100px 0px 0px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/CustomTable/index.less?modules ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___nD617 {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___a7tc2 {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___Ii5kH {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___tc9kq {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___x1Zlj {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.table___zOWN7 {
+ margin-left: -8px;
+ margin-top: -12px;
+}
+.table___zOWN7 .ant-table-tbody tr {
+ background-color: #fff;
+}
+.table___zOWN7 .ant-table-tbody tr td {
+ border: none;
+ color: #000000;
+ border-bottom: 1px solid #f6F7F9;
+}
+.table___zOWN7 .ant-table-thead > tr > th {
+ background: white;
+ border: none;
+ color: #5f6368;
+ font-weight: 400;
+ background: #f6F7F9;
+}
+.table___zOWN7 .ant-table-thead > tr > th::before {
+ display: none;
+}
+.table___zOWN7 .ant-table-column-sorter-full {
+ margin-top: -0.4em;
+}
+.table___zOWN7 .ant-checkbox-checked .ant-checkbox-inner {
+ background-color: #fff;
+ border-color: #165dff;
+}
+.table___zOWN7 .ant-checkbox-checked .ant-checkbox-inner::after {
+ border-color: #165dff;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/SuperiorSort/index.less?modules ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___e6HxQ {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___RnXYe {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___lVxPk {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___bu8yv {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___JczGj {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.orderWrap___ZfyGX {
+ display: box;
+ display: flex;
+ align-items: center;
+}
+.orderIconWrap___XTB_O {
+ display: box;
+ display: flex;
+ flex-direction: column;
+ height: 40px;
+ line-height: 40px;
+ color: #999999;
+}
+.orderAsc___KWHmA {
+ flex-direction: column;
+ text-align: center;
+ height: 10px;
+ line-height: 10px;
+ display: inline-block;
+ margin-top: 9px;
+ transform: translateY(2px);
+}
+.orderDesc___rHdbB {
+ flex-direction: column;
+ text-align: center;
+ height: 10px;
+ line-height: 10px;
+ display: table;
+}
+.active___a7eSP {
+ color: #232b40 !important;
+}
+.cursorPointer___gs9kL {
+ cursor: pointer;
+ color: #d8d8d8;
+ height: 10px;
+}
+.orderTextWrap___teAKn {
+ font-size: 14px;
+ color: #3b3e47;
+ cursor: pointer;
+ margin-right: 5px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/CustomButton/index.less?modules ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___LCi0B {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___hzONe {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___ZyQRE {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___XKM74 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___p8LCU {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.btn___In02G {
+ height: 32px;
+ background: #f6f7f9 linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
+ box-shadow: 0px 2px 4px 0px #e0dfe1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 16px;
+ border: 1px solid #bacffe;
+ font-size: 14px;
+ color: #3061d0;
+ line-height: 30px;
+ text-align: center;
+ cursor: pointer;
+ padding: 0 15px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.btn___In02G:hover {
+ color: #165dff;
+ border: 1px solid #165dff;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/HeadBack/index.less?modules ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___TB7bQ {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___oBlTb {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___b5XbB {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___CNhe7 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___yHXKW {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.head___ghH72 {
+ height: 54px;
+ border-bottom: 1px solid #DBDCE0;
+ display: flex;
+ align-items: center;
+}
+.head___ghH72 > span {
+ color: #999999;
+ font-size: 12px;
+ cursor: pointer;
+ flex-shrink: 0;
+}
+.head___ghH72 > b {
+ font-weight: 500;
+ color: #232B40;
+ margin-left: 30px;
+ font-size: 14px;
+ flex: 1 1;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.head___ghH72 .node___mjPEy {
+ margin-left: auto;
+ flex-shrink: 0;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ui-customization/ConfirmAndCancel/index.less?modules ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___AlHuF {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___vN2LW {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___Ac7D2 {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___y38I7 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___iQE6P {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.btns___sNgTb {
+ display: flex;
+ align-items: center;
+}
+.btns___sNgTb .confirm___Ozirl {
+ height: 38px;
+ background: #3061D0;
+ border-radius: 2px;
+ color: #FFFFFF;
+ padding: 0 34px;
+}
+.btns___sNgTb .cancel___aiq1I {
+ height: 38px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-size: 14px;
+ color: #464F66;
+ margin-left: 20px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Setting/index.less?modules ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___XJhZ_ {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___QP4ke {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___QxAqn {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___idxMG {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___FtSbq {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.all___CqKTx {
+ padding-bottom: 25px;
+}
+.all___CqKTx .message_warnimg___sCs9y {
+ height: 30px;
+ background: rgba(255, 157, 24, 0.1);
+ border-radius: 0px 0px 8px 8px;
+ font-size: 12px;
+ font-weight: 400;
+ color: #FF9D18;
+ line-height: 30px;
+}
+.all___CqKTx .message_warnimg___sCs9y .message_icon___T8887 {
+ margin-left: 30px;
+ margin-right: 10px;
+ font-size: 5px;
+ border: 1px #FF9D18 solid;
+ padding: 1px;
+ border-radius: 10px;
+}
+.all___CqKTx .message_error___pZWBZ {
+ height: 30px;
+ background: rgba(229, 51, 51, 0.1);
+ border-radius: 0px 0px 8px 8px;
+ font-size: 12px;
+ font-weight: 400;
+ color: #E53333;
+ line-height: 30px;
+}
+.all___CqKTx .message_error___pZWBZ .message_icon___T8887 {
+ margin-left: 30px;
+ margin-right: 10px;
+ font-size: 5px;
+ border: 1px #E53333 solid;
+ padding: 1px;
+ border-radius: 10px;
+}
+.all___CqKTx .message_error___pZWBZ .message_title___lTdqI {
+ margin-right: 30px;
+ font-size: 12px;
+ font-weight: 600;
+ color: #E53333;
+}
+.all___CqKTx .setting___v3_ot {
+ border-radius: 4px;
+ border: 1px solid #F1F1F1;
+ margin-top: 20px;
+}
+.all___CqKTx .setting___v3_ot .setting_title___WxGAY {
+ background: #F6F7F9;
+ height: 50px;
+ line-height: 50px;
+ border-radius: 4px 4px 0px 0px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #232B40;
+ text-indent: 20px;
+}
+.all___CqKTx .setting___v3_ot .setting_content___XAWD6 {
+ display: flex;
+}
+.all___CqKTx .setting___v3_ot .setting_content___XAWD6 .setting_menu___oKuAW {
+ width: 182px;
+ padding-top: 15px;
+}
+.all___CqKTx .setting___v3_ot .setting_content___XAWD6 .setting_menu___oKuAW .menu_item___qbDG8 {
+ height: 44px;
+ line-height: 44px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #5F6367;
+ cursor: pointer;
+ text-indent: 20px;
+}
+.all___CqKTx .setting___v3_ot .setting_content___XAWD6 .setting_menu___oKuAW .menu_item_active___kzN6I {
+ position: relative;
+ height: 44px;
+ line-height: 44px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #165DFF;
+ background: #F8F9FA;
+ cursor: pointer;
+ text-indent: 20px;
+}
+.all___CqKTx .setting___v3_ot .setting_content___XAWD6 .setting_menu___oKuAW .menu_item_active___kzN6I::after {
+ position: absolute;
+ right: 0;
+ content: '';
+ width: 3px;
+ height: 44px;
+ background: #232B40;
+ border-radius: 3px 0px 0px 3px;
+}
+.all___CqKTx .setting___v3_ot .setting_content___XAWD6 .setting_info___pqlf5 {
+ flex: 1 1;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Setting/information/index.less?modules ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___I6sdE {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___uTlet {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___P8PRU {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___WLZlZ {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___tMPnI {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.all___dBmCY .title___IeVqW {
+ height: 14px;
+ font-size: 14px;
+ font-family: PingFangSC-Semibold, PingFang SC;
+ font-weight: 600;
+ color: #232B40;
+ line-height: 14px;
+ margin: 30px 30px 0 30px;
+}
+.all___dBmCY .content___zp_KL:last-child {
+ border-bottom: none;
+}
+.all___dBmCY .content___zp_KL {
+ width: calc(100% - 60px);
+ margin: 0 30px;
+ padding: 30px 0 20px 0;
+ border-bottom: 1px #F1F1F1 solid;
+}
+.all___dBmCY .content___zp_KL .form_item___hXuXB {
+ line-height: 40px;
+ font-size: 14px;
+ margin-top: 20px;
+}
+.all___dBmCY .content___zp_KL .form_item_basic___K4a8V {
+ line-height: 40px;
+ font-size: 14px;
+ margin-top: 5px;
+}
+.all___dBmCY .content___zp_KL .form_item_basic___K4a8V [class~='ant-form-item-required']:before {
+ content: '' !important;
+}
+.all___dBmCY .content___zp_KL .form_item_time___h8rdI {
+ line-height: 40px;
+ font-size: 14px;
+ margin-top: -12px;
+}
+.all___dBmCY .content___zp_KL .form_item_model____Mn2H {
+ line-height: 32px;
+ font-size: 14px;
+}
+.all___dBmCY .content___zp_KL .form_item_item___CR0Q5 {
+ font-size: 14px;
+ height: 40px;
+ line-height: 40px;
+}
+.all___dBmCY .content___zp_KL .form_item_item_select___eeMCh {
+ font-size: 14px;
+ height: 40px;
+ line-height: 40px;
+}
+.all___dBmCY .content___zp_KL .textarea_father___XVeQz {
+ position: relative;
+ height: 130px;
+ margin-bottom: 15px;
+ margin-top: -5px;
+}
+.all___dBmCY .content___zp_KL .textarea_father___XVeQz .textarea_length___Xdwl4 {
+ position: absolute;
+ bottom: 10px;
+ right: 10px;
+ font-size: 14px;
+}
+.all___dBmCY .content___zp_KL .upload_button___zltZE {
+ width: 96px;
+ height: 30px;
+ background: #3061D0;
+ box-shadow: inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #FFFFFF;
+ line-height: 30px;
+ text-align: center;
+ cursor: pointer;
+}
+.all___dBmCY .content___zp_KL .upload_button_file___vVqry {
+ width: 96px;
+ height: 30px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ border: 1px solid #BACFFE;
+ font-size: 14px;
+ font-weight: 400;
+ color: #3061D0;
+ line-height: 28px;
+ text-align: center;
+ cursor: pointer;
+}
+.all___dBmCY .content___zp_KL .upload_text___pdO7Y {
+ height: 30px;
+ font-size: 12px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #9096A3;
+ line-height: 30px;
+ margin-top: 3px;
+ margin-left: 20px;
+}
+.all___dBmCY .content___zp_KL .date_text___gvUlY {
+ height: 40px;
+ font-size: 12px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #9096A3;
+ line-height: 40px;
+ margin-left: 10px;
+}
+.all___dBmCY .content___zp_KL .upload_download___KCtvw {
+ height: 30px;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #3061D0;
+ line-height: 30px;
+ margin-bottom: 10px;
+ margin-left: 20px;
+ cursor: pointer;
+}
+.all___dBmCY .content___zp_KL .checkbox_text___yn4Cf {
+ color: #9096A3;
+ margin-left: 10px;
+}
+.all___dBmCY .footer___t6QDc {
+ display: flex;
+ margin: 30px 0;
+}
+.all___dBmCY .footer___t6QDc .clear_button___FWQBK {
+ margin-left: auto;
+ width: 60px;
+ height: 38px;
+ border-radius: 2px;
+ opacity: 0.9;
+ border: 1px solid #BACFFE;
+ text-align: center;
+ line-height: 38px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #3061D0;
+ margin-right: 30px;
+ cursor: pointer;
+}
+.all___dBmCY .footer___t6QDc .save_button___l7JJ7 {
+ margin-left: auto;
+ width: 116px;
+ height: 38px;
+ background: #3061D0;
+ border-radius: 2px;
+ font-size: 14px;
+ text-align: center;
+ font-family: PingFangSC-Semibold, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+ margin-right: 30px;
+ cursor: pointer;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Setting/picture/index.less?modules ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___TUtVx {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___skxVP {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center____enb6 {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___lO_Gq {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___QrhZ_ {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.all___GiQqZ .title___YtceA {
+ height: 14px;
+ font-size: 14px;
+ font-family: PingFangSC-Semibold, PingFang SC;
+ font-weight: 600;
+ color: #232B40;
+ line-height: 14px;
+ margin: 30px 30px 0 30px;
+}
+.all___GiQqZ .content___Es9RO {
+ width: calc(100% - 60px);
+ margin: 0 30px;
+ padding: 30px 0 20px 0;
+ border-bottom: 1px #F1F1F1 solid;
+ display: flex;
+}
+.all___GiQqZ .content___Es9RO .content_icon___SNFzF {
+ width: 16px;
+ height: 16px;
+ margin-top: 25px;
+}
+.all___GiQqZ .content___Es9RO .content_info___rSAWs {
+ margin-top: 22px;
+}
+.all___GiQqZ .content___Es9RO .content_info___rSAWs .content_title___Hkmmk {
+ height: 14px;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #165DFF;
+ line-height: 14px;
+ margin: 1px 10px;
+ border-bottom: 1px #165DFF solid;
+ cursor: pointer;
+}
+.all___GiQqZ .content___Es9RO .content_info___rSAWs .content_size___jLmmn {
+ width: 117px;
+ height: 12px;
+ font-size: 12px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #B8B8B8;
+ line-height: 12px;
+ margin: 10px;
+}
+.all___GiQqZ .content___Es9RO .content_img___NRn9i {
+ width: 198px;
+ height: 85px;
+ border-radius: 4px;
+ margin-left: auto;
+}
+.all___GiQqZ .content___Es9RO .content_img2___D23TM {
+ width: 85px;
+ height: 85px;
+ border-radius: 4px;
+ margin-left: auto;
+}
+.all___GiQqZ .content___Es9RO:last-child {
+ border-bottom: none;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Setting/questions/index.less?modules ***!
+ \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___TOLos {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___kPNcF {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___rUvwU {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end_____Cr_ {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___UubjA {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.all___d1AWD {
+ position: relative;
+}
+.all___d1AWD .title___VIjuM {
+ height: 14px;
+ font-size: 14px;
+ font-weight: 600;
+ color: #232B40;
+ line-height: 14px;
+ margin: 30px 30px 0 30px;
+}
+.all___d1AWD .add_people___qkPex {
+ position: absolute;
+ top: -10px;
+ right: 30px;
+ width: 116px;
+ height: 32px;
+ line-height: 32px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 16px;
+ border: 1px solid #BACFFE;
+ font-size: 14px;
+ font-weight: 400;
+ color: #3061D0;
+ display: flex;
+ cursor: pointer;
+}
+.all___d1AWD .add_people___qkPex .people_icon___lz5gl {
+ width: 16px;
+ height: 16px;
+ margin: 7px 10px 6px 16px;
+}
+.all___d1AWD .content___a8dSX {
+ width: calc(100% - 60px);
+ padding: 25px 20px;
+ margin: 20px 30px;
+ background: #FFFFFF;
+ box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
+ border-radius: 4px;
+ border: 1px solid #F5F5F5;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa {
+ display: flex;
+ height: 30px;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_icon___kXP8P {
+ width: 14px;
+ height: 14px;
+ margin-top: 7px;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_title___Hld67 {
+ width: 50px;
+ height: 30px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #232B40;
+ line-height: 30px;
+ margin: 0 8px;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_content___kbIuT {
+ max-width: 480px;
+ height: 30px;
+ background: rgba(22, 93, 255, 0.05);
+ border-radius: 15px;
+ display: flex;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_content___kbIuT .info_content_icon___uNxzs {
+ margin: 8px 8px 8px 20px;
+ width: 14px;
+ height: 14px;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_content___kbIuT .info_content_title___IfIi8 {
+ max-width: 420px;
+ height: 30px;
+ font-size: 12px;
+ font-weight: 400;
+ color: #165DFF;
+ line-height: 30px;
+ margin-right: 20px;
+ cursor: pointer;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_open___NzrUi {
+ width: 70px;
+ height: 30px;
+ font-size: 12px;
+ font-weight: 400;
+ color: #9096A3;
+ line-height: 30px;
+ margin: 0 20px;
+ text-align: center;
+ cursor: pointer;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_open___NzrUi:hover {
+ color: #165DFF;
+}
+.all___d1AWD .content___a8dSX .content_info___ekLIa .info_delete___rZhhO {
+ width: 80px;
+ height: 26px;
+ margin: 2px 0px 2px auto;
+ background: #FCEAEA;
+ border-radius: 2px;
+ font-size: 12px;
+ font-weight: 400;
+ color: #E53333;
+ line-height: 26px;
+ text-align: center;
+ cursor: pointer;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq {
+ width: calc(100% - 80px);
+ background: #F8F9FA;
+ margin-top: 20px;
+ margin-left: 80px;
+ padding: 20px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item___oxzha {
+ line-height: 40px;
+ margin-bottom: 5px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item___oxzha .form_item_item___yPf7l {
+ width: 180px;
+ height: 40px;
+ line-height: 40px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item_small___EkG9G {
+ line-height: 30px;
+ margin-bottom: 5px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item_small___EkG9G .guanka_title___uUWQl {
+ width: 435px;
+ text-align: left;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item_small___EkG9G .form_item_item_small___fKhrW {
+ width: 100px;
+ height: 30px;
+ line-height: 30px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item_small___EkG9G .guanka_icon___fBudt {
+ width: 14px;
+ height: 14px;
+ margin: 7px 15px 7px 0;
+ color: #165DFF;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item_small___EkG9G .nandu_1___qifbd {
+ width: 44px;
+ height: 20px;
+ line-height: 18px;
+ background: #FFFFFF;
+ border-radius: 2px;
+ border: 1px solid #165DFF;
+ font-size: 12px;
+ font-weight: 400;
+ color: #165DFF;
+ text-align: center;
+ margin-left: 80px;
+ margin-top: 5px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item_small___EkG9G .nandu_2___qVJU8 {
+ width: 44px;
+ height: 20px;
+ line-height: 18px;
+ background: #FFFFFF;
+ border-radius: 2px;
+ border: 1px solid #FF9D18;
+ font-size: 12px;
+ font-weight: 400;
+ color: #FF9D18;
+ text-align: center;
+ margin-left: 80px;
+ margin-top: 5px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .form_item_small___EkG9G .nandu_3___NRfLL {
+ width: 44px;
+ height: 20px;
+ line-height: 18px;
+ background: #FFFFFF;
+ border-radius: 2px;
+ border: 1px solid #E53333;
+ font-size: 12px;
+ font-weight: 400;
+ color: #E53333;
+ text-align: center;
+ margin-left: 80px;
+ margin-top: 5px;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .close_icon___f2hON {
+ width: 70px;
+ height: 30px;
+ font-size: 12px;
+ font-weight: 400;
+ color: #9096A3;
+ line-height: 30px;
+ margin: 0 auto;
+ text-align: center;
+ cursor: pointer;
+}
+.all___d1AWD .content___a8dSX .questions_info___n9Fnq .close_icon___f2hON:hover {
+ color: #165DFF;
+}
+.all___d1AWD .footer___UDiYB {
+ display: flex;
+ margin: 30px 0;
+}
+.all___d1AWD .footer___UDiYB .clear_button___HQIfB {
+ margin-left: auto;
+ width: 60px;
+ height: 38px;
+ border-radius: 2px;
+ opacity: 0.9;
+ border: 1px solid #BACFFE;
+ text-align: center;
+ line-height: 38px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #3061D0;
+ margin-right: 30px;
+ cursor: pointer;
+}
+.all___d1AWD .footer___UDiYB .save_button___t7iMm {
+ margin-left: auto;
+ width: 116px;
+ height: 38px;
+ background: #3061D0;
+ border-radius: 2px;
+ font-size: 14px;
+ text-align: center;
+ font-family: PingFangSC-Semibold, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+ margin-right: 30px;
+ cursor: pointer;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Setting/questions/SelectShixun.less?modules ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___xWeOt {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___Tvggn {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___kWgd3 {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___akdCb {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___TjkcQ {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.wrp___vIMBU {
+ background: #fff;
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04);
+ padding-top: 10px;
+}
+.drawer___HuOiD [class='ant-drawer-content'] {
+ background: #f5f5f5;
+}
+.drawer___HuOiD [class='ant-drawer-footer'] {
+ background: #fff;
+ box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.05);
+ position: relative;
+ border: 0;
+}
+.menu___JTt0c {
+ padding: 0;
+ margin: 12px 0;
+ position: relative;
+ z-index: 2;
+}
+.menu___JTt0c:hover {
+ z-index: 3;
+}
+.menu___JTt0c > li {
+ display: inline-block;
+ position: relative;
+ margin-right: 20px;
+ border-radius: 32px;
+ line-height: 32px;
+}
+.menu___JTt0c > li a {
+ color: #4b4b4b;
+}
+.menu___JTt0c > li strong {
+ padding: 6px 15px;
+ border-radius: 32px;
+ cursor: pointer;
+ font-weight: normal;
+}
+.menu___JTt0c > li:hover > a > strong,
+.menu___JTt0c > li:hover > strong {
+ color: #fff;
+ background: #0152d9;
+}
+.menu___JTt0c > li:hover div {
+ display: block;
+}
+.menu___JTt0c > li > div {
+ display: none;
+ position: absolute;
+ left: 0;
+ top: 30px;
+ width: 400px;
+ padding: 10px;
+ background: #fff;
+ color: #333;
+ max-height: 400px;
+ overflow: auto;
+ z-index: 8;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
+}
+.menu___JTt0c > li > div h2 {
+ cursor: pointer;
+ margin: 10px 0;
+}
+.menu___JTt0c > li > div h2:hover {
+ color: #0152d9;
+}
+.menu___JTt0c > li > div ul {
+ padding-left: 0;
+}
+.menu___JTt0c > li > div ul li {
+ cursor: pointer;
+ display: inline-block;
+ height: 30px;
+ line-height: 30px;
+ margin-right: 20px;
+ color: #999;
+}
+.menu___JTt0c > li > div ul li:hover {
+ color: #0152d9;
+}
+.actived___zd6GY {
+ background: #0152d9;
+ color: #fff;
+}
+.actived2___hNW2h {
+ color: #0152d9 !important;
+}
+.subTag___rHkqz {
+ cursor: pointer;
+}
+.subTag___rHkqz:hover {
+ color: #0152d9;
+}
+.listItem___dr1wg {
+ padding: 25px 30px 25px 30px;
+ display: box;
+ display: flex;
+ background: white;
+ margin-top: 20px;
+ cursor: pointer;
+}
+.listItem___dr1wg > div {
+ flex: 1 1;
+}
+.listItem___dr1wg:hover {
+ box-shadow: 0 0 10px #ccc;
+}
+.listItem2___QY8YQ {
+ padding: 0 10px;
+ display: box;
+ display: flex;
+ background: white;
+ cursor: pointer;
+}
+.listItem2___QY8YQ > div {
+ flex: 1 1;
+}
+.listItem2___QY8YQ [class~='ant-divider-horizontal'] {
+ margin: 17px 0;
+}
+.info___bpBpK {
+ margin-left: 20px;
+}
+.info___bpBpK p {
+ margin-top: 18px;
+}
+.title___typIH {
+ width: 100%;
+ display: box;
+ display: flex;
+ align-items: center;
+ box-align: center;
+}
+.title___typIH strong {
+ color: #333;
+}
+.titleLeft___b4niC {
+ display: flex;
+ justify-content: space-between;
+ width: 1080px;
+ flex: 1 1;
+}
+.titleRight___odd4D {
+ margin-top: 18px;
+}
+.titleRight___odd4D a {
+ margin-right: 20px;
+ font-weight: bold;
+}
+.search___HtgNb {
+ width: 600px !important;
+ margin: 30px 0 30px 0;
+}
+.search___HtgNb input,
+.search___HtgNb [class='ant-input-group-addon'] button {
+ height: 50px;
+ line-height: 50px;
+ padding: 0 30px;
+ font-size: 16px;
+}
+.filter___HBJIT button {
+ border-radius: 40px;
+ box-shadow: none;
+}
+.filter___HBJIT [class~='ant-btn-default'] {
+ background: #eee;
+ border-color: #eee;
+ color: #999;
+}
+.filter___HBJIT [class~='ant-btn-primary'] {
+ background-color: #0152d9;
+ border-color: #0152d9;
+}
+.filter___HBJIT [class~='ant-input'] {
+ border-radius: 4px;
+}
+.filter___HBJIT [class~='ant-input-search-button'] {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+}
+.description___Rqa6Q {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ overflow: hidden;
+}
+.menuCourse____Msk3 {
+ color: #999;
+ margin-top: 10px;
+}
+.menuCourse____Msk3 ul,
+.menuCourse____Msk3 li {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+.menuCourse____Msk3 li {
+ display: inline-block;
+ margin-right: 30px;
+}
+.button_right___T8tiB {
+ margin-left: auto;
+ border-radius: 50px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/FormSearch/index.less?modules ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.search___JA0r9 {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ justify-content: center;
+ margin: 30px 0;
+ padding-left: 12px;
+}
+.search___JA0r9 .ant-form-item-label > label {
+ height: 40px;
+}
+.search___JA0r9 .btn___GGtZC {
+ width: 112px;
+ height: 46px;
+ margin-top: -3px;
+ margin-left: 10px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/ReuseShixunModal/index.less?modules ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.brief___LOzpE {
+ font-size: 14px;
+ font-weight: 400;
+ margin-bottom: 30px;
+}
+.contentTitle___xkdcN {
+ display: flex;
+ align-items: center;
+ font-size: 14px;
+ font-weight: 400;
+ color: #000000;
+}
+.content___Vtri0 {
+ font-size: 14px;
+ font-weight: 400;
+}
+.tips___tuAtH {
+ font-size: 12px;
+ font-weight: 400;
+ color: #6b758b;
+ padding-left: 14px;
+}
+.antdTable___s8T2N {
+ margin-top: 10px;
+ margin-bottom: 20px;
+}
+.antdTable___s8T2N thead[class~='ant-table-thead'] > tr > th {
+ background: #F2F2F2;
+ color: #5F6367;
+}
+.antdTable___s8T2N .tableCell___kN9Fw {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+.antdModal___WVBk3 div[class~='ant-modal-header'] {
+ padding-top: 30px;
+ padding-left: 40px;
+}
+.antdModal___WVBk3 button[class~='ant-modal-close'] {
+ top: 18px;
+ right: 10px;
+}
+.antdModal___WVBk3 button[class~='ant-modal-close'] span[class~='ant-modal-close-x'] {
+ font-size: 18px;
+}
+.antdModal___WVBk3 div[class~='ant-modal-body'] {
+ padding-left: 40px;
+ padding-right: 40px;
+ max-height: 620px;
+ overflow: auto;
+}
+.antdModal___WVBk3 div[class~='ant-modal-footer'] {
+ border-top: none;
+ padding-bottom: 30px;
+ padding-right: 40px;
+}
+.orangeColor___ryB2u {
+ color: #FE6300;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Setting/personnel/index.less?modules ***!
+ \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___iPlvr {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___xLMpL {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___m68GV {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___N__Xt {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___EdrdM {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.all___ZbAJW {
+ position: relative;
+}
+.all___ZbAJW .title___QPivo {
+ height: 14px;
+ font-size: 14px;
+ font-family: PingFangSC-Semibold, PingFang SC;
+ font-weight: 600;
+ color: #232B40;
+ line-height: 14px;
+ margin: 30px 30px 0 30px;
+}
+.all___ZbAJW .add_people___jqyIi {
+ position: absolute;
+ top: -10px;
+ right: 30px;
+ width: 136px;
+ height: 32px;
+ line-height: 32px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 16px;
+ border: 1px solid #BACFFE;
+ font-size: 14px;
+ font-weight: 400;
+ color: #3061D0;
+ display: flex;
+ cursor: pointer;
+}
+.all___ZbAJW .add_people___jqyIi .people_icon___Gf35v {
+ width: 18px;
+ height: 18px;
+ margin: 6px 10px 6px 15px;
+}
+.all___ZbAJW .content_user___mESiF {
+ width: calc(100% - 40px);
+ height: 100px;
+ margin: 25px auto 0 auto;
+}
+.all___ZbAJW .content_user___mESiF .content_left___JUfAC {
+ width: calc((100% - 40px)/2);
+ margin: 0 10px 20px 10px;
+ padding: 20px 0 20px 20px;
+ display: flex;
+ background: #FFFFFF;
+ box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
+ border-radius: 4px;
+ border: 1px solid #F5F5F5;
+ float: left;
+}
+.all___ZbAJW .user_img_box___rq6y5 {
+ width: 60px;
+ height: 60px;
+ border-radius: 30px;
+ overflow: hidden;
+ position: relative;
+}
+.all___ZbAJW .user_img_box___rq6y5 .user_img___tN5UW {
+ width: 60px;
+ height: 60px;
+}
+.all___ZbAJW .user_img_box___rq6y5 .user_rule_create___i4hOF {
+ width: 60px;
+ height: 20px;
+ background: #0152D9;
+ line-height: 20px;
+ text-align: center;
+ color: #fff;
+ font-size: 12px;
+ position: absolute;
+ bottom: 0px;
+}
+.all___ZbAJW .user_img_box___rq6y5 .user_rule_me___XrMP0 {
+ width: 60px;
+ height: 20px;
+ background: #F57C00;
+ line-height: 20px;
+ text-align: center;
+ color: #fff;
+ font-size: 12px;
+ position: absolute;
+ bottom: 0px;
+}
+.all___ZbAJW .user_info___ncafT {
+ margin-left: 20px;
+}
+.all___ZbAJW .user_info___ncafT .user_name___hqLNP {
+ height: 30px;
+ line-height: 30px;
+ font-size: 14px;
+ font-weight: 600;
+ color: #333333;
+}
+.all___ZbAJW .user_info___ncafT .user_school___m7TBE {
+ height: 30px;
+ line-height: 30px;
+ font-size: 12px;
+ color: #9096A3;
+}
+.all___ZbAJW .delete_text___j_0I0 {
+ margin-left: auto;
+ margin-right: 20px;
+ height: 60px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #E53333;
+ line-height: 60px;
+ cursor: pointer;
+}
+.all___ZbAJW .query_style___Nwuez {
+ width: 80px;
+ height: 32px;
+ line-height: 32px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 20px;
+ border: 1px solid #BACFFE;
+ font-size: 14px;
+ font-weight: 400;
+ color: #3061D0;
+ text-align: center;
+}
+.modal_styles___d9sQP div[class=ant-modal-header] {
+ padding: 25px 25px 0 25px;
+}
+.modal_styles___d9sQP span[class=ant-modal-close-x] {
+ margin: 10px 10px 0 0;
+ padding-top: 3px;
+ font-size: 16px;
+}
+.modal_styles___d9sQP div[class=ant-modal-body] {
+ padding: 20px 25px;
+}
+.modal_styles___d9sQP div[class=ant-modal-footer] {
+ border-top: none;
+ padding: 0 25px 25px 25px;
+}
+.modal_styles___d9sQP [class=ant-btn-default] {
+ width: 60px;
+ height: 32px;
+ line-height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-size: 14px;
+ font-weight: 400;
+ color: #464F66;
+}
+.modal_styles___d9sQP [class=ant-btn-primary] {
+ width: 60px;
+ height: 32px;
+ line-height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ width: 28px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #FFFFFF;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Setting/document/index.less?modules ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___yg5U2 {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___RNHqN {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___ZT47P {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___X4Xs3 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___OzmB0 {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.all___uSCy0 .content___pnhPh {
+ width: calc(100% - 60px);
+ margin: 0 30px;
+ padding: 30px 0 20px 0;
+ border-bottom: 1px #F1F1F1 solid;
+ display: flex;
+}
+.all___uSCy0 .content___pnhPh .content_left_red___SmVi6 {
+ width: 85%;
+ height: 62px;
+ border-radius: 4px;
+ display: flex;
+}
+.all___uSCy0 .content___pnhPh .content_left_none___jTbL2 {
+ width: 85%;
+ border-radius: 4px;
+ display: flex;
+}
+.all___uSCy0 .content___pnhPh .content_left_flag___mae5L {
+ width: 14px;
+ height: 14px;
+ border-radius: 4px;
+ margin: 10px 15px 0 20px;
+}
+.all___uSCy0 .content___pnhPh .content_left_info___mISvV {
+ width: calc(100% - 60px);
+}
+.all___uSCy0 .content___pnhPh .content_left_info___mISvV .content_left_title___lcDeu {
+ width: 70px;
+ font-size: 14px;
+ font-family: PingFangSC-Semibold, PingFang SC;
+ font-weight: 600;
+ color: #232B40;
+ height: 30px;
+ line-height: 35px;
+}
+.all___uSCy0 .content___pnhPh .content_left_info___mISvV .content_left_description___Ris52 {
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #9096A3;
+ line-height: 25px;
+}
+.all___uSCy0 .content___pnhPh .content_right___AcQrD {
+ font-size: 14px;
+ font-weight: 400;
+ color: #165DFF;
+ margin-top: 34px;
+ margin-left: auto;
+ cursor: pointer;
+}
+.all___uSCy0 .content___pnhPh .content_right_span___WiMTr {
+ font-size: 14px;
+ font-weight: 400;
+ color: #165DFF;
+ margin-top: 34px;
+ margin-left: auto;
+ cursor: pointer;
+ border-bottom: 1px #165DFF solid;
+}
+.all___uSCy0 .form_item___eHCux {
+ line-height: 40px;
+}
+.all___uSCy0 .form_item___eHCux .form_item_item___IAs6n {
+ height: 40px;
+ line-height: 40px;
+ width: 400px;
+}
+.all___uSCy0 .fuzhi___rSsFz {
+ width: 78px;
+ height: 40px;
+ line-height: 40px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ border: 1px solid #BACFFE;
+ font-size: 14px;
+ font-weight: 400;
+ text-align: center;
+ color: #165DFF;
+ cursor: pointer;
+ margin: 0 20px 0 5px;
+}
+.all___uSCy0 .fuzhi_text___UV3Dz {
+ width: 308px;
+ height: 40px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #9096A3;
+ line-height: 40px;
+}
+.all___uSCy0 .tijiao___AYAeP {
+ width: 116px;
+ height: 38px;
+ border-radius: 2px;
+ font-weight: 600;
+ cursor: pointer;
+ margin-right: 20px;
+ text-align: center;
+}
+.all___uSCy0 .tijiao_text___TC6tI {
+ width: 254px;
+ height: 38px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #9096A3;
+ line-height: 38px;
+}
+.all___uSCy0 .content___pnhPh:last-child {
+ border-bottom: none;
+}
+.all___uSCy0 .quetions_info___qHhFg {
+ width: calc(100% - 60px);
+ font-size: 16px;
+ color: red;
+ height: 40px;
+ line-height: 40px;
+ margin: 20px auto;
+}
+.scoremodal___LmU2Z [class~='ant-modal-body'] {
+ padding: 25px;
+}
+.scoremodal___LmU2Z .title___M1zQX {
+ color: #000000;
+ font-size: 16px;
+ font-weight: 500;
+ display: flex;
+ width: 100%;
+}
+.scoremodal___LmU2Z .content___pnhPh {
+ margin-top: 25px;
+}
+.scoremodal___LmU2Z .bottom___P728Z {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal___LmU2Z .bottom___P728Z .yes___gRJi8 {
+ padding: 0px 20px;
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-weight: 400;
+ color: #FFFFFF;
+ border: 0px;
+}
+.scoremodal___LmU2Z .bottom___P728Z .no___voaWW {
+ margin-right: 20px;
+ width: 60px;
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-weight: 400;
+ color: #464F66;
+ line-height: 14px;
+}
+.scoremodal___LmU2Z .form_item___eHCux {
+ line-height: 40px;
+}
+.scoremodal___LmU2Z .form_item___eHCux .form_item_item___IAs6n {
+ height: 40px;
+ line-height: 40px;
+ width: 100%;
+}
+.scoremodal___LmU2Z .form_item___eHCux .form_item_item_select___g8gNL {
+ font-size: 14px;
+ line-height: 40px;
+ width: 100%;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/view/index.less?modules ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___SC2G3 {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___v24d6 {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___iBIji {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___shnGM {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___pRdtO {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.bg___htQ1O {
+ max-width: none;
+ border: 1px solid #F1F1F1;
+ border-radius: 2px 2px 0 0;
+}
+.bg___htQ1O .title___dw_wz {
+ background: #f6f7f9;
+ height: 50px;
+ font-size: 14px;
+ line-height: 50px;
+ padding: 0px 20px;
+ border-radius: 2px 2px 0 0;
+}
+.bg___htQ1O .left___CDy7v {
+ max-width: 182px;
+ min-width: 182px;
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 1;
+ overflow: hidden;
+ height: 100%;
+ padding-top: 15px;
+}
+.bg___htQ1O .left___CDy7v span[class~='ant-menu-title-content'] {
+ margin-left: 4px;
+}
+.bg___htQ1O .left___CDy7v [class~='ant-menu-item']::after {
+ content: '' !important;
+ width: 3px;
+ height: 44px;
+ border: 0 !important;
+ transition: none !important;
+ transform: none !important;
+ opacity: 1 !important;
+}
+.bg___htQ1O .left___CDy7v li[class~='ant-menu-item-selected'] {
+ background: #f8f8fa;
+ color: #165DFF;
+}
+.bg___htQ1O .left___CDy7v li[class~='ant-menu-item-selected']::after {
+ position: absolute;
+ right: 0;
+ content: '';
+ width: 3px;
+ height: 44px;
+ background: #232B40;
+ border-radius: 3px 0px 0px 3px;
+}
+.bg___htQ1O .left___CDy7v .muitem___pDhZj {
+ height: 44px;
+ line-height: 44px;
+ font-size: 14px;
+ color: #5F6367;
+}
+.bg___htQ1O .right___tNRAa {
+ width: 100%;
+}
+.button___tMn5K {
+ cursor: pointer;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ padding: 0px 16px;
+ color: #3061D0;
+ height: 32px;
+ font-size: 14px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 16px;
+ border: 1px solid #BACFFE;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/view/components/Content.less?modules ***!
+ \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___Y72kq {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___d30ej {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___p_tif {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___AyBVH {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___NQalW {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.bg___cLFww {
+ width: 100%;
+ padding: 30px;
+}
+.bg___cLFww [class~='ant-checkbox'] + span {
+ padding-right: 0px;
+}
+.bg___cLFww .btns___uWjSy {
+ display: flex;
+ align-items: center;
+ justify-content: end;
+ margin-top: 30px;
+}
+.bg___cLFww .btns___uWjSy .confirm___ZvnTx {
+ width: 128px;
+ height: 38px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1;
+ border-radius: 2px;
+ font-size: 14px;
+ color: #FFFFFF;
+ text-align: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ cursor: pointer;
+ margin-left: 20px;
+}
+.bg___cLFww .btns___uWjSy .cancel___v9uv4 {
+ width: 60px;
+ height: 38px;
+ background: #fff;
+ border-radius: 2px;
+ border: 1px solid #bacffe7c;
+ font-size: 14px;
+ color: #3061D0;
+ text-align: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ cursor: pointer;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/components/PreviewAll/index.less?modules ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.wrp___dq7YK {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: fixed;
+ width: 100%;
+ height: 100%;
+ left: 0;
+ top: 0;
+ z-index: 108;
+}
+.wrp___dq7YK.bgBlack___ARIUV {
+ background: rgba(0, 0, 0, 0.5);
+}
+.wrp___dq7YK img,
+.wrp___dq7YK video {
+ max-width: 100%;
+ max-height: 80%;
+ text-align: center;
+}
+.wrp___dq7YK iframe {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ left: 0;
+ top: 0;
+ background: #fff;
+ border: none;
+}
+.monaco___VnZC3 {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+}
+.darkBlue___UprA9 * {
+ font-size: 14px;
+}
+.darkBlue___UprA9 [class~='margin'],
+.darkBlue___UprA9 [class~='monaco-editor-background'] {
+ background: #0a0e2d !important;
+}
+.darkBlue___UprA9 [class~='line-numbers'] {
+ color: white !important;
+}
+.close___LKoWu {
+ position: absolute;
+ right: 40px;
+ top: 40px;
+ z-index: 10;
+ display: flex;
+}
+.close___LKoWu > span {
+ background: #4a4a4a;
+ color: #fff;
+ width: 40px;
+ height: 40px;
+ border-radius: 4px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ cursor: pointer;
+ margin-left: 10px;
+}
+.embed___hvpEJ {
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*******************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[2]!./src/components/monaco-editor/index.css ***!
+ \*******************************************************************************************************************************************************************************************************************************************/
+.my-monaco-editor div,
+.my-diff-editor div {
+ font-size: inherit;
+}
+
+.my-error-line-wrp {
+ width: calc(100% - 20px) !important;
+ background: rgba(245, 0, 0, 0.2) !important;
+ height: auto !important;
+ color: rgba(245, 0, 0, 1);
+}
+
+
+.noCopyPaste .quick-input-widget {
+ display: none !important;
+}
+
+.breakpoints-select {
+
+ background: #FF0000;
+ width: 8px !important;
+ height: 8px !important;
+ left: 7px !important;
+ top: 7px;
+ border-radius: 4px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ pointer-events: none;
+}
+
+.breakpoints-fake {
+ background: rgba(255, 0, 0, 0.5);
+ width: 8px !important;
+ height: 8px !important;
+ left: 7px !important;
+ top: 7px;
+ border-radius: 4px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ pointer-events: none;
+}
+
+.highlighted-line {
+ background: #4B4B18;
+}
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./src/components/markdown-editor/index.less ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.markdown-editor-wrapper {
+ position: relative;
+}
+.markdown-editor-body {
+ display: flex;
+ flex-flow: row nowrap;
+ width: 100%;
+ height: calc(100% - 38px);
+ align-items: center;
+}
+.markdown-editor-body .codemirror-container {
+ flex: 1 0;
+ height: 100%;
+ width: 100%;
+ overflow: hidden;
+}
+.markdown-editor-body .CodeMirror-wrap {
+ padding-bottom: 15px;
+}
+.markdown-editor-body .preview-container {
+ flex: 1 0;
+ height: 100%;
+ margin: 10px 0px;
+ padding: 8px 8px 50px 8px;
+ background: #fff;
+ overflow-y: auto;
+ box-sizing: border-box;
+ border-left: 1px solid #ccc;
+ word-wrap: break-word;
+ word-break: break-word;
+ white-space: normal;
+ font-size: 16px;
+}
+.markdown-editor-container {
+ border: 1px solid #ccc;
+ overflow: hidden;
+ border-radius: 4px;
+ margin-bottom: 12px;
+ font-size: 16px;
+}
+.markdown-editor-container.full-screen {
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ height: 100vh !important;
+ z-index: 100;
+}
+.markdown-editor-container.full-screen .preview-container > div {
+ padding-bottom: 180px !important;
+}
+.markdown-editor-container.full-screen .CodeMirror-sizer > div {
+ margin-bottom: 90px;
+}
+.markdown-editor-container.on-preview .codemirror-container,
+.markdown-editor-container.on-preview .preview-container {
+ width: 50%;
+}
+.mini .markdown-editor-body {
+ height: calc(100% - 28px);
+}
+.flex-end {
+ justify-content: flex-end;
+}
+.my-codemirror-container {
+ border: 1px solid #ccc;
+ width: 100%;
+ margin-bottom: 24px;
+}
+.markdown-tip {
+ color: #cdcdcd;
+ font-size: 12px;
+ position: absolute;
+ right: 0;
+ bottom: -28px;
+ margin-bottom: 7px;
+}
+/* PADDING */
+.CodeMirror-lines {
+ padding: 4px 0;
+ /* Vertical padding around content */
+}
+.CodeMirror pre.CodeMirror-line,
+.CodeMirror pre.CodeMirror-line-like {
+ padding: 0 4px;
+ /* Horizontal padding of content */
+}
+.CodeMirror-scrollbar-filler,
+.CodeMirror-gutter-filler {
+ background-color: white;
+ /* The little square between H and V scrollbars */
+}
+/* GUTTER */
+.CodeMirror-gutters {
+ border-right: 1px solid #ddd;
+ background-color: #f7f7f7;
+ white-space: nowrap;
+}
+.CodeMirror-linenumber {
+ padding: 0 3px 0 5px;
+ min-width: 20px;
+ text-align: right;
+ color: #999;
+ white-space: nowrap;
+}
+.CodeMirror-guttermarker {
+ color: black;
+}
+.CodeMirror-guttermarker-subtle {
+ color: #999;
+}
+/* CURSOR */
+.CodeMirror-cursor {
+ border-left: 1px solid black;
+ border-right: none;
+ width: 0;
+}
+/* Shown when moving in bi-directional text */
+.CodeMirror div.CodeMirror-secondarycursor {
+ border-left: 1px solid silver;
+}
+.cm-fat-cursor .CodeMirror-cursor {
+ width: auto;
+ border: 0 !important;
+ background: #7e7;
+}
+.cm-fat-cursor div.CodeMirror-cursors {
+ z-index: 1;
+}
+.cm-fat-cursor-mark {
+ background-color: rgba(20, 255, 20, 0.5);
+ animation: blink 1.06s steps(1) infinite;
+}
+.cm-animate-fat-cursor {
+ width: auto;
+ border: 0;
+ animation: blink 1.06s steps(1) infinite;
+ background-color: #7e7;
+}
+@keyframes blink {
+ 50% {
+ background-color: transparent;
+ }
+}
+.cm-tab {
+ display: inline-block;
+ text-decoration: inherit;
+}
+.CodeMirror-rulers {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: -50px;
+ bottom: 0;
+ overflow: hidden;
+}
+.CodeMirror-ruler {
+ border-left: 1px solid #ccc;
+ top: 0;
+ bottom: 0;
+ position: absolute;
+}
+/* DEFAULT THEME */
+.cm-s-default .cm-header {
+ color: blue;
+}
+.cm-s-default .cm-quote {
+ color: #090;
+}
+.cm-negative {
+ color: #d44;
+}
+.cm-positive {
+ color: #292;
+}
+.cm-header,
+.cm-strong {
+ font-weight: bold;
+}
+.cm-em {
+ font-style: italic;
+}
+.cm-link {
+ text-decoration: underline;
+}
+.cm-strikethrough {
+ text-decoration: line-through;
+}
+.cm-s-default .cm-keyword {
+ color: #708;
+}
+.cm-s-default .cm-atom {
+ color: #219;
+}
+.cm-s-default .cm-number {
+ color: #164;
+}
+.cm-s-default .cm-def {
+ color: #00f;
+}
+.cm-s-default .cm-variable-2 {
+ color: #05a;
+}
+.cm-s-default .cm-variable-3,
+.cm-s-default .cm-type {
+ color: #085;
+}
+.cm-s-default .cm-comment {
+ color: #a50;
+}
+.cm-s-default .cm-string {
+ color: #a11;
+}
+.cm-s-default .cm-string-2 {
+ color: #f50;
+}
+.cm-s-default .cm-meta {
+ color: #555;
+}
+.cm-s-default .cm-qualifier {
+ color: #555;
+}
+.cm-s-default .cm-builtin {
+ color: #30a;
+}
+.cm-s-default .cm-bracket {
+ color: #997;
+}
+.cm-s-default .cm-tag {
+ color: #170;
+}
+.cm-s-default .cm-attribute {
+ color: #00c;
+}
+.cm-s-default .cm-hr {
+ color: #999;
+}
+.cm-s-default .cm-link {
+ color: #00c;
+}
+.cm-s-default .cm-error {
+ color: #f00;
+}
+.cm-invalidchar {
+ color: #f00;
+}
+.CodeMirror-composing {
+ border-bottom: 2px solid;
+}
+/* Default styles for common addons */
+div.CodeMirror span.CodeMirror-matchingbracket {
+ color: #0b0;
+}
+div.CodeMirror span.CodeMirror-nonmatchingbracket {
+ color: #a22;
+}
+.CodeMirror-matchingtag {
+ background: rgba(255, 150, 0, 0.3);
+}
+.CodeMirror-activeline-background {
+ background: #e8f2ff;
+}
+/* STOP */
+/* The rest of this file contains styles related to the mechanics of
+ the editor. You probably shouldn't touch them. */
+.CodeMirror {
+ position: relative;
+ overflow: hidden;
+ background: white;
+}
+.CodeMirror-scroll {
+ overflow: scroll !important;
+ /* Things will break if this is overridden */
+ /* 50px is the magic margin used to hide the element's real scrollbars */
+ /* See overflow: hidden in .CodeMirror */
+ margin-bottom: -50px;
+ margin-right: -50px;
+ padding-bottom: 50px;
+ height: 100%;
+ outline: none;
+ /* Prevent dragging from highlighting the element */
+ position: relative;
+}
+.CodeMirror-sizer {
+ position: relative;
+ border-right: 50px solid transparent;
+}
+/* The fake, visible scrollbars. Used to force redraw during scrolling
+ before actual scrolling happens, thus preventing shaking and
+ flickering artifacts. */
+.CodeMirror-vscrollbar,
+.CodeMirror-hscrollbar,
+.CodeMirror-scrollbar-filler,
+.CodeMirror-gutter-filler {
+ position: absolute;
+ z-index: 6;
+ display: none;
+}
+.CodeMirror-vscrollbar {
+ right: 0;
+ top: 0;
+ overflow-x: hidden;
+ overflow-y: scroll;
+}
+.CodeMirror-hscrollbar {
+ bottom: 0;
+ left: 0;
+ overflow-y: hidden;
+ overflow-x: scroll;
+}
+.CodeMirror-scrollbar-filler {
+ right: 0;
+ bottom: 0;
+}
+.CodeMirror-gutter-filler {
+ left: 0;
+ bottom: 0;
+}
+.CodeMirror-gutters {
+ position: absolute;
+ left: 0;
+ top: 0;
+ min-height: 100%;
+ z-index: 3;
+}
+.CodeMirror-gutter {
+ white-space: normal;
+ height: 100%;
+ display: inline-block;
+ vertical-align: top;
+ margin-bottom: -50px;
+}
+.CodeMirror-gutter-wrapper {
+ position: absolute;
+ z-index: 4;
+ background: none !important;
+ border: none !important;
+}
+.CodeMirror-gutter-background {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ z-index: 4;
+}
+.CodeMirror-gutter-elt {
+ position: absolute;
+ cursor: default;
+ z-index: 4;
+}
+.CodeMirror-gutter-wrapper ::selection {
+ background-color: transparent;
+}
+.CodeMirror-gutter-wrapper ::-moz-selection {
+ background-color: transparent;
+}
+.CodeMirror-lines {
+ cursor: text;
+ min-height: 1px;
+ /* prevents collapsing before first draw */
+}
+.CodeMirror pre.CodeMirror-line,
+.CodeMirror pre.CodeMirror-line-like {
+ /* Reset some styles that the rest of the page might have set */
+ border-radius: 0;
+ border-width: 0;
+ background: transparent;
+ font-family: inherit;
+ font-size: inherit;
+ margin: 0;
+ white-space: pre;
+ word-wrap: normal;
+ line-height: inherit;
+ color: inherit;
+ z-index: 2;
+ position: relative;
+ overflow: visible;
+ -webkit-tap-highlight-color: transparent;
+ -webkit-font-variant-ligatures: contextual;
+ font-feature-settings: "calt";
+ font-variant-ligatures: contextual;
+}
+.CodeMirror-wrap pre.CodeMirror-line,
+.CodeMirror-wrap pre.CodeMirror-line-like {
+ word-wrap: break-word;
+ white-space: pre-wrap;
+ word-break: normal;
+}
+.CodeMirror-linebackground {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 0;
+}
+.CodeMirror-linewidget {
+ position: relative;
+ z-index: 2;
+ padding: 0.1px;
+ /* Force widget margins to stay inside of the container */
+}
+.CodeMirror-rtl pre {
+ direction: rtl;
+}
+.CodeMirror-code {
+ outline: none;
+}
+/* Force content-box sizing for the elements where we expect it */
+.CodeMirror-scroll,
+.CodeMirror-sizer,
+.CodeMirror-gutter,
+.CodeMirror-gutters,
+.CodeMirror-linenumber {
+ box-sizing: content-box;
+}
+.CodeMirror-measure {
+ position: absolute;
+ width: 100%;
+ height: 0;
+ overflow: hidden;
+ visibility: hidden;
+}
+.CodeMirror-cursor {
+ position: absolute;
+ pointer-events: none;
+}
+.CodeMirror-measure pre {
+ position: static;
+}
+div.CodeMirror-cursors {
+ visibility: hidden;
+ position: relative;
+ z-index: 3;
+}
+div.CodeMirror-dragcursors {
+ visibility: visible;
+}
+.CodeMirror-focused div.CodeMirror-cursors {
+ visibility: visible;
+}
+.CodeMirror-selected {
+ background: #d9d9d9;
+}
+.CodeMirror-focused .CodeMirror-selected {
+ background: #d7d4f0;
+}
+.CodeMirror-crosshair {
+ cursor: crosshair;
+}
+.CodeMirror-line::selection,
+.CodeMirror-line > span::selection,
+.CodeMirror-line > span > span::selection {
+ background: #d7d4f0;
+}
+.CodeMirror-line::-moz-selection,
+.CodeMirror-line > span::-moz-selection,
+.CodeMirror-line > span > span::-moz-selection {
+ background: #d7d4f0;
+}
+.cm-searching {
+ background-color: #ffa;
+ background-color: rgba(255, 255, 0, 0.4);
+}
+/* Used to force a border model for a node */
+.cm-force-border {
+ padding-right: 0.1px;
+}
+@media print {
+ /* Hide the cursor when printing */
+ .CodeMirror div.CodeMirror-cursors {
+ visibility: hidden;
+ }
+}
+/* See issue #2901 */
+.cm-tab-wrap-hack:after {
+ content: '';
+}
+/* Help users use markselection to safely style text background */
+span.CodeMirror-selectedtext {
+ background: none;
+}
+.CodeMirror-sizer {
+ padding-top: 10px;
+ padding-bottom: 10px !important;
+}
+.CodeMirror-empty.CodeMirror-focused {
+ outline: none;
+}
+.CodeMirror pre.CodeMirror-placeholder {
+ color: #999;
+}
+.CodeMirror {
+ position: relative;
+ overflow: hidden;
+ background: white;
+ word-break: break-word;
+}
+.CodeMirror pre.CodeMirror-line,
+.CodeMirror pre.CodeMirror-line-like {
+ word-wrap: break-word;
+ word-break: break-word;
+ white-space: pre-wrap;
+ line-height: 1.6;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./src/components/markdown-editor/toolbar/index.less ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.markdown-toolbar-container {
+ display: flex;
+ flex-flow: row wrap;
+ align-items: center;
+ padding: 0 5px;
+ margin: 0;
+ position: relative;
+ list-style: none;
+ background: #fff;
+ border-bottom: 1px solid #ccc;
+ box-sizing: border-box;
+ line-height: 20px;
+ width: 100%;
+ min-height: 30px;
+}
+.markdown-toolbar-container .fill-tip {
+ cursor: pointer;
+ font-size: 12px;
+ display: inline-block;
+ padding: 5px;
+ border: 1px solid #E99237;
+ border-radius: 5px;
+ box-sizing: border-box;
+ line-height: 16px;
+ height: auto;
+ color: #A65500;
+ background-color: #FFF1E2;
+ position: relative;
+ margin-left: 10px;
+}
+.markdown-toolbar-container .fill-tip::before {
+ content: ' ';
+ width: 0;
+ height: 0;
+ border-top: 6px solid transparent;
+ border-bottom: 6px solid transparent;
+ border-right: 6px solid #FFF1E2;
+ position: absolute;
+ left: -6px;
+ top: 6px;
+ z-index: 10;
+}
+.markdown-toolbar-container .fill-tip::after {
+ content: ' ';
+ width: 0;
+ height: 0;
+ border-top: 6px solid transparent;
+ border-bottom: 6px solid transparent;
+ border-right: 6px solid #E99237;
+ position: absolute;
+ left: -7px;
+ top: 6px;
+}
+.markdown-toolbar-container li {
+ color: #666;
+ padding: 0 1px;
+ height: 100%;
+ display: flex;
+ height: 38px;
+ flex-flow: column nowrap;
+ justify-content: center;
+}
+.markdown-toolbar-container a,
+.markdown-toolbar-container span {
+ display: block;
+}
+.markdown-toolbar-container a {
+ width: 28px;
+ color: #666;
+ cursor: pointer;
+ text-align: center;
+ font-size: 18px;
+}
+.markdown-toolbar-container .btn-null {
+ width: auto;
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+}
+.markdown-toolbar-container .insert-blank {
+ color: #E99237;
+ font-size: 18px;
+}
+.markdown-toolbar-container span.v-line {
+ margin: 0 5px;
+ height: 65%;
+ border-right: 1px solid #ccc;
+}
+.mini .markdown-toolbar-container li {
+ height: 28px;
+}
+.editor-resize {
+ display: block;
+ width: 120px;
+ height: 4px;
+ left: 54%;
+ margin-top: 2px;
+ border-top: 1px solid #ccc;
+ border-bottom: 1px solid #ccc;
+ cursor: row-resize;
+ white-space: nowrap;
+ overflow: hidden;
+ text-transform: capitalize;
+ box-sizing: border-box;
+ margin: 0 auto;
+}
+.btn-full-screen {
+ position: absolute;
+ right: 5px;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!****************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[2]!./src/components/markdown-editor/css/iconfont.css ***!
+ \****************************************************************************************************************************************************************************************************************************************************/
+@font-face {
+ font-family: "md-iconfont";
+ src: url(./static/iconfont.498a2e20.eot);
+ /* IE9 */
+ src: url(./static/iconfont.498a2e20.eot#iefix) format('embedded-opentype'),
+ /* IE6-IE8 */
+ url(data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAArkAAsAAAAAFGQAAAqUAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCFTgqYEJMCATYCJANMCygABCAFhG0HgUwb5hCjooZyUthkf4mpyEh3pV0O3eNzjDeMPcxWAACWBR8hkIIUVSIBAABgBAAACrx/wAkAfPHw39iv+2bmqzZUIt1PJ5FJeCMRibbSgsVNdRP+A23z391RKZiNY99ZzVmNklbCKpCtz0WxCnCVhUtkySLj37772YjcCVNhPk1OHZFC37UprJD/0ozsDfr3lrQ9Ja2fjpzpmcEJypq3QpVe3mEqOf/v+doc8Dx9AQTUAMH8r7l6h4jEycc0pD1SorTNT/f4+MQxO0wsRBKPkEy8VKiUQkiNRAgFe/ZbMVsJqPuMwq6/O48n0DSrO+To+fNnsFBwIlDuxls5WHgSlBjXUJdXFduW9T9hiXp6QK0GftDXx6ftOkkl4yc6PnvSg9sX5F9YZK7lf7DLU+CyExnbQCFelKr/MLbwbSKbKubEL8C8+KkUXjBVS7qLlkVFb9ncJpntxd2Xna/ekiQvSGwMutYjdpgXxBuyGejDtFUlNc1R+S9PV0tPERo6BpxAVHGyfbR8yxuCF0QLoQ9eUCDzArVfFA0EogJBSEd1B1QDFQ2oCSoLUAWUClAdlA5QF5QeUAvUMoTQ49UNKkRJAAUoG6AGqLsIocNbZwgD8P5WaYiTI2ObVWDfIP8FUH4B6GfCk1BkoQkNRVUCH5pC4eygwLuuu+XmIXB2jvFmcAXLmYJqni3c1sPfw8QoEHgwJsKwODyKoOr8CI/D4QnXuLpRnSqZzvUuVSLdXrMmWVlh7pdqFWyeZ6zbaj5Ea9VLbFFqJyuBbiHz/aXdwxv1o+qp6jZLs1AoqRHINuoHKJHgGlMq1FfO6n7nwbByXhAmPX0mB8QGO11d2a6eq73I/Or36dQNtU+OwzR+ZOhIvG9PavecX/p9136p84XxwOvWiBPqlOFByvvvoYHx+0JjX16+64EsGBw0NqsGsL2dB1a3LWieWdtgu+WlDNp1MF9ltnZPtbPEY8rCiCkoSnZWNZgOJAAl+ocR4Jr4TUSwy+pyq13sImw2Fj1QBDqoHIWVps9Oe6/70Jfl40V7rnnTFmeGL+2vXqcfP4VVab9hukZcxUCnDA32Jtjd74Pq5fqv/DUTv8a31K6dFFOXnYveQGKctVFs8p4EALG+V11C2k2eplEv6t7hrB6No5sL92F7AoDl8P79bJMbOAhN9S6f7YaoS6zTe9h2X22CMIMRuZ79KYSPUz0yAEJ8rmdkLSCsDbKUZm/XaCgZ/3VkwnSMp/9a/65inE4Uu2wpyvFCFYvarGxSdRFKJeNT4ujk1MPfe6Bfa1ePW1WWCVy3bmr1ko7JRynl544qLhwru3hEfhUBCxEIWwnsFpJobe+0dMS615o7jFByxzl6MRW7yD3AFsV0zZqSm1WJkK0FPjJifKsACpFsbVi3qVmD1bvqe9PTYcIIhActzTk/QMnRVdY0Pb7j2XG36f9tN8ut1oJNWexSlW9qSnbtoj2Ard40hheK/stt/Ut2NZuOWH0LFR+pyhrW/Vxd1qxBZumxWhaUbCWixxf57PaZp/zogTpeVQvYYzYAIWZjZfY6MnRB4WtX8Aed+pB7/b920mRPncmHsN1D1a0tBKlHMLW3enfGi7YkG8vfl/elLiUsZCidC5YNWzGlcQO4+sZRlCD0gOaxhQuu5niOdslx9TOub171Par2oocFG4Lp6Efmzzdh8x4Fmt4mtuL9IqxYM+Ww9DDlA5vzL9RB+0Cnf5QfkjxvFh0Ku4SFzC9xSN7TGR9dDnc77NLX2BcsxR5+++YIORTi+PXrvnhD6AZxIVtIpBJbJBafL5XKCMLFsbeeYvQwsW3yr18PRB2SDrRQvBH+Gz0sYA7hLhRtkTDn2PMl/Hr3WF2tQ427l4pUI6p77tAqMvhyjeI2X55BNI96ULb6taXwatu97E+KgDtTZr3ZmPRlSMDqgBUpYRjf7nxyxUYLPcLf8/goevBIapk4t6AXcyBfkRW7zEmZM4DBml3Hd+uXLkxnC0og1FvPgqhH9w7Gx2ZVG8NnzHROmMuTfZTxxiU6r9tenVmYoC7PjMYMbn3ciwIq5X7d0luk6eUBmmkpD2OVcT2khWWhUf48X6daKAACJ1QMnKGijbLmjgGJxOJh0etlsihEQZaLWeHhcZ6Qpy0BYgwnlkfHRS83RuUx2vVrddavPzeL2UjMzhXIDzlv4wpngWYETXAQTxzbwZMJtotbI/6nGtXvUt3DfgUhXHdJfxXbgTlYk5iXtCboggWuk4QGQUuap1DGQ/jL3SjM/aGRVn4x+57YwSaYl5hUwYGyXTNRJMgLqHcRVSEtRXJrUenECVrthIm6Jp2hybBzZ2Aqn3sjR1ahzc4WBlZBr5CqspB5g+tCFuVky4pKrUXy50ylRVZ5UbYD6mIPbNY0aXJyIC5QevaqkXue2+Zznuqd5U7qWmd1OOQ8+RUaLa7V4JoKxtQYP37AP8Rq6O/2GaPk0/XjPIKEsI4FkYN50bGZeSPH5cUkxF6MrBzA8OErS+uGfeN0hu/al9DB82E3DBQkDkyExEAkSDxZtF88KSIowojtR4cW2h9YHkRrg4URLh63c1sgZtDws9MLKG2UcSnTz+OlSxDDszwVkDJP0QvX6GjwSWYVeVOG9O6N6FjZWYBGzmKp8rw8KlFR4XTdw8Ko2tvAmLrB6NJ5rIHXVsx509enr2J52LGDiBwKRLrSeRWD721sVqUYVNuXzAvODPp3at2cYY3DJeb8udMPDz4sqDhlkW94SGlunIZ/WOLLCpszsK7GPypJL5XLpfokwCEtvfpI0RGZ7G7RXZJkVY8dOzjgPMvBkh/W9cPNQuGEic+XLYO4jMPr1ik7mxf//sz0Vl+z2QNLwPGr2MaIq/iQZ3iiyFLysoJUx7hBvXVEhWRhQai0ksJtOOvSxyixBtNubwhcuzfC9qpSrsxhzHqYBeeFYRT5EADZ7n9sNLGWuoapWKMrCDaWYcjB6BPgRuweJZFFgSKxcBGMACAn+o0NB8ueN2FS1vKAnbLu5AIskPURO4ahfGPhPAwn/wJKQY+T/5dtjuLHy0DTIUFI9i7LQeme1K11/JRvDPZ/nIy7ezlLKI38Sxry5QADiqsRsC+BVIhB/sre0mOiiPIUaT1TnSEkGd8MBOVpgfzfKyqZI+rKVDg7oSkGsR/RDd2vn56kFu/G6IkDkpoZkNUto8VyG1S07ICqul3QtCV355aRQcaiNLBpAgOhbxtIuv7hWWXZiRdYOkDF1DusCscZNJ3EzT5bVl+uHggkgxb7q/AKs5HJvDLLf4E9RkkH6Wm1P6DiMYuubr8FL5CBytignOyW2QhDmMQzWwdiRNETHkBx7ZDf75rG3DasFabByiECJDYCa0Kja/SeFJSZ6dkq8PlfgHUUSRTT7Cv6H0AKP3chUriIFOgLmVM125aqg51YW0MOCkNo2QQli845KkAUuUgYoF7qACisps+R3dvpceiuNS1Z10+n5U9afC3yrUdT5ChRiWrUoh6Nv2UXakcnutGL/sHh0THarSOfwxzy5D2yhYlCDTPPMno12WPU894rPhJMk8/HskLSQFX0hScxi8EgpWmfvDlm5UFAe56y3EcYl2MawxWWGrMqURY3m3qsoNjS+AhVRfGDAQAAAA==) format('woff2'),
+ url(./static/iconfont.09806494.woff) format('woff'),
+ url(./static/iconfont.f5a4e17c.ttf) format('truetype'),
+ /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
+ url(./static/iconfont.c0c6fa27.svg#iconfont) format('svg');
+ /* iOS 4.1- */
+}
+
+.md-iconfont {
+ font-family: "md-iconfont" !important;
+ font-size: 16px;
+ font-style: normal;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.icon-shrink:before {
+ content: "\e728";
+}
+
+.icon-enlarge:before {
+ content: "\e623";
+}
+
+.icon-code:before {
+ content: "\e602";
+}
+
+.icon-italic:before {
+ content: "\e718";
+}
+
+.icon-bold:before {
+ content: "\e644";
+}
+
+.icon-picture:before {
+ content: "\e606";
+}
+
+.icon-minus:before {
+ content: "\e62c";
+}
+
+.icon-order-list:before {
+ content: "\e655";
+}
+
+.icon-link:before {
+ content: "\e7d4";
+}
+
+.icon-formula:before {
+ content: "\e633";
+}
+
+.icon-unorder-list:before {
+ content: "\e668";
+}
+
+.icon-edit:before {
+ content: "\e603";
+}
+
+.icon-table:before {
+ content: "\e7db";
+}
+
+.icon-sum:before {
+ content: "\e667";
+}
+
+.icon-eye:before {
+ content: "\e69f";
+}
+
+.icon-eye-slash:before {
+ content: "\e601";
+}
+
+.icon-eraser:before {
+ content: "\e8cd";
+}
+
+.icon-file-code:before {
+ content: "\e9ec";
+}
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./src/components/markdown-editor/upload-image/index.less ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.upload-button {
+ width: 120px;
+ height: 32px;
+ display: block;
+ position: relative;
+ color: #0152d9;
+}
+.upload-button input {
+ opacity: 0;
+ width: 160px;
+ height: 32px;
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/index.less?modules ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___fo_3c {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___G46CO {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___br3Kr {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___Xdo94 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___Bcnmr {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.wrp___TY7QJ {
+ width: 1200px;
+ margin: 0 auto;
+}
+.bg___xiaSy {
+ background: #fafafa;
+}
+.commonimg___a4R0Q {
+ width: 93px;
+ position: absolute;
+ right: -5px;
+ top: 10px;
+}
+.titlesize___Wdd_a {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ overflow: hidden;
+ max-height: 100px;
+ font-size: 25px;
+ font-weight: 400;
+ color: #05101a;
+ line-height: 30px;
+}
+.timesize___OkfYO {
+ font-size: 16px;
+ color: #000;
+}
+.flex1___N6paY {
+ flex: 1 1;
+}
+.buttonsize___syL9V {
+ height: 50px;
+ background: #4cacff;
+ border-radius: 4px;
+ font-size: 24px;
+ width: 156px;
+ border-radius: 25px !important;
+ font-weight: 500;
+}
+.myteam___RTWAt {
+ display: flex;
+ justify-content: flex-end;
+ cursor: pointer;
+ color: #4badff;
+ margin-top: 20px;
+}
+.bootmdetail___taUGk {
+ display: flex;
+ margin-top: 20px;
+ margin-bottom: 20px;
+}
+.flex6___RuzJ4 {
+ flex: 6 1;
+ background: #fff !important;
+ padding: 40px;
+ box-shadow: 3px 2px 12px 2px rgba(0, 0, 0, 0.05);
+ border: 1px solid #efefef;
+ margin-left: 30px;
+ width: 400px;
+ overflow: hidden;
+}
+.menuItem___Kww4S {
+ height: 80px !important;
+ font-size: 18px;
+ display: flex;
+ align-items: center;
+}
+.spanprev___Cssg_ {
+ position: absolute;
+ top: 65px;
+ left: -55px;
+ background: rgba(0, 0, 0, 0.15);
+ border-radius: 50%;
+ width: 40px;
+ height: 40px;
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+}
+.spannext___jVFGE {
+ position: absolute;
+ top: 65px;
+ right: -55px;
+ width: 40px;
+ height: 40px;
+ display: flex;
+ align-items: center;
+ border-radius: 50%;
+ background: #4badff;
+ cursor: pointer;
+}
+.divwidth___r5hE3 {
+ display: flex;
+ justify-content: end;
+ text-align: -webkit-center;
+}
+.divwidth___r5hE3 img {
+ height: 155px;
+ border-radius: 10px 10px 0px 0px;
+ width: 272px;
+}
+.receiveclick___BauOs {
+ width: 272px;
+ height: 52px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border: 1px solid #0152d9;
+ border-radius: 0px 0px 10px 10px;
+ cursor: pointer;
+ color: #0152d9;
+ font-size: 16px;
+}
+.receivealready___Z7Wo0 {
+ width: 272px;
+ height: 52px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border: 1px solid #eeeeee;
+ border-radius: 0px 0px 10px 10px;
+ cursor: not-allowed;
+ color: #888888;
+ font-size: 16px;
+}
+.bkfff___lHrcJ.ant-input___m4bn_ {
+ background-color: #ffffff !important;
+ background: #ffffff !important;
+}
+.onediv___xzZRa {
+ width: 233px;
+ height: 298px;
+ background: #fafafa;
+ box-shadow: 0 2px 8px 2px rgba(255, 134, 34, 0.5);
+ border-radius: 5px;
+}
+.onediv___xzZRa .onetop___M4GfM {
+ width: 233px;
+ height: 167px;
+ background: #ffe7a0;
+ position: relative;
+}
+.onediv___xzZRa div[class='ant-card-head'] {
+ padding: 0px !important;
+}
+.onediv___xzZRa div[class='ant-card-head-title'] {
+ padding: 0px !important;
+}
+.onediv___xzZRa p {
+ margin-bottom: 0px !important;
+}
+.towdiv___yj3ds {
+ width: 234px;
+ height: 298px;
+ background: #fafafa;
+ border-radius: 5px;
+ box-shadow: 1px 4px 5px 0 #c8c8ca;
+}
+.towdiv___yj3ds .towtop___veKa4 {
+ width: 234px;
+ height: 167px;
+ background: #dfdfe1;
+ position: relative;
+}
+.towdiv___yj3ds div[class='ant-card-head'] {
+ padding: 0px !important;
+}
+.towdiv___yj3ds div[class='ant-card-head-title'] {
+ padding: 0px !important;
+}
+.towdiv___yj3ds p {
+ margin-bottom: 0px !important;
+}
+.threediv___Ztz0D {
+ width: 234px;
+ height: 298px;
+ background: #fafafa;
+ border-radius: 5px;
+ box-shadow: 1px 3px 5px 0 #febe9a;
+}
+.threediv___Ztz0D .threetop___zDXIg {
+ width: 234px;
+ height: 167px;
+ background: #fde6d9;
+ position: relative;
+}
+.threediv___Ztz0D div[class='ant-card-head'] {
+ padding: 0px !important;
+}
+.threediv___Ztz0D div[class='ant-card-head-title'] {
+ padding: 0px !important;
+}
+.threediv___Ztz0D p {
+ margin-bottom: 0px !important;
+}
+.imgradius___r4uGN {
+ width: 60px;
+ height: 60px;
+ border-radius: 50% !important;
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
+ border: 2px solid #459be5;
+}
+.prize___YNRD4 {
+ position: absolute;
+ left: 78px;
+ bottom: 40px;
+ color: white;
+ background: #459be5;
+ border-radius: 10px;
+ font-size: 12px;
+ height: 20px;
+ line-height: 20px;
+ width: 80px;
+}
+.spanrightradius___tC6T5 {
+ position: absolute;
+ color: white;
+ left: -10px;
+ bottom: -10px;
+ text-align: center;
+ background: #459be5;
+ border-radius: 0px 10px 10px 0px;
+ font-size: 12px;
+ height: 20px;
+ line-height: 20px;
+ width: 100px;
+}
+.bottomItem___CHcMJ {
+ display: flex;
+ align-items: center;
+ height: 85px;
+ margin-top: 20px;
+ border-bottom: 1px solid #efefef;
+}
+.bottomItem___CHcMJ:hover {
+ display: flex;
+ align-items: center;
+ height: 85px;
+ margin-top: 20px;
+ background: #e9f7fe;
+ border-bottom: 1px solid #efefef;
+}
+.myTeam___fm7KX {
+ display: flex;
+ align-items: center;
+ height: 85px;
+ margin-top: 20px;
+ padding: 0px 10px;
+ background: #e9f7fe;
+ border-bottom: 1px solid #efefef;
+}
+.downloadpdf___a2NuA {
+ max-width: 791px;
+ height: 40px;
+ background: #FFF5E7;
+ color: #E99237;
+ line-height: 40px;
+ padding-left: 20px;
+}
+.pdfBut___Drr6h {
+ height: 32px;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 4px;
+ border-color: #BACFFE;
+ color: #3061D0;
+}
+.PerfectBut___wEhjV {
+ height: 28px;
+ box-shadow: 0px 0px 2px 0px #E8EFFB;
+ border-radius: 14px;
+ border-color: #C8D2EA;
+ color: #3061D0;
+}
+.PerfectCent___HD3Id {
+ padding: 30px 0;
+ border-bottom: 1px solid #F1F1F1;
+ margin-bottom: 30px;
+}
+.PerfectCent___HD3Id .PerfectCentName___smdJX {
+ width: 56px;
+ text-align: right;
+}
+.teamItem___mx2f3 {
+ display: flex;
+ height: 50px;
+ align-items: center;
+ margin-bottom: 0px !important;
+}
+.teamItem___mx2f3:hover {
+ display: flex;
+ height: 50px;
+ background: #e9f7fe;
+ align-items: center;
+ margin-bottom: 0px !important;
+}
+.dash___l6QH1 {
+ position: relative;
+ width: 45px;
+ display: inline-block;
+ margin: 0 5px;
+}
+.dash___l6QH1::after {
+ content: ' ';
+ position: absolute;
+ top: -9px;
+ left: 0;
+ right: 0;
+ height: 3px;
+ background: #333;
+}
+.modal___yXh2H {
+ display: flex;
+ flex-direction: column;
+ justify-content: start;
+ align-items: center;
+}
+.modal___yXh2H div {
+ width: 527px;
+}
+.modal___yXh2H div:nth-child(1) {
+ font-size: 22px;
+ font-weight: bold;
+ color: #333333;
+ line-height: 22px;
+ margin-bottom: 14px;
+ text-align: center;
+ margin-top: 20px;
+}
+.modal___yXh2H div:nth-child(2) {
+ font-size: 18px;
+ font-weight: 500;
+ color: #333333;
+ text-align: center;
+ margin-bottom: 40px;
+}
+.modal___yXh2H div:nth-child(3),
+.modal___yXh2H div:nth-child(4),
+.modal___yXh2H div:nth-child(5) {
+ font-size: 16px;
+ font-weight: 400;
+ color: #3a3a3a;
+ line-height: 24px;
+ margin-bottom: 30px;
+}
+.modal___yXh2H div:nth-child(6) {
+ font-size: 16px;
+ font-weight: 500;
+ color: #3a3a3a;
+ text-align: center;
+ margin-top: 20px;
+ margin-bottom: 40px;
+}
+.modal___yXh2H button {
+ width: 156px;
+ height: 40px;
+ background: #0152d9;
+ border-radius: 4px;
+ font-size: 16px;
+ font-weight: 400;
+ color: #ffffff;
+ margin-bottom: 10px;
+}
+.maskText___Tdh6h {
+ position: absolute;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ height: 40px;
+ background: linear-gradient(to bottom, #FFFFFF00, #ffffff);
+ z-index: 1;
+}
+.box___K2uQ4 {
+ border-bottom: 1px solid #E3EFFC;
+ border-radius: 2px;
+ margin: 20px 20px 20px 0;
+ padding-bottom: 20px;
+}
+.box___K2uQ4:last-child {
+ border-bottom: none;
+}
+.open_style___gLTB9 {
+ text-align: center;
+ color: #9096A3;
+ cursor: pointer;
+ margin-top: 10px;
+ font-size: 12px;
+}
+.open_style___gLTB9:hover {
+ color: #165DFF;
+}
+.title_style___j6zvN {
+ max-width: 260px;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/component/index.less?modules ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.modal___A9Ovz div[class~='ant-modal-body'] {
+ height: 500px;
+ overflow-y: auto;
+}
+.modal___A9Ovz div[class~='ant-modal-header'] {
+ padding: 0;
+}
+.colorBlue___XSmR5 {
+ color: #0152d9;
+}
+.formWrap___wRvaA div[class~='ant-form-item-label'] {
+ width: 85px;
+ text-align: right;
+}
+.formWrap___wRvaA span[class~='ant-upload-btn'] {
+ padding: 0px !important;
+}
+.flexRow___C40dc {
+ display: flex;
+ flex-direction: row;
+}
+.flexColumn___LkZfj {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+.example___bz7Hw p {
+ margin: 0px;
+}
+.exampleImg___gNkC_ {
+ width: 160px;
+ height: 110px;
+ background: #f0f0f0;
+ border: 1px solid #dadada;
+ border-radius: 4px;
+ padding: 0px 5px;
+ justify-content: center;
+ align-items: center;
+ display: flex;
+}
+.colorOrange___Ka6zf {
+ color: #ff6800;
+}
+.uploader___plQRr p {
+ margin: 0px;
+}
+.uploadImg___cjOpL {
+ height: 110px;
+ width: 162px;
+}
+.imageTip___p1_lZ {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-between;
+ height: 110px;
+ width: 162px;
+ padding: 20px 0;
+}
+.uploadTipIcon___SpsS2 {
+ color: #4b667f;
+ cursor: pointer;
+ font-size: 18px;
+}
+.uploadTip___e9JlL {
+ font-size: 16px;
+ color: #05101a;
+}
+.color05101a___CDEUv {
+ color: #05101a;
+}
+.viewLargerImg___IclRX {
+ border-bottom: 1px solid #ff6800;
+ color: #ee4a1f;
+ font-size: 14px;
+}
+.footerWrap___beWC6 div[class~='ant-form-item-control'] {
+ max-width: 100%;
+}
+.footerWrap___beWC6 div[class~='ant-form-item'] {
+ margin-bottom: 0px;
+}
+.footerWrap___beWC6 div[class~='ant-form-item-control-input-content'] {
+ display: flex;
+ justify-content: flex-end;
+}
+.note___CXi9y {
+ padding: 19px;
+ background: #F6F7F9;
+ margin-top: 20px;
+ color: #656565;
+ font-size: 14px;
+}
+.note___CXi9y p {
+ margin: 0px;
+}
+.schoolHintWrap___Ma6ly {
+ height: 20px;
+ line-height: 20px;
+ font-size: 14px;
+}
+.colorCDCDCD___D0UWo {
+ color: #cdcdcd;
+}
+.color0152d9___hF3Bb {
+ color: #0152d9;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/components/AppplyDepartmentModal/index.less?modules ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flexRow___LQKDI {
+ display: flex;
+ flex-direction: row;
+}
+.flexColumn___NLClE {
+ display: flex;
+ flex-direction: column;
+}
+.formWrap___mGWio {
+ font-size: 14px;
+}
+.formWrap___mGWio div[class~='ant-form-item-label'] label {
+ font-size: 14px;
+ color: #979797;
+}
+.formWrap___mGWio div[class~='ant-form-item-control-input-content'] input {
+ font-size: 14px;
+ height: 40px;
+ line-height: 40px;
+}
+.formWrap___mGWio div[class~='ant-form-item-control-input-content'] textarea {
+ font-size: 14px;
+ height: 40px;
+}
+.example___gPghw {
+ margin-left: 95px;
+ margin-bottom: 10px;
+}
+.footerWrap___qcHQ4 div[class~='ant-form-item-control'] {
+ max-width: 100%;
+}
+.footerWrap___qcHQ4 div[class~='ant-form-item'] {
+ margin-bottom: 0px;
+}
+.footerWrap___qcHQ4 div[class~='ant-form-item-control-input-content'] {
+ display: flex;
+ justify-content: flex-end;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/components/AppplySchoolModal/index.less?modules ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flexRow___jGYtM {
+ display: flex;
+ flex-direction: row;
+}
+.flexColumn___NPMB3 {
+ display: flex;
+ flex-direction: column;
+}
+.formWrap___vwH9N {
+ font-size: 14px;
+}
+.formWrap___vwH9N div[class~='ant-form-item-label'] label {
+ font-size: 14px;
+ color: #979797;
+}
+.formWrap___vwH9N div[class~='ant-form-item-control-input-content'] input {
+ font-size: 14px;
+ height: 40px;
+ line-height: 40px;
+}
+.formWrap___vwH9N div[class~='ant-form-item-control-input-content'] textarea {
+ font-size: 14px;
+ height: 40px;
+}
+.example____BmJC {
+ margin-left: 95px;
+ margin-bottom: 10px;
+}
+.footerWrap___lp1L0 div[class~='ant-form-item-control'] {
+ max-width: 100%;
+}
+.footerWrap___lp1L0 div[class~='ant-form-item'] {
+ margin-bottom: 0px;
+}
+.footerWrap___lp1L0 div[class~='ant-form-item-control-input-content'] {
+ display: flex;
+ justify-content: flex-end;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Detail/AwardPdf.less?modules ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.scoreByBlankRadio____FOPE {
+ background: #F6F7F9;
+ box-shadow: inset 0px 1px 3px 0px #C8D2EA;
+ border-radius: 16px;
+ margin-right: 20px;
+ margin-bottom: 20px;
+}
+.scoreByBlankRadio____FOPE span {
+ font-size: 14px;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper'] {
+ background-color: transparent;
+ border: none;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ height: 32px;
+ color: #9096A3;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper']::before {
+ background-color: transparent;
+ display: none;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked'] {
+ background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ border: 1px solid #C8D2EA;
+ border-radius: 16px;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ color: #165DFF;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:first-child {
+ border-right-color: #C8D2EA;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:focus-within {
+ box-shadow: none;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']::before {
+ background-color: transparent;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover {
+ background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: inset 0px 1px 3px 0px #D7D8D9;
+ border: 1px solid #C8D2EA;
+ border-radius: 16px;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ color: #3061D0;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover:first-child {
+ border-right-color: #C8D2EA;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover:focus-within {
+ box-shadow: none;
+}
+.scoreByBlankRadio____FOPE label[class~='ant-radio-button-wrapper-checked']:hover::before {
+ background-color: transparent;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Ranking/index.less?modules ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___M4JlS {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___ft0RM {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___q2FOd {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___sHMG4 {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column____iI7H {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.bg___k6sPc {
+ max-width: none;
+ border: 1px solid #F1F1F1;
+}
+.bg___k6sPc .title___g14V4 {
+ background: #f6f7f9;
+ height: 50px;
+ font-size: 14px;
+ line-height: 50px;
+ padding: 0px 20px;
+}
+.bg___k6sPc .right___m_DFD {
+ width: 100%;
+}
+.bg___k6sPc .right___m_DFD .left___mwgoj {
+ margin-top: 20px;
+}
+.bg___k6sPc .right___m_DFD .left___mwgoj li[class~='ant-menu-item-selected'] {
+ background: #F6F7F9;
+ color: #165DFF;
+ padding: 0 8px;
+}
+.bg___k6sPc .right___m_DFD .left___mwgoj li[class~='ant-menu-item'] {
+ padding: 0 8px;
+ margin-right: 24px;
+}
+.bg___k6sPc .right___m_DFD .left___mwgoj [class~='ant-menu-horizontal'] [class~='ant-menu-item']::after {
+ border-bottom: none !important;
+ transition: none !important;
+}
+.bg___k6sPc .right___m_DFD .left___mwgoj .muitem___oVuqT {
+ height: 22px;
+ line-height: 22px;
+ font-size: 14px;
+ color: #6A7283;
+}
+.bg___k6sPc .right___m_DFD .left___mwgoj li[class~='ant-menu-item-selected']::after {
+ border-bottom: none;
+}
+.bg___k6sPc .right___m_DFD .left___mwgoj li[class~='ant-menu-item']:hover::after {
+ border-bottom: none !important;
+}
+.bg___k6sPc .searchWrap___VZKxz .search___NaLMi {
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ border-radius: 19px;
+ height: 38px;
+ width: 280px;
+ padding-left: 10px;
+ background-color: #f6f7f9;
+ border: none;
+}
+.bg___k6sPc .searchWrap___VZKxz .search___NaLMi [class~='ant-input-affix-wrapper'] {
+ background-color: #f6f7f9;
+ border: none;
+}
+.bg___k6sPc .searchWrap___VZKxz .search___NaLMi [class~='ant-input-affix-wrapper'] {
+ outline: none !important;
+ border: none !important;
+ box-shadow: none !important;
+}
+.bg___k6sPc .searchWrap___VZKxz .search___NaLMi span[class~='ant-input-group-addon'] {
+ display: none;
+}
+.bg___k6sPc .searchWrap___VZKxz .search___NaLMi .searchIcon___kyXjW {
+ margin-right: 14px;
+ cursor: pointer;
+}
+.bg___k6sPc .searchWrap___VZKxz .search___NaLMi input {
+ background-color: #f6f7f9;
+}
+.bg___k6sPc .button___9r1Cv {
+ cursor: pointer;
+ display: inline-block;
+ line-height: 31px;
+ text-align: center;
+ width: 88px;
+ color: #3061D0;
+ height: 32px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 16px;
+ border: 1px solid #BACFFE;
+}
+.bg___k6sPc .button___9r1Cv:hover {
+ border: 1px #165dff solid;
+ color: #165dff;
+}
+.footer___FeXKb {
+ display: flex;
+ margin: 20px 0;
+}
+.footer___FeXKb .clear_button___tLyhc {
+ margin-left: auto;
+ width: 60px;
+ height: 38px;
+ border-radius: 2px;
+ opacity: 0.9;
+ border: 1px solid #BACFFE;
+ text-align: center;
+ line-height: 38px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #3061D0;
+ margin-right: 30px;
+ cursor: pointer;
+}
+.footer___FeXKb .save_button___jdXaq {
+ width: 116px;
+ height: 38px;
+ line-height: 38px;
+ background: #3061D0;
+ border-radius: 2px;
+ font-size: 14px;
+ text-align: center;
+ font-family: PingFangSC-Semibold, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+ cursor: pointer;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Edit/Team/index.less?modules ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___Ix1yk {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___Nvu1L {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___FcD_R {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___xtV5Z {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___rSUdX {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.bg___Fi0Vv {
+ max-width: none;
+ border: 1px solid #F1F1F1;
+ border-radius: 2px 2px 0 0;
+}
+.bg___Fi0Vv .title___oBAHH {
+ background: #f6f7f9;
+ height: 50px;
+ font-size: 14px;
+ line-height: 50px;
+ padding: 0px 20px;
+ border-radius: 2px 2px 0 0;
+}
+.bg___Fi0Vv .left___x4G2N {
+ max-width: 182px;
+ min-width: 182px;
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 1;
+ overflow: hidden;
+ border-right: 1px solid #F1F1F1;
+ padding-top: 15px;
+}
+.bg___Fi0Vv .left___x4G2N li[class~='ant-menu-item-selected'] {
+ border-right: 3px solid #232B40;
+ background: #f8f8fa;
+ color: #165DFF;
+}
+.bg___Fi0Vv .left___x4G2N .muitem___JmDfB {
+ height: 44px;
+ line-height: 44px;
+ font-size: 14px;
+ color: #5F6367;
+}
+.bg___Fi0Vv .right___RXHwC {
+ width: 100%;
+}
+.searchWrap___yt5Di .search___sA8FE {
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ border-radius: 19px;
+ height: 38px;
+ width: 280px;
+ padding-left: 10px;
+ padding-top: 3px;
+ background-color: #f6f7f9;
+ border: none;
+}
+.searchWrap___yt5Di .search___sA8FE [class~='ant-input-affix-wrapper'] {
+ background-color: #f6f7f9;
+ border: none;
+}
+.searchWrap___yt5Di .search___sA8FE [class~='ant-input-affix-wrapper'] {
+ outline: none !important;
+ border: none !important;
+ box-shadow: none !important;
+}
+.searchWrap___yt5Di .search___sA8FE span[class~='ant-input-group-addon'] {
+ display: none;
+}
+.searchWrap___yt5Di .search___sA8FE .searchIcon___yiKfD {
+ margin-right: 8px;
+ cursor: pointer;
+}
+.searchWrap___yt5Di .search___sA8FE input {
+ background-color: #f6f7f9;
+}
+.button___ZPcVk {
+ cursor: pointer;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ padding: 0px 16px;
+ color: #3061D0;
+ height: 32px;
+ font-size: 14px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 16px;
+ border: 1px solid #BACFFE;
+}
+.button___ZPcVk:hover {
+ border: 1px #165dff solid;
+ color: #165dff;
+}
+.items___wZfml {
+ max-height: 96px;
+ padding: 20px;
+ width: 1160px;
+ border: 1px solid #f6f7f9;
+ display: flex;
+ align-items: center;
+ margin-bottom: 10px;
+}
+.items___wZfml .img___f3zFn {
+ height: 56px;
+ width: 56px;
+ min-width: 56px;
+ border-radius: 50%;
+ background: #4EACFF;
+ font-size: 16px;
+ font-weight: 600;
+ line-height: 56px;
+ color: #FFFFFF;
+ text-align: center;
+}
+.items___wZfml .names___k3ZzZ {
+ margin-left: 18px;
+ color: #000000;
+ width: 30%;
+}
+.items___wZfml .names___k3ZzZ .teamname___or8vu {
+ margin-bottom: 12px;
+ font-weight: 400;
+ color: #000000;
+ font-size: 16px;
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 1;
+ overflow: hidden;
+}
+.items___wZfml .names___k3ZzZ .time___qmAOy {
+ font-size: 14px;
+ font-weight: 400;
+ color: #232B40;
+}
+.items___wZfml .names___k3ZzZ .time___qmAOy .createtime___KKvxc {
+ color: #5F6367;
+ margin-right: 10px;
+}
+.items___wZfml .width30___NxY4W {
+ width: 30%;
+ display: flex;
+ align-items: center;
+}
+.items___wZfml img {
+ height: 56px;
+ width: 56px;
+ border-radius: 50%;
+}
+.items___wZfml .loaderimg___aQ_vt {
+ width: 20px;
+ height: 20px;
+ border-radius: 50%;
+ margin-right: 10px;
+}
+.scoreByBlankRadio___X8rMJ {
+ background: #F6F7F9;
+ box-shadow: inset 0px 1px 3px 0px #C8D2EA;
+ border-radius: 16px;
+ margin-right: 20px;
+ margin-bottom: 20px;
+}
+.scoreByBlankRadio___X8rMJ span {
+ font-size: 14px;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper'] {
+ background-color: transparent;
+ border: none;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ height: 32px;
+ color: #9096A3;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper']::before {
+ background-color: transparent;
+ display: none;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked'] {
+ background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ border: 1px solid #C8D2EA;
+ border-radius: 16px;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ color: #165DFF;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked']:first-child {
+ border-right-color: #C8D2EA;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked']:focus-within {
+ box-shadow: none;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked']::before {
+ background-color: transparent;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked']:hover {
+ background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: inset 0px 1px 3px 0px #D7D8D9;
+ border: 1px solid #C8D2EA;
+ border-radius: 16px;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ color: #3061D0;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked']:hover:first-child {
+ border-right-color: #C8D2EA;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked']:hover:focus-within {
+ box-shadow: none;
+}
+.scoreByBlankRadio___X8rMJ label[class~='ant-radio-button-wrapper-checked']:hover::before {
+ background-color: transparent;
+}
+.scoremodal___jE4qx [class~='ant-modal-body'] {
+ padding: 25px;
+}
+.scoremodal___jE4qx .title___oBAHH {
+ color: #000000;
+ font-size: 16px;
+ font-weight: 500;
+ display: flex;
+ width: 100%;
+}
+.scoremodal___jE4qx .content___wGyD2 {
+ margin-top: 25px;
+}
+.scoremodal___jE4qx .bottom___mdNOm {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal___jE4qx .bottom___mdNOm .yes___hQBiA {
+ padding: 0px 16px;
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-weight: 400;
+ color: #FFFFFF;
+ border: 0px;
+}
+.scoremodal___jE4qx .bottom___mdNOm .no___AOje6 {
+ margin-right: 20px;
+ padding: 0px 16px;
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-weight: 400;
+ color: #464F66;
+ line-height: 14px;
+}
+.scoremodal___jE4qx .bottoms___ogmBQ {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal___jE4qx .bottoms___ogmBQ .yes___hQBiA {
+ padding: 0px 16px;
+ height: 32px;
+ margin-right: 20px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-weight: 400;
+ color: #FFFFFF;
+ border: 0px;
+}
+.scoremodal___jE4qx .bottoms___ogmBQ .no___AOje6 {
+ padding: 0px 16px;
+ color: #3061D0;
+ height: 32px;
+ background: #F6F7F9 linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ border: 1px solid #BACFFE;
+}
+.scoremodal___jE4qx .loaderimg___aQ_vt {
+ width: 28px;
+ height: 28px;
+ border-radius: 50%;
+}
+.drawer_style___aspKt div[class~='ant-drawer-header'] {
+ width: 1200px;
+ margin: 14px auto 0 auto;
+ padding: 11px 0;
+ border-bottom: none;
+}
+.drawer_style___aspKt button[class~='ant-drawer-close'] {
+ position: absolute;
+ right: calc((100% - 1200px)/2);
+ margin-right: 0;
+ font-size: 16px;
+}
+.baseFormItem___L4XPW {
+ height: 46px;
+ font-size: 14px;
+}
+.baseFormItem___L4XPW input[class~='ant-input'] {
+ height: 38px;
+}
+.baseFormItem___L4XPW input[class~='ant-input-number-input'] {
+ height: 46px;
+}
+.baseFormItem___L4XPW div[class~='ant-select-selector'] {
+ height: 46px;
+}
+.baseFormItem___L4XPW div[class~='ant-select-selector'] span[class~='ant-select-selection-item'] {
+ line-height: 46px;
+}
+.baseFormItem___L4XPW div[class~='ant-select-selector'] span[class~='ant-select-selection-placeholder'] {
+ line-height: 46px;
+}
+.baseFormItem___L4XPW span[class~='ant-select-arrow'] {
+ right: 12px;
+}
+.jsinput___IhGOr div[class~='ant-form-item-label'] {
+ margin-bottom: 10px;
+}
+.Spanradius___Phpyg {
+ width: 60px;
+ height: 60px;
+ border-radius: 50%;
+ background: #4dacff;
+ font-size: 16px;
+ line-height: 60px;
+ text-align: center;
+ color: #fff;
+}
+[class=ant-modal-confirm-content] {
+ margin: 30px 0 !important;
+}
+.modal_close___yAd65 .ant-btn-default___HT0Nv {
+ height: 32px;
+ line-height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #464F66;
+}
+.modal_close___yAd65 .ssss___RB5TB {
+ height: 32px;
+ line-height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
diff --git a/p__Competitions__Entered__index.async.js b/p__Competitions__Entered__index.async.js
index 91b310fdb1..673fb9faee 100644
--- a/p__Competitions__Entered__index.async.js
+++ b/p__Competitions__Entered__index.async.js
@@ -808,6 +808,9 @@ function Tips(_ref) {
/* harmony default export */ var TipsModel = (Tips);
// EXTERNAL MODULE: ./src/pages/Competitions/Entered/Enteredmodel/JoinModel.tsx
var JoinModel = __webpack_require__(74195);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/toConsumableArray.js
+var toConsumableArray = __webpack_require__(861);
+var toConsumableArray_default = /*#__PURE__*/__webpack_require__.n(toConsumableArray);
;// CONCATENATED MODULE: ./src/pages/Competitions/Entered/Enteredmodel/TeammemberTItle.tsx
@@ -859,34 +862,12 @@ var popconfirm = __webpack_require__(65360);
-
-
function Teammembers_Teammember(_ref) {
var teamitem = _ref.teamitem,
index = _ref.index,
setTeams = _ref.setTeams,
Teams = _ref.Teams,
setLoaderid = _ref.setLoaderid;
- var menuitem = function menuitem() {
- return /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default */.Z, {
- onClick: function onClick() {
- setleader();
- },
- children: /*#__PURE__*/(0,jsx_runtime.jsx)(menu/* default.Item */.Z.Item, {
- children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
- children: [/*#__PURE__*/(0,jsx_runtime.jsx)("a", {
- children: "\u8BBE\u7F6E\u4E3A\u961F\u957F"
- }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
- children: "\u6743\u9650\uFF1A"
- }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
- children: "\u7F16\u8F91\u6218\u961F\u3001\u8BBE\u7F6E\u6218\u961F\u6210\u5458\u3001 "
- }), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
- children: "\u8F6C\u79FB\u961F\u957F\u3001\u5220\u9664\u6218\u961F"
- })]
- })
- }, "0")
- });
- };
function setleader() {
var data = Teams;
var leaderindex = Teams && Teams.findIndex(function (item) {
@@ -975,22 +956,35 @@ function Teammembers_Teammember(_ref) {
var empty_style = __webpack_require__(81151);
// EXTERNAL MODULE: ./node_modules/antd/es/empty/index.js + 2 modules
var empty = __webpack_require__(62986);
+// EXTERNAL MODULE: ./node_modules/react-infinite-scroller/index.js
+var react_infinite_scroller = __webpack_require__(246);
+var react_infinite_scroller_default = /*#__PURE__*/__webpack_require__.n(react_infinite_scroller);
;// CONCATENATED MODULE: ./src/pages/Competitions/Entered/Enteredmodel/DownTeacher.tsx
+
+
+
+
//教师列表
+
function Downteacher(_ref) {
var teachers = _ref.teachers,
setTeams = _ref.setTeams,
Teams = _ref.Teams,
- HeaderDetail = _ref.HeaderDetail;
+ HeaderDetail = _ref.HeaderDetail,
+ getteacher = _ref.getteacher;
+ var _useState = (0,react.useState)(true),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ hasMore = _useState2[0],
+ sethasMore = _useState2[1];
var teacher = teachers.map(function (item, index) {
return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
className: Enteredmodules.teachname,
@@ -1011,7 +1005,7 @@ function Downteacher(_ref) {
}
var teachers = Teams;
teachers.push(item);
- setTeams(teachers);
+ setTeams(toConsumableArray_default()(teachers));
},
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
style: {
@@ -1021,35 +1015,43 @@ function Downteacher(_ref) {
className: Enteredmodules.loaderimg,
src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(item.image_url)
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '20%',
padding: '0px 5px'
},
+ title: item.name,
children: item.name || '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '18%',
padding: '0px 5px'
},
+ title: item.phone,
children: item.phone || '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '18%',
padding: '0px 5px'
},
- className: Enteredmodules.task_hide,
+ title: item.identity,
children: item.identity || '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '20%',
padding: '0px 5px'
},
+ title: item.school_name,
children: item.school_name || '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '24%',
@@ -1074,7 +1076,34 @@ function Downteacher(_ref) {
})]
}),
image: empty/* default.PRESENTED_IMAGE_SIMPLE */.Z.PRESENTED_IMAGE_SIMPLE
- }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)((react_infinite_scroller_default()), {
+ initialLoad: false,
+ pageStart: 1,
+ threshold: 20,
+ loadMore: /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(page) {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ _context.next = 2;
+ return getteacher(page);
+ case 2:
+ res = _context.sent;
+ sethasMore(res);
+ // console.log(res);
+ case 4:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function (_x) {
+ return _ref2.apply(this, arguments);
+ };
+ }(),
+ hasMore: false,
+ useWindow: false,
children: teacher
})
});
@@ -1085,17 +1114,25 @@ function Downteacher(_ref) {
+
+
//教师列表
+
function DownStudent(_ref) {
var students = _ref.students,
setTeams = _ref.setTeams,
Teams = _ref.Teams,
- HeaderDetail = _ref.HeaderDetail;
+ HeaderDetail = _ref.HeaderDetail,
+ getteacher = _ref.getteacher;
+ var _useState = (0,react.useState)(true),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ hasMore = _useState2[0],
+ sethasMore = _useState2[1];
var teacher = students.map(function (item, index) {
return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
className: Enteredmodules.teachname,
@@ -1118,7 +1155,7 @@ function DownStudent(_ref) {
// return
var students = Teams;
students.push(item);
- setTeams(students);
+ setTeams(toConsumableArray_default()(students));
},
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
style: {
@@ -1128,33 +1165,40 @@ function DownStudent(_ref) {
className: Enteredmodules.loaderimg,
src: env/* default.IMG_SERVER */.Z.IMG_SERVER + "/images/" + "".concat(item.image_url)
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '20%',
padding: '0px 5px'
},
+ title: item.name,
children: item.name || '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '18%',
padding: '0px 5px'
},
+ title: item.phone,
children: item.phone || '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '18%',
padding: '0px 5px'
},
- className: Enteredmodules.task_hide,
+ title: item.student_id,
children: item.student_id ? '学号' + item.student_id : '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Enteredmodules.task_hide,
style: {
textAlign: 'left',
width: '20%',
padding: '0px 5px'
},
+ title: item.school_name,
children: item.school_name || '- -'
}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
style: {
@@ -1181,8 +1225,21 @@ function DownStudent(_ref) {
})]
}),
image: empty/* default.PRESENTED_IMAGE_SIMPLE */.Z.PRESENTED_IMAGE_SIMPLE
- }) : /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
- children: teacher
+ }) : /*#__PURE__*/(0,jsx_runtime.jsx)((react_infinite_scroller_default()), {
+ initialLoad: false,
+ pageStart: 1,
+ threshold: 20,
+ loadMore: function loadMore(page) {
+ getteacher(page);
+ sethasMore(false);
+ // console.log(res);
+ },
+
+ hasMore: hasMore,
+ useWindow: false,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ children: teacher
+ })
})
});
}
@@ -1202,6 +1259,7 @@ function DownStudent(_ref) {
+
var SetmembersModel_Search = input/* default.Search */.Z.Search;
@@ -1295,11 +1353,12 @@ function Setmembers(_ref) {
}, []);
//查找学生
- function getStudents() {
+ function getStudents(_x) {
return _getStudents.apply(this, arguments);
} //查找老师
function _getStudents() {
- _getStudents = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
+ _getStudents = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(page) {
+ var _data$teachers;
var data;
return regeneratorRuntime_default()().wrap(function _callee$(_context) {
while (1) switch (_context.prev = _context.next) {
@@ -1310,15 +1369,22 @@ function Setmembers(_ref) {
payload: {
identifier: identifier,
keyword: studentname,
- team_id: mydatas && mydatas.id
+ team_id: mydatas && mydatas.id,
+ page: page
}
});
case 2:
data = _context.sent;
if (data) {
- setStudents(data.teachers);
+ if (page === 1) {
+ setStudents(toConsumableArray_default()(data.teachers));
+ } else {
+ setStudents([].concat(toConsumableArray_default()(students), toConsumableArray_default()(data.teachers)));
+ }
+ // setStudents([...students, ...data.teachers])
}
- case 4:
+ return _context.abrupt("return", ((_data$teachers = data.teachers) === null || _data$teachers === void 0 ? void 0 : _data$teachers.length) <= 0 ? false : true);
+ case 5:
case "end":
return _context.stop();
}
@@ -1326,11 +1392,12 @@ function Setmembers(_ref) {
}));
return _getStudents.apply(this, arguments);
}
- function getteacher() {
+ function getteacher(_x2) {
return _getteacher.apply(this, arguments);
} //提交数据
function _getteacher() {
- _getteacher = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ _getteacher = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2(page) {
+ var _data$teachers2;
var data;
return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
while (1) switch (_context2.prev = _context2.next) {
@@ -1341,16 +1408,22 @@ function Setmembers(_ref) {
payload: {
identifier: identifier,
keyword: teachname,
- team_id: mydatas && mydatas.id
+ team_id: mydatas && mydatas.id,
+ page: page
}
});
case 2:
data = _context2.sent;
if (data) {
- // console.log(data.teachers);
- setTeachers(data.teachers);
+ if (page === 1) {
+ setTeachers(toConsumableArray_default()(data.teachers));
+ } else {
+ setTeachers([].concat(toConsumableArray_default()(teachers), toConsumableArray_default()(data.teachers)));
+ }
+ // setTeachers([...teachers, ...data.teachers])
}
- case 4:
+ return _context2.abrupt("return", ((_data$teachers2 = data.teachers) === null || _data$teachers2 === void 0 ? void 0 : _data$teachers2.length) <= 0 ? false : true);
+ case 5:
case "end":
return _context2.stop();
}
@@ -1473,6 +1546,7 @@ function Setmembers(_ref) {
}), /*#__PURE__*/(0,jsx_runtime.jsx)(dropdown/* default */.Z, {
dropdownRender: function dropdownRender() {
return /*#__PURE__*/(0,jsx_runtime.jsx)(DownTeacher, {
+ getteacher: getteacher,
HeaderDetail: HeaderDetail,
teachers: teachers,
setTeams: setTeams,
@@ -1492,7 +1566,8 @@ function Setmembers(_ref) {
},
onSearch: function onSearch(value) {
setDownteacher(true);
- getteacher();
+ setTeachers([]);
+ getteacher(1);
},
onBlur: function onBlur() {
setDownteacher(false);
@@ -1503,6 +1578,7 @@ function Setmembers(_ref) {
}), /*#__PURE__*/(0,jsx_runtime.jsx)(dropdown/* default */.Z, {
dropdownRender: function dropdownRender() {
return /*#__PURE__*/(0,jsx_runtime.jsx)(DownStudents, {
+ getteacher: getStudents,
HeaderDetail: HeaderDetail,
students: students,
setTeams: setTeams,
@@ -1522,7 +1598,8 @@ function Setmembers(_ref) {
},
onSearch: function onSearch(value) {
setDownstudents(true);
- getStudents();
+ setStudents([]);
+ getStudents(1);
},
onBlur: function onBlur() {
setDownstudents(false);
diff --git a/p__Competitions__Entered__index.chunk.css b/p__Competitions__Entered__index.chunk.css
index c2ab74e5a8..1b3bd063e6 100644
--- a/p__Competitions__Entered__index.chunk.css
+++ b/p__Competitions__Entered__index.chunk.css
@@ -1176,10 +1176,7 @@ li:last-child > .ant-breadcrumb-separator {
width: 100%;
background: #fff;
display: inline-block;
- border: 1px solid #eaeaea;
max-height: 200px;
- height: 200px;
- padding: 10px 15px;
overflow: auto;
}
.teachname___D6V_h {
diff --git a/p__Competitions__Index__index.async.js b/p__Competitions__Index__index.async.js
index bdc0d5ce34..e3d98ba292 100644
--- a/p__Competitions__Index__index.async.js
+++ b/p__Competitions__Index__index.async.js
@@ -182,9 +182,9 @@ function Advertisement(_ref) {
/***/ }),
-/***/ 92272:
+/***/ 9353:
/*!************************************************************!*\
- !*** ./src/pages/Competitions/Index/index.tsx + 7 modules ***!
+ !*** ./src/pages/Competitions/Index/index.tsx + 8 modules ***!
\************************************************************/
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
@@ -196,13 +196,13 @@ __webpack_require__.d(__webpack_exports__, {
"default": function() { return /* binding */ Index; }
});
+// EXTERNAL MODULE: ./node_modules/antd/es/table/style/index.js + 1 modules
+var style = __webpack_require__(71854);
+// EXTERNAL MODULE: ./node_modules/antd/es/table/index.js + 58 modules
+var table = __webpack_require__(67250);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
var regeneratorRuntime = __webpack_require__(17061);
var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
-// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
-var style = __webpack_require__(35611);
-// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
-var modal = __webpack_require__(85402);
// EXTERNAL MODULE: ./node_modules/antd/es/pagination/style/index.js + 1 modules
var pagination_style = __webpack_require__(14182);
// EXTERNAL MODULE: ./node_modules/antd/es/pagination/index.js + 10 modules
@@ -219,10 +219,18 @@ var es_button = __webpack_require__(71577);
var list_style = __webpack_require__(36931);
// EXTERNAL MODULE: ./node_modules/antd/es/list/index.js + 1 modules
var list = __webpack_require__(95507);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules
+var tooltip_style = __webpack_require__(38390);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules
+var tooltip = __webpack_require__(84908);
// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules
var input_style = __webpack_require__(69463);
// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules
var input = __webpack_require__(75008);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
+var modal_style = __webpack_require__(35611);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
+var modal = __webpack_require__(85402);
// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules
var message_style = __webpack_require__(14934);
// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules
@@ -233,6 +241,10 @@ var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerat
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
var objectSpread2 = __webpack_require__(42122);
var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules
+var form_style = __webpack_require__(75627);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules
+var es_form = __webpack_require__(51018);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
var slicedToArray = __webpack_require__(27424);
var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
@@ -251,7 +263,7 @@ var _umi_production_exports = __webpack_require__(89214);
var util = __webpack_require__(29427);
;// CONCATENATED MODULE: ./src/pages/Competitions/Index/index.less?modules
// extracted by mini-css-extract-plugin
-/* harmony default export */ var Indexmodules = ({"flex_box_center":"flex_box_center___KHcKj","flex_space_between":"flex_space_between___rpKE6","flex_box_vertical_center":"flex_box_vertical_center___aBwFB","flex_box_center_end":"flex_box_center_end___eszEn","flex_box_column":"flex_box_column___y2rDr","wrp":"wrp___b6xZq","tabsWrap":"tabsWrap___rNsVP","searchWrap":"searchWrap___NzDrD","search":"search___O3S5n","searchIcon":"searchIcon___S8AXh","searchWrap_right":"searchWrap_right___GVEny","description":"description____uPzl","bg":"bg___lqNd2","list":"list___JU4aR","status":"status___d75lJ","desc":"desc___NuO07","flex1":"flex1___ibscW","item":"item___E2e6I","footer":"footer___az6N2","bottomText":"bottomText___XT9Es","CompetitionsList":"CompetitionsList___BU3Jl","signup":"signup___UmfzR","CompetitionsListzhezhao":"CompetitionsListzhezhao___E2v5E","shadow":"shadow___kJYAn","divimg":"divimg___R3hKI","commonTextBox":"commonTextBox___C7Stw","havetext":"havetext___Q_Zdl","Finishedtext":"Finishedtext___zMGI8","Comingtext":"Comingtext___cJOQk","info":"info___eIwYF","bonus":"bonus___eKcia","rmb":"rmb___4wccY","applyInfo":"applyInfo___sqck8","task_hide":"task_hide___MQUVb","task_hide_2":"task_hide_2___MoAlk","Unpublishedtext":"Unpublishedtext___tqsH6","checkboxtitle":"checkboxtitle___iwuEz"});
+/* harmony default export */ var Indexmodules = ({"flex_box_center":"flex_box_center___KHcKj","flex_space_between":"flex_space_between___rpKE6","flex_box_vertical_center":"flex_box_vertical_center___aBwFB","flex_box_center_end":"flex_box_center_end___eszEn","flex_box_column":"flex_box_column___y2rDr","wrp":"wrp___b6xZq","tabsWrap":"tabsWrap___rNsVP","searchWrap":"searchWrap___NzDrD","search":"search___O3S5n","searchIcon":"searchIcon___S8AXh","btns":"btns___gL_1J","searchWrap_right":"searchWrap_right___GVEny","description":"description____uPzl","bg":"bg___lqNd2","list":"list___JU4aR","status":"status___d75lJ","desc":"desc___NuO07","flex1":"flex1___ibscW","item":"item___E2e6I","footer":"footer___az6N2","bottomText":"bottomText___XT9Es","CompetitionsList":"CompetitionsList___BU3Jl","signup":"signup___UmfzR","CompetitionsListzhezhao":"CompetitionsListzhezhao___E2v5E","shadow":"shadow___kJYAn","divimg":"divimg___R3hKI","commonTextBox":"commonTextBox___C7Stw","havetext":"havetext___Q_Zdl","Finishedtext":"Finishedtext___zMGI8","Comingtext":"Comingtext___cJOQk","info":"info___eIwYF","bonus":"bonus___eKcia","rmb":"rmb___4wccY","applyInfo":"applyInfo___sqck8","task_hide":"task_hide___MQUVb","task_hide_2":"task_hide_2___MoAlk","Unpublishedtext":"Unpublishedtext___tqsH6","checkboxtitle":"checkboxtitle___iwuEz","scoremodal":"scoremodal____yQdA","title":"title___jb7xW","content":"content___NsK20","bottom":"bottom___CyoKb","yes":"yes___s2kKh","no":"no___Adxtg","baseFormItem":"baseFormItem___rawKU","jsinput":"jsinput___XEFKk"});
// EXTERNAL MODULE: ./src/components/NoData/index.tsx
var NoData = __webpack_require__(82982);
// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
@@ -282,10 +294,6 @@ var spin = __webpack_require__(11382);
var col_style = __webpack_require__(89032);
// EXTERNAL MODULE: ./node_modules/antd/es/col/index.js
var col = __webpack_require__(15746);
-// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules
-var tooltip_style = __webpack_require__(38390);
-// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules
-var tooltip = __webpack_require__(84908);
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/toConsumableArray.js
var toConsumableArray = __webpack_require__(861);
var toConsumableArray_default = /*#__PURE__*/__webpack_require__.n(toConsumableArray);
@@ -992,8 +1000,8 @@ var Statistics_competitionsPage = function competitionsPage(_ref) {
user: user
};
})(Statistics_competitionsPage));
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
// EXTERNAL MODULE: ./src/components/HomeModal/Advertisement.tsx + 1 modules
var Advertisement = __webpack_require__(62824);
;// CONCATENATED MODULE: ./src/assets/images/competition/competition-banner.png
@@ -1006,6 +1014,8 @@ var Addteams = __webpack_require__(6237);
var PhoneModal = __webpack_require__(74009);
// EXTERNAL MODULE: ./src/service/global.ts
var global = __webpack_require__(98706);
+;// CONCATENATED MODULE: ./src/pages/Competitions/Index/robot.png
+var robot_namespaceObject = "data:image/png;base64,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";
;// CONCATENATED MODULE: ./src/pages/Competitions/Index/index.tsx
@@ -1021,6 +1031,12 @@ var global = __webpack_require__(98706);
+
+
+
+
+
+
@@ -1044,6 +1060,11 @@ var Index_excluded = ["competitions", "globalSetting", "loading", "dispatch", "u
+
+
+
+
+
@@ -1102,8 +1123,35 @@ var Index_competitionsPage = function competitionsPage(_ref) {
_useState20 = slicedToArray_default()(_useState19, 2),
datas = _useState20[0],
setdatas = _useState20[1];
+ var _useState21 = (0,react.useState)(false),
+ _useState22 = slicedToArray_default()(_useState21, 2),
+ iscreate = _useState22[0],
+ setiscreate = _useState22[1];
var _useParams = (0,_umi_production_exports.useParams)(),
identifier = _useParams.identifier;
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState23 = (0,react.useState)(false),
+ _useState24 = slicedToArray_default()(_useState23, 2),
+ buttonloading = _useState24[0],
+ setbuttonloading = _useState24[1];
+ var _useState25 = (0,react.useState)('mine'),
+ _useState26 = slicedToArray_default()(_useState25, 2),
+ scoreByBlank = _useState26[0],
+ setscoreByBlank = _useState26[1];
+ var _useState27 = (0,react.useState)(false),
+ _useState28 = slicedToArray_default()(_useState27, 2),
+ certificate = _useState28[0],
+ setcertificate = _useState28[1];
+ var _useState29 = (0,react.useState)(''),
+ _useState30 = slicedToArray_default()(_useState29, 2),
+ keywords = _useState30[0],
+ setkeywords = _useState30[1];
+ var _useState31 = (0,react.useState)([]),
+ _useState32 = slicedToArray_default()(_useState31, 2),
+ dataItems = _useState32[0],
+ seetdataItems = _useState32[1];
//出现页面右侧悬浮按钮
(0,react.useEffect)(function () {
@@ -1131,42 +1179,6 @@ var Index_competitionsPage = function competitionsPage(_ref) {
(0,react.useEffect)(function () {
(0,util/* setDocumentTitle */.Dk)('在线竞赛');
});
- function getHomeNotice() {
- return _getHomeNotice.apply(this, arguments);
- }
- function _getHomeNotice() {
- _getHomeNotice = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
- var data, SystemUpdateadvtime;
- return regeneratorRuntime_default()().wrap(function _callee$(_context) {
- while (1) switch (_context.prev = _context.next) {
- case 0:
- _context.next = 2;
- return dispatch({
- type: 'homePage/getHomeNotice',
- payload: {}
- });
- case 2:
- data = _context.sent;
- if (data) {
- SystemUpdateadvtime = localStorage.getItem('SystemUpdateadvtime');
- localStorage.setItem('SystemUpdateadvtime', data.start_at);
- // let date=new Date();
- if (data !== null && data !== void 0 && data.id) {
- localStorage.setItem('isfirst', '0');
- // localStorage.setItem('showtime',(date.getDate()+1).toString());
- } else {
- localStorage.setItem('isfirst', '2');
- }
- setModeldata(data);
- }
- case 4:
- case "end":
- return _context.stop();
- }
- }, _callee);
- }));
- return _getHomeNotice.apply(this, arguments);
- }
var onShowSizeChange = function onShowSizeChange(current, pageSize) {
document.body.scrollIntoView();
competitions.listParams.page = current;
@@ -1184,21 +1196,27 @@ var Index_competitionsPage = function competitionsPage(_ref) {
return _gotocourse.apply(this, arguments);
}
function _gotocourse() {
- _gotocourse = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2(e, item, url) {
- var _user$userInfo4;
- var result;
- return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
- while (1) switch (_context2.prev = _context2.next) {
+ _gotocourse = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3(e, item, url) {
+ var _user$userInfo6;
+ var res, result, _user$userInfo7, data;
+ return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
+ while (1) switch (_context3.prev = _context3.next) {
case 0:
e.stopPropagation();
+ // if (!item.invite_code) {
+ // message.info('本竞赛只面向部分学校/单位开放,你暂时没有参赛资格');
+ // return;
+ // }
+ // items=item
+ setitems(objectSpread2_default()({}, item));
if ((0,verifyLogin/* handleVerify */.tJ)(dispatch)) {
- _context2.next = 3;
+ _context3.next = 4;
break;
}
- return _context2.abrupt("return");
- case 3:
- if (!(item !== null && item !== void 0 && item.is_authentication && !(user !== null && user !== void 0 && (_user$userInfo4 = user.userInfo) !== null && _user$userInfo4 !== void 0 && _user$userInfo4.authentication))) {
- _context2.next = 6;
+ return _context3.abrupt("return");
+ case 4:
+ if (!(item !== null && item !== void 0 && item.is_authentication && !(user !== null && user !== void 0 && (_user$userInfo6 = user.userInfo) !== null && _user$userInfo6 !== void 0 && _user$userInfo6.authentication))) {
+ _context3.next = 7;
break;
}
dispatch({
@@ -1207,28 +1225,40 @@ var Index_competitionsPage = function competitionsPage(_ref) {
key: 'Banner-Auth'
}
});
- return _context2.abrupt("return");
- case 6:
+ return _context3.abrupt("return");
+ case 7:
+ _context3.next = 9;
+ return (0,fetch/* default */.ZP)("/api/competitions/".concat(item.identifier, "/check_open.json"), {
+ method: 'post'
+ });
+ case 9:
+ res = _context3.sent;
+ if (!(res.status !== 0)) {
+ _context3.next = 12;
+ break;
+ }
+ return _context3.abrupt("return");
+ case 12:
if (!(url === 'ismodel')) {
- _context2.next = 20;
+ _context3.next = 26;
break;
}
if (!(item.member_of_course === true)) {
- _context2.next = 11;
+ _context3.next = 17;
break;
}
(0,util/* openNewWindow */.xg)("/classrooms/".concat(item.course_id));
- _context2.next = 18;
+ _context3.next = 24;
break;
- case 11:
+ case 17:
if (item.invite_code) {
- _context2.next = 14;
+ _context3.next = 20;
break;
}
message/* default.info */.ZP.info('本竞赛只面向部分学校/单位开放,你暂时没有参赛资格');
- return _context2.abrupt("return");
- case 14:
- _context2.next = 16;
+ return _context3.abrupt("return");
+ case 20:
+ _context3.next = 22;
return dispatch({
type: 'competitions/addApplytojoincourse',
payload: {
@@ -1236,46 +1266,138 @@ var Index_competitionsPage = function competitionsPage(_ref) {
student: 1
}
});
- case 16:
- result = _context2.sent;
+ case 22:
+ result = _context3.sent;
if (result.status === 0) {
(0,util/* openNewWindow */.xg)("/classrooms/".concat(item.course_id));
}
- case 18:
- _context2.next = 33;
+ case 24:
+ _context3.next = 70;
break;
- case 20:
+ case 26:
+ if (!(url === 'personal')) {
+ _context3.next = 57;
+ break;
+ }
+ if (!item.is_new) {
+ _context3.next = 54;
+ break;
+ }
+ if (!(item.enrolled === true)) {
+ _context3.next = 31;
+ break;
+ }
+ (0,util/* openNewWindow */.xg)(url);
+ return _context3.abrupt("return");
+ case 31:
+ if (!(item.teacher_need_phone || item.member_need_phone)) {
+ _context3.next = 35;
+ break;
+ }
+ event.stopPropagation();
+ setshowphone(true);
+ return _context3.abrupt("return");
+ case 35:
+ if ((0,verifyLogin/* handleVerify */.tJ)(dispatch)) {
+ _context3.next = 37;
+ break;
+ }
+ return _context3.abrupt("return");
+ case 37:
+ if (!(item !== null && item !== void 0 && item.need_check_mail)) {
+ _context3.next = 41;
+ break;
+ }
+ event.stopPropagation();
+ modal/* default.confirm */.Z.confirm({
+ centered: true,
+ okText: '确定',
+ cancelText: '取消',
+ title: '提示',
+ icon: null,
+ content: '您暂未绑定邮箱,为了后续竞赛奖项颁发等相关事宜的正常且准确进行,请完成绑定再参加报名。',
+ onOk: function onOk() {
+ window.open('/account/secure');
+ }
+ });
+ return _context3.abrupt("return");
+ case 41:
+ if (!(item !== null && item !== void 0 && item.is_authentication && !(user !== null && user !== void 0 && (_user$userInfo7 = user.userInfo) !== null && _user$userInfo7 !== void 0 && _user$userInfo7.authentication))) {
+ _context3.next = 44;
+ break;
+ }
+ dispatch({
+ type: 'shixunsDetail/setActionTabs',
+ payload: {
+ key: 'Banner-Auth'
+ }
+ });
+ return _context3.abrupt("return");
+ case 44:
+ if (!buttonloading) {
+ _context3.next = 46;
+ break;
+ }
+ return _context3.abrupt("return");
+ case 46:
+ setbuttonloading(true);
+ _context3.next = 49;
+ return dispatch({
+ type: 'competitions/AddTeam',
+ payload: {
+ identifier: item.identifier
+ }
+ });
+ case 49:
+ data = _context3.sent;
+ setbuttonloading(false);
+ if (data && data.status === 0) {
+ setdatas(data);
+ setisopen(true);
+ dispatch({
+ type: 'competitions/getList',
+ payload: objectSpread2_default()({}, competitions.listParams)
+ });
+ }
+ _context3.next = 55;
+ break;
+ case 54:
+ addTeams('');
+ case 55:
+ _context3.next = 70;
+ break;
+ case 57:
if (!(item.enrolled === true)) {
- _context2.next = 23;
+ _context3.next = 60;
break;
}
(0,util/* openNewWindow */.xg)(url);
- return _context2.abrupt("return");
- case 23:
+ return _context3.abrupt("return");
+ case 60:
if (!(url === 'personal')) {
- _context2.next = 31;
+ _context3.next = 68;
break;
}
if (!(item.enroll_ended === true)) {
- _context2.next = 27;
+ _context3.next = 64;
break;
}
//已截止
message/* default.info */.ZP.info("\u62A5\u540D\u5DF2\u622A\u6B62");
- return _context2.abrupt("return");
- case 27:
+ return _context3.abrupt("return");
+ case 64:
setisshowmodal(true);
setitems(item);
- _context2.next = 33;
+ _context3.next = 70;
break;
- case 31:
+ case 68:
setisshowmodal(true);
setitems(item);
- case 33:
+ case 70:
case "end":
- return _context2.stop();
+ return _context3.stop();
}
- }, _callee2);
+ }, _callee3);
}));
return _gotocourse.apply(this, arguments);
}
@@ -1288,25 +1410,25 @@ var Index_competitionsPage = function competitionsPage(_ref) {
return _addTeams.apply(this, arguments);
}
function _addTeams() {
- _addTeams = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3(name) {
+ _addTeams = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4(name) {
var data;
- return regeneratorRuntime_default()().wrap(function _callee3$(_context3) {
- while (1) switch (_context3.prev = _context3.next) {
+ return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
+ while (1) switch (_context4.prev = _context4.next) {
case 0:
if (isClick) {
- _context3.next = 2;
+ _context4.next = 2;
break;
}
- return _context3.abrupt("return");
+ return _context4.abrupt("return");
case 2:
setIsClick(false);
if (!isadd()) {
- _context3.next = 5;
+ _context4.next = 5;
break;
}
- return _context3.abrupt("return");
+ return _context4.abrupt("return");
case 5:
- _context3.next = 7;
+ _context4.next = 7;
return dispatch({
type: 'competitions/AddTeam',
payload: {
@@ -1315,7 +1437,7 @@ var Index_competitionsPage = function competitionsPage(_ref) {
}
});
case 7:
- data = _context3.sent;
+ data = _context4.sent;
if (data && data.status === 0) {
setisopen(true);
setdatas(data);
@@ -1329,14 +1451,14 @@ var Index_competitionsPage = function competitionsPage(_ref) {
}
case 9:
case "end":
- return _context3.stop();
+ return _context4.stop();
}
- }, _callee3);
+ }, _callee4);
}));
return _addTeams.apply(this, arguments);
}
function isadd() {
- var _user$userInfo, _user$userInfo2;
+ var _user$userInfo;
//判断 如果不符合条件 不能加入竞赛
if (user !== null && user !== void 0 && (_user$userInfo = user.userInfo) !== null && _user$userInfo !== void 0 && _user$userInfo.is_teacher) {
var _items$teacher_staff;
@@ -1363,18 +1485,23 @@ var Index_competitionsPage = function competitionsPage(_ref) {
setIsClick(true);
return true;
}
+ console.log('---', items);
+
//禁止老师or学生报名
- if (user !== null && user !== void 0 && (_user$userInfo2 = user.userInfo) !== null && _user$userInfo2 !== void 0 && _user$userInfo2.is_teacher) {
- if (!items.teacher_staff) {
- message/* default.info */.ZP.info('已禁止老师报名');
- setIsClick(true);
- return true;
- }
- } else {
- if (!(items !== null && items !== void 0 && items.member_staff)) {
- message/* default.info */.ZP.info('已禁止学生报名');
- setIsClick(true);
- return true;
+ if (items !== null && items !== void 0 && items.is_new) {} else {
+ var _user$userInfo2;
+ if (user !== null && user !== void 0 && (_user$userInfo2 = user.userInfo) !== null && _user$userInfo2 !== void 0 && _user$userInfo2.is_teacher) {
+ if (!items.teacher_staff) {
+ message/* default.info */.ZP.info('已禁止老师报名');
+ setIsClick(true);
+ return true;
+ }
+ } else {
+ if (!(items !== null && items !== void 0 && items.member_staff)) {
+ message/* default.info */.ZP.info('已禁止学生报名');
+ setIsClick(true);
+ return true;
+ }
}
}
}
@@ -1386,25 +1513,25 @@ var Index_competitionsPage = function competitionsPage(_ref) {
* 列表数据点击跳转事件
*/
function _JoinTeams() {
- _JoinTeams = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee4(name) {
+ _JoinTeams = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee5(name) {
var data;
- return regeneratorRuntime_default()().wrap(function _callee4$(_context4) {
- while (1) switch (_context4.prev = _context4.next) {
+ return regeneratorRuntime_default()().wrap(function _callee5$(_context5) {
+ while (1) switch (_context5.prev = _context5.next) {
case 0:
if (isClick) {
- _context4.next = 2;
+ _context5.next = 2;
break;
}
- return _context4.abrupt("return");
+ return _context5.abrupt("return");
case 2:
if (!isadd()) {
- _context4.next = 4;
+ _context5.next = 4;
break;
}
- return _context4.abrupt("return");
+ return _context5.abrupt("return");
case 4:
setIsClick(false);
- _context4.next = 7;
+ _context5.next = 7;
return dispatch({
type: 'competitions/JoinTeam',
payload: {
@@ -1413,7 +1540,7 @@ var Index_competitionsPage = function competitionsPage(_ref) {
}
});
case 7:
- data = _context4.sent;
+ data = _context5.sent;
if (data && data.status === 0) {
setisopen(true);
setdatas(data);
@@ -1427,9 +1554,9 @@ var Index_competitionsPage = function competitionsPage(_ref) {
}
case 9:
case "end":
- return _context4.stop();
+ return _context5.stop();
}
- }, _callee4);
+ }, _callee5);
}));
return _JoinTeams.apply(this, arguments);
}
@@ -1440,19 +1567,21 @@ var Index_competitionsPage = function competitionsPage(_ref) {
// console.log(item.external_url,"-----item.external_url");
tourl("".concat(item.external_url) + "?login=" + (user === null || user === void 0 ? void 0 : (_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.login) + "&websiteName=educoder");
} else {
+ if (item !== null && item !== void 0 && item.is_new) {
+ if (item.permission.editable == true) {
+ if (['preparing', 'not_passed', 'review'].includes(item === null || item === void 0 ? void 0 : item.competition_status)) {
+ tourl("/competitions/detail/".concat(item.identifier, "?type=4"));
+ } else {
+ tourl("/competitions/detail/".concat(item.identifier, "?type=1"));
+ }
+ } else {
+ tourl("/competitions/detail/".concat(item.identifier));
+ }
+ return;
+ }
if (item.competition_status === 'ended' || item.competition_status === 'progressing' || item.competition_status === 'unpublish' || item.competition_status === 'nearly_published' && item.permission.editable == true) {
tourl("/competitions/".concat(item.identifier));
}
- // tourl(
- // item.competition_status === 'ended'? `/competitions/${item.identifier}`
- // : item.competition_status === 'nearly_published'
- // ? item.permission.editable == true
- // ? `/competitions/${item.identifier}`
- // : null
- // : item.competition_status === 'progressing'
- // ? `/competitions/${item.identifier}`
- // : ?null:`/competitions/${item.identifier}`
- // );
}
};
@@ -1465,17 +1594,28 @@ var Index_competitionsPage = function competitionsPage(_ref) {
setshowphone(true);
return;
}
+ if (item !== null && item !== void 0 && item.need_check_mail) {
+ event.stopPropagation();
+ modal/* default.confirm */.Z.confirm({
+ title: '提示',
+ content: '您暂未绑定邮箱,为了后续竞赛奖项颁发等相关事宜的正常且准确进行,请完成绑定再参加报名。',
+ onOk: function onOk() {
+ window.open('/account/secure');
+ }
+ });
+ return;
+ }
if (item.external_url) {
event.stopPropagation();
tourl(item.external_url);
} else {
- gotocourse(event, item, item.mode === 2 ? 'ismodel' : item.personal ? 'personal' : "/competitions/".concat(item.identifier, "/detail/enroll"));
+ gotocourse(event, item, item.mode === 2 ? 'ismodel' : item.personal ? 'personal' : item !== null && item !== void 0 && item.is_new ? "/competitions/detail/".concat(item.identifier, "?type=3") : "/competitions/".concat(item.identifier, "/detail/enroll"));
}
};
- var _useState21 = (0,react.useState)(''),
- _useState22 = slicedToArray_default()(_useState21, 2),
- keyword = _useState22[0],
- setKeyword = _useState22[1];
+ var _useState33 = (0,react.useState)(''),
+ _useState34 = slicedToArray_default()(_useState33, 2),
+ keyword = _useState34[0],
+ setKeyword = _useState34[1];
var handleSearch = function handleSearch(keyword) {
competitions.listParams.keyword = encodeURIComponent(keyword);
competitions.listParams.page = 1;
@@ -1528,10 +1668,52 @@ var Index_competitionsPage = function competitionsPage(_ref) {
img: competitions.listParams.url_suffix_name && competitions.banner ? '' : competition_banner_namespaceObject,
imgWidth: 438,
bannerExtraContent: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Indexmodules.btns,
+ children: [{
+ name: '创建竞赛',
+ click: function click() {
+ var _user$userInfo4, _user$userInfo5;
+ if (!(0,verifyLogin/* handleVerify */.tJ)(dispatch)) {
+ return;
+ }
+ if ((0,authority/* isAdmins */.eB)() || (_user$userInfo4 = user.userInfo) !== null && _user$userInfo4 !== void 0 && _user$userInfo4.professional_certification && (_user$userInfo5 = user.userInfo) !== null && _user$userInfo5 !== void 0 && _user$userInfo5.is_teacher) {
+ form.setFieldValue('name', '');
+ setiscreate(true);
+ } else {
+ message/* default.info */.ZP.info("当前仅支持已职业认证的教师可创建");
+ }
+ }
+ }, {
+ name: '新手指引',
+ sign: true,
+ click: function click() {
+ window.open(env/* default.API_SERVER */.Z.API_SERVER + "/images/educoder/competitions/\u7ADE\u8D5B\u65B0\u624B\u6307\u5F15.pdf");
+ }
+ }, {
+ name: '证书查询',
+ click: function click() {
+ setcertificate(true);
+ }
+ }].map(function (e, i) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ onClick: e.click,
+ children: [e.name, e.sign ? /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: robot_namespaceObject,
+ width: 39
+ }) : null]
+ }, i);
+ })
+ })
+ }, identifier)
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "edu-container",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Indexmodules.tabsWrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(tabs/* default */.Z, {
+ defaultActiveKey: "",
+ tabBarExtraContent: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
className: Indexmodules.searchWrap,
- style: {
- marginTop: competitions.listParams.url_suffix_name && competitions.competition_title == '' ? "69px" : ""
- },
children: identifier ? '' : !globalSetting.isSaiaDomain && /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default.Search */.Z.Search, {
placeholder: "\u8BF7\u8F93\u5165\u7ADE\u8D5B\u540D\u79F0",
size: "large",
@@ -1549,21 +1731,14 @@ var Index_competitionsPage = function competitionsPage(_ref) {
}),
onSearch: handleSearch
})
- })
- }, identifier)
- })]
- }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
- className: "edu-container",
- children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
- className: Indexmodules.tabsWrap,
- children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(tabs/* default */.Z, {
- defaultActiveKey: "",
+ }),
onChange: function onChange(v) {
if (v === 'statistics') {
setIsStatistics(true);
} else {
setIsStatistics(false);
}
+ competitions.count = 0;
competitions.listParams.page = 1;
competitions.listParams.category = v;
competitions.listParams.page = 1;
@@ -1605,6 +1780,26 @@ var Index_competitionsPage = function competitionsPage(_ref) {
onSearch: handleSearch
}) : ''
})]
+ }), ['mine', 'join'].includes(competitions.listParams.category) && /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* SuperiorTabs */.tp, {
+ dataSource: [{
+ name: '我管理的',
+ id: 'mine'
+ }, {
+ name: '我参与的',
+ id: 'join'
+ }],
+ className: "mb20",
+ value: scoreByBlank,
+ onChange: function onChange(value) {
+ competitions.listParams.page = 1;
+ competitions.listParams.category = value;
+ competitions.listParams.page = 1;
+ dispatch({
+ type: 'competitions/getList',
+ payload: objectSpread2_default()({}, competitions.listParams)
+ });
+ setscoreByBlank(value);
+ }
}), !isStatistics && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
children: competitions.count === 0 ? /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {}) : /*#__PURE__*/(0,jsx_runtime.jsxs)("aside", {
className: "edu-container minH500",
@@ -1645,13 +1840,43 @@ var Index_competitionsPage = function competitionsPage(_ref) {
alignItems: 'center',
display: 'flex'
},
- children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
- className: Indexmodules.task_hide,
- children: [item.name, item.sub_title ? "\u2014\u2014".concat(item.sub_title) : '']
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [item.name, item.sub_title ? "\u2014\u2014".concat(item.sub_title) : '']
+ }),
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ className: Indexmodules.task_hide,
+ children: [item.name, item.sub_title ? "\u2014\u2014".concat(item.sub_title) : '']
+ })
}), item.competition_status && item.competition_status === 'nearly_published' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
className: "".concat(Indexmodules.commonTextBox, " ").concat(Indexmodules.Comingtext),
children: "\u5373\u5C06\u53D1\u5E03"
+ }) : '', item.competition_status && item.competition_status === 'preparing' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#DB780F',
+ border: '1px solid #FDDBB7'
+ },
+ className: "".concat(Indexmodules.commonTextBox, " ").concat(Indexmodules.Finishedtext),
+ children: "\u5F85\u5BA1\u6838"
+ }) : '', item.competition_status && item.competition_status === 'not_passed' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#E30000',
+ border: '1px solid #FFC7C7'
+ },
+ className: "".concat(Indexmodules.commonTextBox, " ").concat(Indexmodules.Finishedtext),
+ children: "\u88AB\u9A73\u56DE"
+ }) : '', item.competition_status && item.competition_status === 'review' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#4237E7',
+ border: '1px solid #B6B1FF'
+ },
+ className: "".concat(Indexmodules.commonTextBox, " ").concat(Indexmodules.Finishedtext),
+ children: "\u5BA1\u6838\u4E2D"
}) : '', item.competition_status && item.competition_status === 'progressing' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#00B187',
+ border: '1px solid #B1F0E1'
+ },
className: "".concat(Indexmodules.commonTextBox, " ").concat(Indexmodules.havetext),
children: "\u8FDB\u884C\u4E2D"
}) : '', item.competition_status && item.competition_status === 'ended' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
@@ -1664,18 +1889,23 @@ var Index_competitionsPage = function competitionsPage(_ref) {
}),
description: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
className: Indexmodules.description,
- children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
- className: Indexmodules.task_hide_2,
- style: {
- height: '43px',
- fontSize: '14px',
- color: '#666666'
- },
- children: item.description ? item.description : '暂无简介~'
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ title: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.description ? item.description : '暂无简介~'
+ }),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Indexmodules.task_hide_2,
+ style: {
+ height: '43px',
+ fontSize: '14px',
+ color: '#666666'
+ },
+ children: item.description ? item.description : '暂无简介~'
+ })
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
className: Indexmodules.bottomText,
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
- children: ["\u7ADE\u8D5B\u65F6\u95F4: ", item.start_time, "\uFF5E", item.end_time]
+ children: ["\u7ADE\u8D5B\u65F6\u95F4\uFF1A", item.start_time, "\uFF5E", item.end_time]
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
style: {
marginLeft: '10px'
@@ -1685,13 +1915,13 @@ var Index_competitionsPage = function competitionsPage(_ref) {
style: {
marginLeft: '10px'
},
- children: ["\u6D4F\u89C8\u6570\uFF1A", item && item.visits_count ? item.visits_count : '暂无']
+ children: ["\u6D4F\u89C8\u6570\uFF1A", item && item.visits_count ? item.visits_count : 0]
})]
})]
})
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
style: {
- width: '16%',
+ width: '13%',
alignItems: 'flex-end',
display: 'flex',
flexDirection: 'column',
@@ -1818,14 +2048,273 @@ var Index_competitionsPage = function competitionsPage(_ref) {
payload: objectSpread2_default()({}, competitions.listParams)
});
}
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: iscreate,
+ width: 610,
+ className: Indexmodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ setiscreate(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Indexmodules.title,
+ children: "\u521B\u5EFA\u7ADE\u8D5B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ setiscreate(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Indexmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-guanbi",
+ style: {
+ color: '#979797',
+ fontSize: '15px'
+ }
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Indexmodules.content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
+ form: form,
+ layout: "vertical",
+ onFinish: /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ setbuttonloading(true);
+ _context.next = 3;
+ return (0,fetch/* default */.ZP)("/api/competitions.json", {
+ method: 'post',
+ body: objectSpread2_default()({}, values)
+ });
+ case 3:
+ res = _context.sent;
+ setbuttonloading(false);
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ message/* default.info */.ZP.info('创建成功');
+ _umi_production_exports.history.push("/competitions/detail/".concat(res === null || res === void 0 ? void 0 : res.identifier, "?type=4"));
+ }
+ case 6:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function (_x6) {
+ return _ref2.apply(this, arguments);
+ };
+ }(),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u7ADE\u8D5B\u540D\u79F0",
+ name: "name",
+ className: Indexmodules.jsinput,
+ rules: [{
+ required: true,
+ validator: function validator(_, value) {
+ var _value$replaceAll;
+ return (value === null || value === void 0 ? void 0 : (_value$replaceAll = value.replaceAll(' ', '')) === null || _value$replaceAll === void 0 ? void 0 : _value$replaceAll.length) > 0 ? Promise.resolve() : Promise.reject('请填写竞赛名称');
+ }
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ maxLength: 60,
+ className: Indexmodules.baseFormItem,
+ showCount: true
+ })
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Indexmodules.bottom,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Indexmodules.no,
+ onClick: function onClick() {
+ setiscreate(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: buttonloading,
+ className: Indexmodules.yes,
+ onClick: function onClick() {
+ form.submit();
+ },
+ children: "\u521B\u5EFA\u7ADE\u8D5B"
+ })]
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: certificate,
+ width: 900,
+ className: Indexmodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setcertificate(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Indexmodules.title,
+ children: "\u8BC1\u4E66\u67E5\u8BE2"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setcertificate(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Indexmodules.close,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-guanbi",
+ style: {
+ color: '#979797',
+ fontSize: '15px'
+ }
+ })
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ marginTop: 30,
+ display: 'flex',
+ marginBottom: 30
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ value: keywords,
+ placeholder: "\u8BF7\u8F93\u5165\u8BC1\u4E66\u7F16\u53F7",
+ onChange: function onChange(e) {
+ setkeywords(e.target.value);
+ },
+ style: {
+ height: 40
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ style: {
+ marginLeft: 10,
+ height: 40,
+ width: 88
+ },
+ type: "primary",
+ onClick: /*#__PURE__*/asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions/get_certificates.json", {
+ method: 'get',
+ params: {
+ keywords: keywords
+ }
+ });
+ case 2:
+ res = _context2.sent;
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ seetdataItems(res === null || res === void 0 ? void 0 : res.data);
+ }
+ case 4:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ })),
+ children: "\u67E5\u8BE2"
+ })]
+ }), dataItems.length == 0 && /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: "tc font16 c-light-black mt40 pb30",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: ImagesIcon/* noDataIcon */.z3,
+ width: "135",
+ alt: ""
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("br", {}), /*#__PURE__*/(0,jsx_runtime.jsx)("p", {
+ className: "mt20",
+ style: {
+ fontSize: 14
+ },
+ children: "\u6682\u65F6\u8FD8\u6CA1\u6709\u76F8\u5173\u6570\u636E\u54E6!"
+ })]
+ }), dataItems.length > 0 && /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomTable */.Gi, {
+ style: {
+ marginLeft: 0
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
+ dataSource: dataItems,
+ pagination: false,
+ columns: [{
+ title: '获奖人',
+ align: 'left',
+ dataIndex: 'province',
+ render: function render(text, item) {
+ var _item$user;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: (item === null || item === void 0 ? void 0 : (_item$user = item.user) === null || _item$user === void 0 ? void 0 : _item$user.name) || '- -'
+ });
+ }
+ }, {
+ title: '获奖名称',
+ align: 'left',
+ dataIndex: 'award_name',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '证书编号',
+ align: 'left',
+ dataIndex: 'cert_num',
+ render: function render(text) {
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: text || '- -'
+ });
+ }
+ }, {
+ title: '竞赛名称',
+ align: 'left',
+ dataIndex: 'cert_num',
+ render: function render(text, item) {
+ var _item$competition;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: (item === null || item === void 0 ? void 0 : (_item$competition = item.competition) === null || _item$competition === void 0 ? void 0 : _item$competition.name) || '- -'
+ });
+ }
+ }, {
+ title: '操作',
+ align: 'right',
+ dataIndex: 'province',
+ render: function render(text, item) {
+ var _item$competition2, _item$user2;
+ return /*#__PURE__*/(0,jsx_runtime.jsx)("a", {
+ target: "_blank",
+ href: "/competitions/exports?id=".concat(item === null || item === void 0 ? void 0 : (_item$competition2 = item.competition) === null || _item$competition2 === void 0 ? void 0 : _item$competition2.id, "&user_id=").concat(item === null || item === void 0 ? void 0 : (_item$user2 = item.user) === null || _item$user2 === void 0 ? void 0 : _item$user2.user_id),
+ children: "\u9884\u89C8\u4E0B\u8F7D"
+ });
+ }
+ }]
+ })
+ })]
})]
});
};
-/* harmony default export */ var Index = ((0,_umi_production_exports.connect)(function (_ref2) {
- var competitions = _ref2.competitions,
- loading = _ref2.loading,
- globalSetting = _ref2.globalSetting,
- user = _ref2.user;
+/* harmony default export */ var Index = ((0,_umi_production_exports.connect)(function (_ref4) {
+ var competitions = _ref4.competitions,
+ loading = _ref4.loading,
+ globalSetting = _ref4.globalSetting,
+ user = _ref4.user;
return {
competitions: competitions,
globalSetting: globalSetting,
diff --git a/p__Competitions__Index__index.chunk.css b/p__Competitions__Index__index.chunk.css
index 23193b6492..56f088664e 100644
--- a/p__Competitions__Index__index.chunk.css
+++ b/p__Competitions__Index__index.chunk.css
@@ -1,616 +1,3 @@
-/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/skeleton/style/index.less ***!
- \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
-/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
-/* stylelint-disable no-duplicate-selectors */
-/* stylelint-disable */
-/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
-.ant-skeleton {
- display: table;
- width: 100%;
-}
-.ant-skeleton-header {
- display: table-cell;
- padding-right: 8px;
- vertical-align: top;
-}
-.ant-skeleton-header .ant-skeleton-avatar {
- display: inline-block;
- vertical-align: top;
- background: rgba(190, 190, 190, 0.2);
- width: 28px;
- height: 28px;
- line-height: 28px;
-}
-.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle {
- border-radius: 50%;
-}
-.ant-skeleton-header .ant-skeleton-avatar-lg {
- width: 32px;
- height: 32px;
- line-height: 32px;
-}
-.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
- border-radius: 50%;
-}
-.ant-skeleton-header .ant-skeleton-avatar-sm {
- width: 22px;
- height: 22px;
- line-height: 22px;
-}
-.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
- border-radius: 50%;
-}
-.ant-skeleton-content {
- display: table-cell;
- width: 100%;
- vertical-align: top;
-}
-.ant-skeleton-content .ant-skeleton-title {
- width: 100%;
- height: 14px;
- background: rgba(190, 190, 190, 0.2);
- border-radius: 2px;
-}
-.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
- margin-top: 20px;
-}
-.ant-skeleton-content .ant-skeleton-paragraph {
- padding: 0;
-}
-.ant-skeleton-content .ant-skeleton-paragraph > li {
- width: 100%;
- height: 14px;
- list-style: none;
- background: rgba(190, 190, 190, 0.2);
- border-radius: 2px;
-}
-.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {
- width: 61%;
-}
-.ant-skeleton-content .ant-skeleton-paragraph > li + li {
- margin-top: 12px;
-}
-.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title {
- margin-top: 8px;
-}
-.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
- margin-top: 20px;
-}
-.ant-skeleton-round .ant-skeleton-content .ant-skeleton-title,
-.ant-skeleton-round .ant-skeleton-content .ant-skeleton-paragraph > li {
- border-radius: 100px;
-}
-.ant-skeleton-active .ant-skeleton-title,
-.ant-skeleton-active .ant-skeleton-paragraph > li,
-.ant-skeleton-active .ant-skeleton-avatar,
-.ant-skeleton-active .ant-skeleton-button,
-.ant-skeleton-active .ant-skeleton-input,
-.ant-skeleton-active .ant-skeleton-image {
- position: relative;
- /* stylelint-disable-next-line property-no-vendor-prefix,value-no-vendor-prefix */
- z-index: 0;
- overflow: hidden;
- background: transparent;
-}
-.ant-skeleton-active .ant-skeleton-title::after,
-.ant-skeleton-active .ant-skeleton-paragraph > li::after,
-.ant-skeleton-active .ant-skeleton-avatar::after,
-.ant-skeleton-active .ant-skeleton-button::after,
-.ant-skeleton-active .ant-skeleton-input::after,
-.ant-skeleton-active .ant-skeleton-image::after {
- position: absolute;
- top: 0;
- right: -150%;
- bottom: 0;
- left: -150%;
- background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%);
- animation: ant-skeleton-loading 1.4s ease infinite;
- content: '';
-}
-.ant-skeleton.ant-skeleton-block {
- width: 100%;
-}
-.ant-skeleton.ant-skeleton-block .ant-skeleton-button {
- width: 100%;
-}
-.ant-skeleton.ant-skeleton-block .ant-skeleton-input {
- width: 100%;
-}
-.ant-skeleton-element {
- display: inline-block;
- width: auto;
-}
-.ant-skeleton-element .ant-skeleton-button {
- display: inline-block;
- vertical-align: top;
- background: rgba(190, 190, 190, 0.2);
- border-radius: 2px;
- width: 56px;
- min-width: 56px;
- height: 28px;
- line-height: 28px;
-}
-.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-square {
- width: 28px;
- min-width: 28px;
-}
-.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {
- width: 28px;
- min-width: 28px;
- border-radius: 50%;
-}
-.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round {
- border-radius: 28px;
-}
-.ant-skeleton-element .ant-skeleton-button-lg {
- width: 64px;
- min-width: 64px;
- height: 32px;
- line-height: 32px;
-}
-.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-square {
- width: 32px;
- min-width: 32px;
-}
-.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle {
- width: 32px;
- min-width: 32px;
- border-radius: 50%;
-}
-.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round {
- border-radius: 32px;
-}
-.ant-skeleton-element .ant-skeleton-button-sm {
- width: 44px;
- min-width: 44px;
- height: 22px;
- line-height: 22px;
-}
-.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-square {
- width: 22px;
- min-width: 22px;
-}
-.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle {
- width: 22px;
- min-width: 22px;
- border-radius: 50%;
-}
-.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round {
- border-radius: 22px;
-}
-.ant-skeleton-element .ant-skeleton-avatar {
- display: inline-block;
- vertical-align: top;
- background: rgba(190, 190, 190, 0.2);
- width: 28px;
- height: 28px;
- line-height: 28px;
-}
-.ant-skeleton-element .ant-skeleton-avatar.ant-skeleton-avatar-circle {
- border-radius: 50%;
-}
-.ant-skeleton-element .ant-skeleton-avatar-lg {
- width: 32px;
- height: 32px;
- line-height: 32px;
-}
-.ant-skeleton-element .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
- border-radius: 50%;
-}
-.ant-skeleton-element .ant-skeleton-avatar-sm {
- width: 22px;
- height: 22px;
- line-height: 22px;
-}
-.ant-skeleton-element .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
- border-radius: 50%;
-}
-.ant-skeleton-element .ant-skeleton-input {
- display: inline-block;
- vertical-align: top;
- background: rgba(190, 190, 190, 0.2);
- width: 140px;
- min-width: 140px;
- height: 28px;
- line-height: 28px;
-}
-.ant-skeleton-element .ant-skeleton-input-lg {
- width: 160px;
- min-width: 160px;
- height: 32px;
- line-height: 32px;
-}
-.ant-skeleton-element .ant-skeleton-input-sm {
- width: 110px;
- min-width: 110px;
- height: 22px;
- line-height: 22px;
-}
-.ant-skeleton-element .ant-skeleton-image {
- display: flex;
- align-items: center;
- justify-content: center;
- vertical-align: top;
- background: rgba(190, 190, 190, 0.2);
- width: 96px;
- height: 96px;
- line-height: 96px;
-}
-.ant-skeleton-element .ant-skeleton-image.ant-skeleton-image-circle {
- border-radius: 50%;
-}
-.ant-skeleton-element .ant-skeleton-image-path {
- fill: #bfbfbf;
-}
-.ant-skeleton-element .ant-skeleton-image-svg {
- width: 48px;
- height: 48px;
- line-height: 48px;
- max-width: 192px;
- max-height: 192px;
-}
-.ant-skeleton-element .ant-skeleton-image-svg.ant-skeleton-image-circle {
- border-radius: 50%;
-}
-@keyframes ant-skeleton-loading {
- 0% {
- transform: translateX(-37.5%);
- }
- 100% {
- transform: translateX(37.5%);
- }
-}
-.ant-skeleton-rtl {
- direction: rtl;
-}
-.ant-skeleton-rtl .ant-skeleton-header {
- padding-right: 0;
- padding-left: 16px;
-}
-.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,
-.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li {
- animation-name: ant-skeleton-loading-rtl;
-}
-.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar {
- animation-name: ant-skeleton-loading-rtl;
-}
-@keyframes ant-skeleton-loading-rtl {
- 0% {
- background-position: 0% 50%;
- }
- 100% {
- background-position: 100% 50%;
- }
-}
-/* stylelint-disable no-duplicate-selectors */
-/* stylelint-disable */
-/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
-
-/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[1].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[1].use[3]!./node_modules/antd/es/list/style/index.less ***!
- \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
-/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
-/* stylelint-disable no-duplicate-selectors */
-/* stylelint-disable */
-/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
-.ant-list {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- color: rgba(0, 0, 0, 0.85);
- font-size: 12px;
- font-variant: tabular-nums;
- line-height: 1.66667;
- list-style: none;
- font-feature-settings: tnum, "tnum";
- position: relative;
-}
-.ant-list * {
- outline: none;
-}
-.ant-list-pagination {
- margin-top: 16px;
- text-align: right;
-}
-.ant-list-pagination .ant-pagination-options {
- text-align: left;
-}
-.ant-list-more {
- margin-top: 8px;
- text-align: center;
-}
-.ant-list-more button {
- padding-right: 32px;
- padding-left: 32px;
-}
-.ant-list-spin {
- min-height: 40px;
- text-align: center;
-}
-.ant-list-empty-text {
- padding: 8px;
- color: rgba(0, 0, 0, 0.25);
- font-size: 12px;
- text-align: center;
-}
-.ant-list-items {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-.ant-list-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 8px 0;
- color: rgba(0, 0, 0, 0.85);
-}
-.ant-list-item-meta {
- display: flex;
- flex: 1 1;
- align-items: flex-start;
- max-width: 100%;
-}
-.ant-list-item-meta-avatar {
- margin-right: 8px;
-}
-.ant-list-item-meta-content {
- flex: 1 0;
- width: 0;
- color: rgba(0, 0, 0, 0.85);
-}
-.ant-list-item-meta-title {
- margin-bottom: 4px;
- color: rgba(0, 0, 0, 0.85);
- font-size: 12px;
- line-height: 1.66667;
-}
-.ant-list-item-meta-title > a {
- color: rgba(0, 0, 0, 0.85);
- transition: all 0.3s;
-}
-.ant-list-item-meta-title > a:hover {
- color: #3061D0;
-}
-.ant-list-item-meta-description {
- color: rgba(0, 0, 0, 0.45);
- font-size: 12px;
- line-height: 1.66667;
-}
-.ant-list-item-action {
- flex: 0 0 auto;
- margin-left: 48px;
- padding: 0;
- font-size: 0;
- list-style: none;
-}
-.ant-list-item-action > li {
- position: relative;
- display: inline-block;
- padding: 0 4px;
- color: rgba(0, 0, 0, 0.45);
- font-size: 12px;
- line-height: 1.66667;
- text-align: center;
-}
-.ant-list-item-action > li:first-child {
- padding-left: 0;
-}
-.ant-list-item-action-split {
- position: absolute;
- top: 50%;
- right: 0;
- width: 1px;
- height: 14px;
- margin-top: -7px;
- background-color: #f0f0f0;
-}
-.ant-list-header {
- background: transparent;
-}
-.ant-list-footer {
- background: transparent;
-}
-.ant-list-header,
-.ant-list-footer {
- padding-top: 8px;
- padding-bottom: 8px;
-}
-.ant-list-empty {
- padding: 8px 0;
- color: rgba(0, 0, 0, 0.45);
- font-size: 12px;
- text-align: center;
-}
-.ant-list-split .ant-list-item {
- border-bottom: 1px solid #f0f0f0;
-}
-.ant-list-split .ant-list-item:last-child {
- border-bottom: none;
-}
-.ant-list-split .ant-list-header {
- border-bottom: 1px solid #f0f0f0;
-}
-.ant-list-split.ant-list-empty .ant-list-footer {
- border-top: 1px solid #f0f0f0;
-}
-.ant-list-loading .ant-list-spin-nested-loading {
- min-height: 32px;
-}
-.ant-list-split.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child {
- border-bottom: 1px solid #f0f0f0;
-}
-.ant-list-lg .ant-list-item {
- padding: 12px 16px;
-}
-.ant-list-sm .ant-list-item {
- padding: 4px 12px;
-}
-.ant-list-vertical .ant-list-item {
- align-items: initial;
-}
-.ant-list-vertical .ant-list-item-main {
- display: block;
- flex: 1 1;
-}
-.ant-list-vertical .ant-list-item-extra {
- margin-left: 40px;
-}
-.ant-list-vertical .ant-list-item-meta {
- margin-bottom: 8px;
-}
-.ant-list-vertical .ant-list-item-meta-title {
- margin-bottom: 8px;
- color: rgba(0, 0, 0, 0.85);
- font-size: 14px;
- line-height: 24px;
-}
-.ant-list-vertical .ant-list-item-action {
- margin-top: 8px;
- margin-left: auto;
-}
-.ant-list-vertical .ant-list-item-action > li {
- padding: 0 8px;
-}
-.ant-list-vertical .ant-list-item-action > li:first-child {
- padding-left: 0;
-}
-.ant-list-grid .ant-col > .ant-list-item {
- display: block;
- max-width: 100%;
- margin-bottom: 8px;
- padding-top: 0;
- padding-bottom: 0;
- border-bottom: none;
-}
-.ant-list-item-no-flex {
- display: block;
-}
-.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
- float: right;
-}
-.ant-list-bordered {
- border: 1px solid #d9d9d9;
- border-radius: 2px;
-}
-.ant-list-bordered .ant-list-header {
- padding-right: 16px;
- padding-left: 16px;
-}
-.ant-list-bordered .ant-list-footer {
- padding-right: 16px;
- padding-left: 16px;
-}
-.ant-list-bordered .ant-list-item {
- padding-right: 16px;
- padding-left: 16px;
-}
-.ant-list-bordered .ant-list-pagination {
- margin: 8px 16px;
-}
-.ant-list-bordered.ant-list-sm .ant-list-item {
- padding: 4px 12px;
-}
-.ant-list-bordered.ant-list-sm .ant-list-header,
-.ant-list-bordered.ant-list-sm .ant-list-footer {
- padding: 4px 12px;
-}
-.ant-list-bordered.ant-list-lg .ant-list-item {
- padding: 12px 16px;
-}
-.ant-list-bordered.ant-list-lg .ant-list-header,
-.ant-list-bordered.ant-list-lg .ant-list-footer {
- padding: 12px 16px;
-}
-@media screen and (max-width: 768px) {
- .ant-list-item-action {
- margin-left: 24px;
- }
- .ant-list-vertical .ant-list-item-extra {
- margin-left: 24px;
- }
-}
-@media screen and (max-width: 576px) {
- .ant-list-item {
- flex-wrap: wrap;
- }
- .ant-list-item-action {
- margin-left: 12px;
- }
- .ant-list-vertical .ant-list-item {
- flex-wrap: wrap-reverse;
- }
- .ant-list-vertical .ant-list-item-main {
- min-width: 220px;
- }
- .ant-list-vertical .ant-list-item-extra {
- margin: auto auto 16px;
- }
-}
-.ant-list-rtl {
- direction: rtl;
- text-align: right;
-}
-.ant-list-rtl .ReactVirtualized__List .ant-list-item {
- direction: rtl;
-}
-.ant-list-rtl .ant-list-pagination {
- text-align: left;
-}
-.ant-list-rtl .ant-list-item-meta-avatar {
- margin-right: 0;
- margin-left: 8px;
-}
-.ant-list-rtl .ant-list-item-action {
- margin-right: 48px;
- margin-left: 0;
-}
-.ant-list.ant-list-rtl .ant-list-item-action > li:first-child {
- padding-right: 0;
- padding-left: 8px;
-}
-.ant-list-rtl .ant-list-item-action-split {
- right: auto;
- left: 0;
-}
-.ant-list-rtl.ant-list-vertical .ant-list-item-extra {
- margin-right: 40px;
- margin-left: 0;
-}
-.ant-list-rtl.ant-list-vertical .ant-list-item-action {
- margin-right: auto;
-}
-.ant-list-rtl .ant-list-vertical .ant-list-item-action > li:first-child {
- padding-right: 0;
- padding-left: 8px;
-}
-.ant-list-rtl .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
- float: left;
-}
-@media screen and (max-width: 768px) {
- .ant-list-rtl .ant-list-item-action {
- margin-right: 24px;
- margin-left: 0;
- }
- .ant-list-rtl .ant-list-vertical .ant-list-item-extra {
- margin-right: 24px;
- margin-left: 0;
- }
-}
-@media screen and (max-width: 576px) {
- .ant-list-rtl .ant-list-item-action {
- margin-right: 22px;
- margin-left: 0;
- }
- .ant-list-rtl.ant-list-vertical .ant-list-item-extra {
- margin: auto auto 16px;
- }
-}
-/* stylelint-disable no-duplicate-selectors */
-/* stylelint-disable */
-/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
-
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/Competitions/Index/index.less?modules ***!
\*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@@ -671,9 +58,6 @@
.tabsWrap___rNsVP [class~='ant-tabs-nav']::before {
background: #f1f1f1;
}
-.searchWrap___NzDrD {
- margin-top: 24px;
-}
.searchWrap___NzDrD .search___O3S5n {
display: flex;
align-items: center;
@@ -681,7 +65,7 @@
border-radius: 19px;
height: 38px;
width: 418px;
- padding-left: 20px;
+ padding-left: 8px;
background-color: #f6f7f9;
border: none;
}
@@ -704,6 +88,34 @@
.searchWrap___NzDrD .search___O3S5n input {
background-color: #f6f7f9;
}
+.btns___gL_1J {
+ margin-top: 35px;
+}
+.btns___gL_1J > div {
+ display: inline-block;
+ height: 32px;
+ background: #f6f7f9;
+ box-shadow: 0px 2px 4px 0px #e0dfe1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 4px;
+ border: 1px solid #dadbde;
+ font-size: 14px;
+ color: #3b3e47;
+ line-height: 30px;
+ margin-right: 23px;
+ padding: 0 16px;
+ position: relative;
+ cursor: pointer;
+}
+.btns___gL_1J > div:hover {
+ color: #165dff;
+ border: 1px solid #bacffe;
+}
+.btns___gL_1J > div img {
+ position: absolute;
+ z-index: 1;
+ top: -21px;
+ right: 22px;
+}
.searchWrap_right___GVEny {
float: right;
margin-top: -50px;
@@ -877,7 +289,7 @@
font-weight: 400;
margin-left: 6px;
height: 26px;
- line-height: 26px;
+ line-height: 24px;
padding: 0 9px;
display: inline-block;
border-radius: 13px;
@@ -960,6 +372,70 @@
-webkit-line-clamp: 1;
overflow: hidden;
}
+.scoremodal____yQdA [class~='ant-modal-body'] {
+ padding: 25px;
+}
+.scoremodal____yQdA .title___jb7xW {
+ color: #000000;
+ font-size: 16px;
+ font-weight: 500;
+ display: flex;
+ width: 100%;
+}
+.scoremodal____yQdA .content___NsK20 {
+ margin-top: 25px;
+}
+.scoremodal____yQdA .bottom___CyoKb {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal____yQdA .bottom___CyoKb .yes___s2kKh {
+ padding: 0px 20px;
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-weight: 400;
+ color: #FFFFFF;
+ border: 0px;
+}
+.scoremodal____yQdA .bottom___CyoKb .no___Adxtg {
+ margin-right: 20px;
+ width: 60px;
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-weight: 400;
+ color: #464F66;
+ line-height: 14px;
+}
+.baseFormItem___rawKU {
+ font-size: 14px;
+}
+.baseFormItem___rawKU input[class~='ant-input'] {
+ height: 38px;
+}
+.baseFormItem___rawKU input[class~='ant-input-number-input'] {
+ height: 46px;
+}
+.baseFormItem___rawKU div[class~='ant-select-selector'] {
+ height: 46px;
+}
+.baseFormItem___rawKU div[class~='ant-select-selector'] span[class~='ant-select-selection-item'] {
+ line-height: 46px;
+}
+.baseFormItem___rawKU div[class~='ant-select-selector'] span[class~='ant-select-selection-placeholder'] {
+ line-height: 46px;
+}
+.baseFormItem___rawKU span[class~='ant-select-arrow'] {
+ right: 12px;
+}
+.jsinput___XEFKk div[class~='ant-form-item-label'] {
+ margin-bottom: 10px;
+}
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
@@ -974,7 +450,7 @@
border-radius: 19px;
height: 38px;
width: 418px;
- padding-left: 20px;
+ padding-left: 8px;
background-color: #f6f7f9;
border: none;
}
diff --git a/p__Competitions__Update__index.async.js b/p__Competitions__Update__index.async.js
index 6a926efb80..d1f8bdd8d2 100644
--- a/p__Competitions__Update__index.async.js
+++ b/p__Competitions__Update__index.async.js
@@ -221,12 +221,13 @@ var competitionDetails = function competitionDetails(_ref) {
identifier: identifier,
Teannameid: Teannameid,
name: personname,
- image: letimg ? Croppers.current.getCroppedCanvas().toDataURL("image/jpeg") : undefined
+ image: Croppers.current.getCroppedCanvas().toDataURL("image/jpeg")
}
});
case 5:
data = _context2.sent;
if ((data === null || data === void 0 ? void 0 : data.status) === 0) {
+ // return
message/* default.info */.ZP.info('修改成功');
_umi_production_exports.history.push("/competitions/".concat(identifier, "/detail/enroll"));
}
diff --git a/p__Demo__index.async.js b/p__Demo__index.async.js
index 69a341b631..e56e42f04f 100644
--- a/p__Demo__index.async.js
+++ b/p__Demo__index.async.js
@@ -2264,8 +2264,8 @@ var shixuns = __webpack_require__(56088);
var lodash = __webpack_require__(96486);
// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules
var verifyLogin = __webpack_require__(7303);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
;// CONCATENATED MODULE: ./src/pages/Demo/Warehouse/components/Tree.tsx
diff --git a/p__Engineering__Lists__CurseSetting__index.async.js b/p__Engineering__Lists__CurseSetting__index.async.js
index 27aca34fe9..d3eeea0fcb 100644
--- a/p__Engineering__Lists__CurseSetting__index.async.js
+++ b/p__Engineering__Lists__CurseSetting__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Engineering__Lists__GraduationIndex__index.async.js b/p__Engineering__Lists__GraduationIndex__index.async.js
index 790e0fa853..74c1910d11 100644
--- a/p__Engineering__Lists__GraduationIndex__index.async.js
+++ b/p__Engineering__Lists__GraduationIndex__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Engineering__Norm__List__index.async.js b/p__Engineering__Norm__List__index.async.js
index fc41563c66..34c4937e60 100644
--- a/p__Engineering__Norm__List__index.async.js
+++ b/p__Engineering__Norm__List__index.async.js
@@ -156,7 +156,7 @@ var NormTabList = function NormTabList(_ref) {
})
}), /*#__PURE__*/(0,jsx_runtime.jsx)(typography/* default.Link */.Z.Link, {
onClick: function onClick() {
- debugger;
+ // debugger
_umi_production_exports.history.push("/engineering/evaluate/norm/".concat(headerData.active[evaluateList/* evaluateListHeaderKey.1 */.k[1]], "/").concat(record.id));
},
children: /*#__PURE__*/(0,jsx_runtime.jsx)("i", {
diff --git a/p__Forums__Index__index.async.js b/p__Forums__Index__index.async.js
index 3b0832e3d0..53f5de84f2 100644
--- a/p__Forums__Index__index.async.js
+++ b/p__Forums__Index__index.async.js
@@ -308,8 +308,8 @@ var col = __webpack_require__(15746);
;// CONCATENATED MODULE: ./src/pages/Forums/Index/components/Right/index.less?modules
// extracted by mini-css-extract-plugin
/* harmony default export */ var Rightmodules = ({"wrap":"wrap___HDsfM","ads":"ads___lVzc7","hotTags":"hotTags___ndI8R","tagsWrap":"tagsWrap___UYU1b","tag":"tag___ZTYgc","hotTopics":"hotTopics___QnHrn","questionItem":"questionItem___gukRM","questionTitle":"questionTitle___lFkBk","bottomText":"bottomText___dV_IO","recommendShixun":"recommendShixun___jC_LV","titleImg":"titleImg___nPtD7","recommendItem":"recommendItem___wP9xO","recommendItemInfo":"recommendItemInfo___vRNtS","shixunName":"shixunName___C5xxO","num":"num___aC0f1"});
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
;// CONCATENATED MODULE: ./src/assets/images/forums/hot-tags.png
var hot_tags_namespaceObject = "data:image/png;base64,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";
;// CONCATENATED MODULE: ./src/assets/images/forums/hot-topics.png
diff --git a/p__Innovation__Detail__index.async.js b/p__Innovation__Detail__index.async.js
index 2552841b43..40559cf711 100644
--- a/p__Innovation__Detail__index.async.js
+++ b/p__Innovation__Detail__index.async.js
@@ -2154,8 +2154,8 @@ var shixuns = __webpack_require__(56088);
var util = __webpack_require__(29427);
// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules
var verifyLogin = __webpack_require__(7303);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
;// CONCATENATED MODULE: ./src/pages/Innovation/Detail/components/CodePane/DirTree/index.tsx
diff --git a/p__Innovation__MyProject__index.async.js b/p__Innovation__MyProject__index.async.js
index c80911c218..167963c1ef 100644
--- a/p__Innovation__MyProject__index.async.js
+++ b/p__Innovation__MyProject__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Innovation__PublicProject__index.async.js b/p__Innovation__PublicProject__index.async.js
index 359031b891..627222b50e 100644
--- a/p__Innovation__PublicProject__index.async.js
+++ b/p__Innovation__PublicProject__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Messages__Private__index.async.js b/p__Messages__Private__index.async.js
index 49741ef854..e780547a75 100644
--- a/p__Messages__Private__index.async.js
+++ b/p__Messages__Private__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Paperlibrary__Add__index.async.js b/p__Paperlibrary__Add__index.async.js
index 8e01f90474..33e4dc028d 100644
--- a/p__Paperlibrary__Add__index.async.js
+++ b/p__Paperlibrary__Add__index.async.js
@@ -234,7 +234,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Paperlibrary__Random__ExchangeFromProblemSet__index.async.js b/p__Paperlibrary__Random__ExchangeFromProblemSet__index.async.js
index a2bed1c61a..997b780431 100644
--- a/p__Paperlibrary__Random__ExchangeFromProblemSet__index.async.js
+++ b/p__Paperlibrary__Random__ExchangeFromProblemSet__index.async.js
@@ -890,7 +890,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Paperlibrary__index.async.js b/p__Paperlibrary__index.async.js
index 8e3868607f..5f84679b66 100644
--- a/p__Paperlibrary__index.async.js
+++ b/p__Paperlibrary__index.async.js
@@ -628,7 +628,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Paths__Detail__Statistics__index.async.js b/p__Paths__Detail__Statistics__index.async.js
index 0947417389..bbf38632c4 100644
--- a/p__Paths__Detail__Statistics__index.async.js
+++ b/p__Paths__Detail__Statistics__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Paths__Detail__id.async.js b/p__Paths__Detail__id.async.js
index f27e0b08e7..220b58e5a2 100644
--- a/p__Paths__Detail__id.async.js
+++ b/p__Paths__Detail__id.async.js
@@ -1416,7 +1416,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
@@ -7151,8 +7151,8 @@ var react_infinite_scroller = __webpack_require__(246);
var react_infinite_scroller_default = /*#__PURE__*/__webpack_require__.n(react_infinite_scroller);
// EXTERNAL MODULE: ./src/service/classrooms.ts
var classrooms = __webpack_require__(73290);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
;// CONCATENATED MODULE: ./src/pages/Paths/Detail/components/Right/components/AddCollaboratorModal/index.tsx
diff --git a/p__Paths__HigherVocationalEducation__index.async.js b/p__Paths__HigherVocationalEducation__index.async.js
index a675b1bb6f..2401c13724 100644
--- a/p__Paths__HigherVocationalEducation__index.async.js
+++ b/p__Paths__HigherVocationalEducation__index.async.js
@@ -49,7 +49,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Problemset__index.async.js b/p__Problemset__index.async.js
index 4aff588c87..8d0393c48c 100644
--- a/p__Problemset__index.async.js
+++ b/p__Problemset__index.async.js
@@ -890,7 +890,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Shixuns__Detail__Dataset__index.async.js b/p__Shixuns__Detail__Dataset__index.async.js
index 38146f6040..0d232aaee1 100644
--- a/p__Shixuns__Detail__Dataset__index.async.js
+++ b/p__Shixuns__Detail__Dataset__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
@@ -160,7 +160,7 @@ var reNameFile = /*#__PURE__*/(/* unused pure expression or super */ null && (fu
// .catch(e => console.log(e));
})["catch"](function (e) {
console.log(e);
- debugger;
+ // debugger
});
}));
case 7:
@@ -418,7 +418,7 @@ var UploadFile = function UploadFile(_ref4) {
console.log("err:", err);
});
} catch (e) {
- debugger;
+ // debugger
}
}));
case 19:
diff --git a/p__Shixuns__Detail__Discuss__index.async.js b/p__Shixuns__Detail__Discuss__index.async.js
index cc2e21d053..2e6cc18a33 100644
--- a/p__Shixuns__Detail__Discuss__index.async.js
+++ b/p__Shixuns__Detail__Discuss__index.async.js
@@ -527,8 +527,8 @@ var SvgStar = function SvgStar(props) {
/* harmony default export */ var star = ("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTUuNTAzIDIxLjg5NmEyLjA2NyAyLjA2NyAwIDAgMS0uODctLjIwMSA0NTEuOTg3IDQ1MS45ODcgMCAwIDEtNC4zNzYtMi4xMWMtMS40NjYuNjktMi45MzEgMS4zODQtNC4zOTYgMi4wOC0uNjc0LjI5OS0xLjMzLjI2LTEuODE2LS4wOTYtLjQ1OC0uMzM1LS42ODUtLjkxMi0uNjI0LTEuNTc5LjE3My0xLjU2LjQ2NS0zLjY5My41NzQtNC40ODVhMTg4LjAyOSAxODguMDI5IDAgMCAxLTMuNTg3LTMuOTIyIDEuNSAxLjUgMCAwIDEtLjMtMS41MWMuMjEzLS41NzQuNzYtLjk4MiAxLjQ3Mi0xLjA4Nmw0LjY1NS0uODUzQTUxMi45NSA1MTIuOTUgMCAwIDEgOC43ODcgMy43M2MuNzE3LTEuMzQ0IDEuNDI2LTEuMzQ0IDEuOC0xLjIwOS40MDcuMTM0Ljc5Mi41MzEgMS4xNzcgMS4yMjMuODI5IDEuNDMzIDIuMDggMy42NDIgMi41MDQgNC4zOTFsNC42MS44NThjLjY3OC4xIDEuMjE4LjUwNyAxLjQyOCAxLjA4NGExLjUwNyAxLjUwNyAwIDAgMS0uMjg2IDEuNTA0IDE5Mi44MDggMTkyLjgwOCAwIDAgMS0zLjU1NiAzLjk0NGMuMTA0Ljc4OC4zODggMi45MjcuNTczIDQuNDc5LjA3MS42ODUtLjE1MiAxLjI2OS0uNjE2IDEuNjA5YTEuNTUgMS41NSAwIDAgMS0uOTE2LjI4NGgtLjAwMloiIGZpbGw9IiM1MDkxRkYiLz48cGF0aCBkPSJNMjEuNzA2IDQuNDYyYS41NTcuNTU3IDAgMCAxLS4yNDcuMDczYy0uNDUuMDMtMS4xMjIuMDY3LTEuMzk3LjA4bC0uNzc4IDEuMmMtLjEyMi4xOC0uMjkuMjY1LS40NjQuMjQtLjE2My0uMDItLjMwNi0uMTQtLjM5LS4zMjlhNjAuODEgNjAuODEgMCAwIDEtLjUyOS0xLjI3OCA1My4wMDkgNTMuMDA5IDAgMCAxLTEuNDc2LS41MTguNDc1LjQ3NSAwIDAgMS0uMy0uMzYuNTMzLjUzMyAwIDAgMSAuMi0uNTA1bDEuMDI1LS45MWMtLjAxMS0uNTE2LS4wMi0xLjAzMi0uMDI4LTEuNTQ4LS4wMjQtLjQ2My4xNS0uNTY4LjI2NC0uNTg1LjEyMS0uMDI2LjI3NS4wMjQuNDc0LjE1MS40MTkuMjYyIDEuMDYuNjY3IDEuMjc3LjgwNGwxLjI3LS40NDhhLjQ5LjQ5IDAgMCAxIC41MTUuMDhjLjEyNC4xMS4xODMuMjguMTU1LjQ0MS0uMDkuNTI2LS4xODYgMS4wNTItLjI5IDEuNTc0LjE0NS4xOTQuNTM2LjcyMi44MTQgMS4xMS4xMi4xNzIuMTUyLjM2LjA4OC41MThhLjQzNS40MzUgMCAwIDEtLjE4NS4yMWguMDAyWk0yLjg1OSA1LjgzYS4yODcuMjg3IDAgMCAxLS4wOTMtLjA5MSA2Mi4xNyA2Mi4xNyAwIDAgMS0uMzgyLS42MDMgNDkuOTkgNDkuOTkgMCAwIDAtLjctLjA0NWMtLjEwNi0uMDEtLjE4NS0uMDYzLS4yMTgtLjE0NmEuMjc2LjI3NiAwIDAgMSAuMDQtLjI1NWMuMTQtLjE5Ny4zMzQtLjQ2LjQwNy0uNTU3YTI4LjM5NyAyOC4zOTcgMCAwIDEtLjE0OS0uNzg2LjI0My4yNDMgMCAwIDEgLjA3Ni0uMjIzLjI1LjI1IDAgMCAxIC4yNjQtLjAzN2wuNjQuMjI4Yy4xMDgtLjA2OC40MzEtLjI3LjY0NC0uMzk4LjE5LS4xMjguMjc4LS4wNzUuMzE0LS4wMy4wNC4wNDcuMDU5LjEyOC4wNTQuMjVsLS4wMTkuNzY4LjUwNi40NTNhLjI1OC4yNTggMCAwIDEgLjA5NS4yNDkuMjM4LjIzOCAwIDAgMS0uMTQ3LjE3OGMtLjI0NS4wOTItLjQ5LjE4LS43MzYuMjY1LS4wNDcuMTEzLS4xNzEuNDItLjI2NC42NC0uMDQ0LjA5NS0uMTE1LjE1OS0uMTk3LjE2OGEuMjA4LjIwOCAwIDAgMS0uMTM1LS4wMjhaIiBmaWxsPSIjQjZEMEZDIi8+PC9nPjwvc3ZnPg==");
// EXTERNAL MODULE: ./node_modules/echarts-for-react/lib/index.js
var lib = __webpack_require__(50976);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
// EXTERNAL MODULE: ./node_modules/echarts-wordcloud/index.js
var echarts_wordcloud = __webpack_require__(89777);
// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
diff --git a/p__Shixuns__Detail__Merge__index.async.js b/p__Shixuns__Detail__Merge__index.async.js
index 05da6019aa..f34c080228 100644
--- a/p__Shixuns__Detail__Merge__index.async.js
+++ b/p__Shixuns__Detail__Merge__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index.async.js b/p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index.async.js
index 0c8681a17e..bec3d89b7f 100644
--- a/p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index.async.js
+++ b/p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index.async.js
@@ -1458,8 +1458,8 @@ var FixedButton = __webpack_require__(36845);
var Loading = __webpack_require__(58194);
// EXTERNAL MODULE: ./src/pages/Shixuns/Edit/utils/index.tsx
var utils = __webpack_require__(94663);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
// EXTERNAL MODULE: ./src/utils/authority.ts
var authority = __webpack_require__(7);
;// CONCATENATED MODULE: ./src/pages/Shixuns/Edit/body/Level/Challenges/EditQuestion/index.tsx
diff --git a/p__Shixuns__Edit__index.async.js b/p__Shixuns__Edit__index.async.js
index 8e3ac4420d..9b4387c647 100644
--- a/p__Shixuns__Edit__index.async.js
+++ b/p__Shixuns__Edit__index.async.js
@@ -205,7 +205,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
@@ -1227,7 +1227,7 @@ var reNameFile = /*#__PURE__*/(/* unused pure expression or super */ null && (fu
// .catch(e => console.log(e));
})["catch"](function (e) {
console.log(e);
- debugger;
+ // debugger
});
}));
case 7:
@@ -1485,7 +1485,7 @@ var UploadFile = function UploadFile(_ref4) {
console.log("err:", err);
});
} catch (e) {
- debugger;
+ // debugger
}
}));
case 19:
@@ -3113,8 +3113,11 @@ var SuperiorTabs = function SuperiorTabs(_ref) {
dataSource = _ref$dataSource === void 0 ? [] : _ref$dataSource,
value = _ref.value,
onChange = _ref.onChange,
- className = _ref.className;
+ className = _ref.className,
+ _ref$style = _ref.style,
+ style = _ref$style === void 0 ? {} : _ref$style;
return /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ style: style,
className: classnames_default()(SuperiorTabsmodules.tabs, className),
children: dataSource.map(function (e) {
return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
@@ -3749,7 +3752,7 @@ var CustomTabs = function CustomTabs(_ref) {
return /*#__PURE__*/(0,jsx_runtime.jsxs)("aside", {
className: CustomTabsmodules.tab,
onClick: function onClick() {
- return onChange(item.id);
+ onChange(item.id);
},
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
className: value === item.id ? CustomTabsmodules.active : '',
@@ -12933,8 +12936,8 @@ var moment_default = /*#__PURE__*/__webpack_require__.n(moment);
/* harmony default export */ var Datasetmodules = ({"flex_box_center":"flex_box_center___l5eTc","flex_space_between":"flex_space_between___k0OR7","flex_box_vertical_center":"flex_box_vertical_center___OKlIC","flex_box_center_end":"flex_box_center_end___hN9A6","flex_box_column":"flex_box_column___ijTq_","dataset":"dataset___dSWAV","header":"header___BzxI4","title":"title___cPEyN","dataPath":"dataPath___wJ6mR","pathTitle":"pathTitle___TOS2Z","btns":"btns___jGE8o","content":"content___s4ep8","customTable":"customTable___OG3_9","row":"row___ONd7r","empty":"empty___CgtTE","path":"path___Cg5rX","text":"text___SCLRV","actionsBtns":"actionsBtns___L5tdC","customModal":"customModal___qVeG3","shareModal":"shareModal___HedYo","fileName":"fileName___x56US","renameModal":"renameModal___SmCAd","errorDes":"errorDes___VLR_5","uploadFileModal":"uploadFileModal___pYYDB"});
// EXTERNAL MODULE: ./src/pages/Shixuns/Edit/body/Dataset/components/UploadFile/index.tsx + 1 modules
var UploadFile = __webpack_require__(53744);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
;// CONCATENATED MODULE: ./src/pages/Shixuns/Edit/body/Dataset/index.tsx
diff --git a/p__Shixuns__Edit__index.chunk.css b/p__Shixuns__Edit__index.chunk.css
index 94810e8453..e5d1a18672 100644
--- a/p__Shixuns__Edit__index.chunk.css
+++ b/p__Shixuns__Edit__index.chunk.css
@@ -2471,6 +2471,7 @@ ul.menu___E01hA [class~='ant-dropdown-menu-item-active'] {
background: #f6f7f9;
box-shadow: inset 0px 1px 3px 0px #d7d8d9;
border-radius: 16px;
+ display: inline-block;
}
.tabs___GTqPV span {
display: inline-block;
@@ -2612,6 +2613,7 @@ ul.menu___E01hA [class~='ant-dropdown-menu-item-active'] {
color: rgba(0, 0, 0, 0.88);
font-weight: 400;
font-size: 14px;
+ text-align: left;
line-height: 1.57142857;
cursor: pointer;
transition: all 0.2s;
@@ -3273,12 +3275,14 @@ ul.menu___E01hA [class~='ant-dropdown-menu-item-active'] {
.table___zOWN7 .ant-table-tbody tr td {
border: none;
color: #000000;
+ border-bottom: 1px solid #f6F7F9;
}
.table___zOWN7 .ant-table-thead > tr > th {
background: white;
border: none;
color: #5f6368;
font-weight: 400;
+ background: #f6F7F9;
}
.table___zOWN7 .ant-table-thead > tr > th::before {
display: none;
diff --git a/p__User__Detail__Classrooms__index.async.js b/p__User__Detail__Classrooms__index.async.js
index a42256944a..928b79c2e6 100644
--- a/p__User__Detail__Classrooms__index.async.js
+++ b/p__User__Detail__Classrooms__index.async.js
@@ -643,8 +643,8 @@ var Items = function Items(_ref) {
});
};
/* harmony default export */ var Items_table = (Items);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
// EXTERNAL MODULE: ./src/components/Header/components/Join/JoinClassroomModal.tsx
var JoinClassroomModal = __webpack_require__(16823);
// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules
diff --git a/p__User__Detail__Competitions__index.async.js b/p__User__Detail__Competitions__index.async.js
new file mode 100644
index 0000000000..bd23bc4ebd
--- /dev/null
+++ b/p__User__Detail__Competitions__index.async.js
@@ -0,0 +1,564 @@
+"use strict";
+(self["webpackChunk"] = self["webpackChunk"] || []).push([[12076],{
+
+/***/ 92507:
+/*!******************************************************************!*\
+ !*** ./src/pages/User/Detail/Competitions/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 */ Competitions; }
+});
+
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/style/index.js + 1 modules
+var style = __webpack_require__(35611);
+// EXTERNAL MODULE: ./node_modules/antd/es/modal/index.js + 7 modules
+var modal = __webpack_require__(85402);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/style/index.js + 1 modules
+var button_style = __webpack_require__(29913);
+// EXTERNAL MODULE: ./node_modules/antd/es/button/index.js
+var es_button = __webpack_require__(71577);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/style/index.js + 1 modules
+var input_style = __webpack_require__(69463);
+// EXTERNAL MODULE: ./node_modules/antd/es/input/index.js + 5 modules
+var input = __webpack_require__(75008);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
+var regeneratorRuntime = __webpack_require__(17061);
+var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
+// EXTERNAL MODULE: ./node_modules/antd/es/pagination/style/index.js + 1 modules
+var pagination_style = __webpack_require__(14182);
+// EXTERNAL MODULE: ./node_modules/antd/es/pagination/index.js + 10 modules
+var pagination = __webpack_require__(260);
+// EXTERNAL MODULE: ./node_modules/antd/es/list/style/index.js + 1 modules
+var list_style = __webpack_require__(36931);
+// EXTERNAL MODULE: ./node_modules/antd/es/list/index.js + 1 modules
+var list = __webpack_require__(95507);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/style/index.js + 1 modules
+var tooltip_style = __webpack_require__(38390);
+// EXTERNAL MODULE: ./node_modules/antd/es/tooltip/index.js + 3 modules
+var tooltip = __webpack_require__(84908);
+// EXTERNAL MODULE: ./node_modules/antd/es/row/style/index.js
+var row_style = __webpack_require__(13062);
+// EXTERNAL MODULE: ./node_modules/antd/es/row/index.js
+var row = __webpack_require__(71230);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/style/index.js + 1 modules
+var message_style = __webpack_require__(14934);
+// EXTERNAL MODULE: ./node_modules/antd/es/message/index.js + 1 modules
+var message = __webpack_require__(12461);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
+var objectSpread2 = __webpack_require__(42122);
+var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js
+var asyncToGenerator = __webpack_require__(17156);
+var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/style/index.js + 1 modules
+var form_style = __webpack_require__(75627);
+// EXTERNAL MODULE: ./node_modules/antd/es/form/index.js + 17 modules
+var es_form = __webpack_require__(51018);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/slicedToArray.js
+var slicedToArray = __webpack_require__(27424);
+var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js
+var objectWithoutProperties = __webpack_require__(70215);
+var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties);
+// EXTERNAL MODULE: ./node_modules/react/index.js
+var react = __webpack_require__(67294);
+// EXTERNAL MODULE: ./src/.umi-production/exports.ts + 8 modules
+var _umi_production_exports = __webpack_require__(89214);
+;// CONCATENATED MODULE: ./src/pages/User/Detail/Competitions/index.less?modules
+// extracted by mini-css-extract-plugin
+/* harmony default export */ var Competitionsmodules = ({"flex_box_center":"flex_box_center___ENAOI","flex_space_between":"flex_space_between___Yjoyu","flex_box_vertical_center":"flex_box_vertical_center___aPS45","flex_box_center_end":"flex_box_center_end___kUgIl","flex_box_column":"flex_box_column___mGYey","wrap":"wrap___S3lx0","midWrap":"midWrap___Fwx7_","color999":"color999___fpRZB","orderWrap":"orderWrap___xXwnV","orderIconWrap":"orderIconWrap___btpj3","orderAsc":"orderAsc___Iu6TW","orderDesc":"orderDesc___MVd38","color0152d9":"color0152d9___gS1Es","h10":"h10___OpBG1","cursorPointer":"cursorPointer___BBvno","orderTextWrap":"orderTextWrap___Yee1I","cardWrap":"cardWrap___WWukD","countWrap":"countWrap___tpXul","affixContainer":"affixContainer___Q9aZn","qrcode":"qrcode___sFCxR","img":"img___jdtAg","tips":"tips____Aaub","close":"close___qwPuO","text":"text___tml4V","type":"type___VMu2F","tabsWrap":"tabsWrap___vVFv7","searchWrap":"searchWrap___cLNy_","search":"search___Klnly","searchIcon":"searchIcon___aDsB3","btns":"btns___ofGrI","searchWrap_right":"searchWrap_right___e9C61","description":"description___YHwxX","bg":"bg___WpG67","list":"list___mHF6V","status":"status___nfyAH","desc":"desc___xag2m","flex1":"flex1___PdtmV","item":"item___aNPT4","footer":"footer___p72hy","bottomText":"bottomText___oqcZk","CompetitionsList":"CompetitionsList___mwIel","signup":"signup___c4fp9","CompetitionsListzhezhao":"CompetitionsListzhezhao___OiSIi","shadow":"shadow___iTRBk","divimg":"divimg___vS_gS","commonTextBox":"commonTextBox___THI9L","havetext":"havetext___c1f2m","Finishedtext":"Finishedtext___chFiq","Comingtext":"Comingtext___h6fHO","info":"info___v5RHL","bonus":"bonus___lrFm4","rmb":"rmb___Q8E6y","applyInfo":"applyInfo___ck29q","task_hide":"task_hide___mAsn0","task_hide_2":"task_hide_2___mkLFM","Unpublishedtext":"Unpublishedtext___D9LjX","checkboxtitle":"checkboxtitle___pbwqo","scoremodal":"scoremodal___OiQdF","title":"title___fAx3h","content":"content___MbGbI","bottom":"bottom___cOeks","yes":"yes___lMqJj","no":"no___j6M_d","baseFormItem":"baseFormItem___iTGaw","jsinput":"jsinput___Hg3Qu","scoreByBlankRadio":"scoreByBlankRadio___Ic5Z9"});
+// EXTERNAL MODULE: ./src/utils/fetch.ts
+var fetch = __webpack_require__(84519);
+// EXTERNAL MODULE: ./src/components/ui-customization/index.tsx + 33 modules
+var ui_customization = __webpack_require__(85343);
+// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules
+var env = __webpack_require__(59758);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
+// EXTERNAL MODULE: ./src/utils/util.tsx
+var util = __webpack_require__(29427);
+// EXTERNAL MODULE: ./src/utils/authority.ts
+var authority = __webpack_require__(7);
+// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
+var jsx_runtime = __webpack_require__(85893);
+;// CONCATENATED MODULE: ./src/pages/User/Detail/Competitions/index.tsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var _excluded = ["competitions", "globalSetting", "loading", "dispatch", "user"];
+
+
+
+
+
+
+
+
+
+
+
+var tabs = [{
+ id: 'mine',
+ name: "\u6211\u7BA1\u7406\u7684",
+ color: '#DB780F',
+ border: '1px solid #FDDBB7'
+}, {
+ id: 'join',
+ name: "\u6211\u53C2\u4E0E\u7684",
+ color: '#4237E7',
+ border: '1px solid #B6B1FF'
+}];
+var competitionsPage = function competitionsPage(_ref) {
+ var competitions = _ref.competitions,
+ globalSetting = _ref.globalSetting,
+ loading = _ref.loading,
+ dispatch = _ref.dispatch,
+ user = _ref.user,
+ props = objectWithoutProperties_default()(_ref, _excluded);
+ var _useParams = (0,_umi_production_exports.useParams)(),
+ identifier = _useParams.identifier;
+ var _useState = (0,react.useState)({
+ category: 'mine',
+ keyword: '',
+ page: 1,
+ per_page: 20
+ }),
+ _useState2 = slicedToArray_default()(_useState, 2),
+ params = _useState2[0],
+ setParams = _useState2[1];
+ var _useState3 = (0,react.useState)({}),
+ _useState4 = slicedToArray_default()(_useState3, 2),
+ datas = _useState4[0],
+ setdatas = _useState4[1];
+ var _useState5 = (0,react.useState)(false),
+ _useState6 = slicedToArray_default()(_useState5, 2),
+ iscreate = _useState6[0],
+ setiscreate = _useState6[1];
+ var _Form$useForm = es_form/* default.useForm */.Z.useForm(),
+ _Form$useForm2 = slicedToArray_default()(_Form$useForm, 1),
+ form = _Form$useForm2[0];
+ var _useState7 = (0,react.useState)(false),
+ _useState8 = slicedToArray_default()(_useState7, 2),
+ buttonloading = _useState8[0],
+ setbuttonloading = _useState8[1];
+
+ //获取课题
+ function getdatas() {
+ return _getdatas.apply(this, arguments);
+ }
+ function _getdatas() {
+ _getdatas = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee2$(_context2) {
+ while (1) switch (_context2.prev = _context2.next) {
+ case 0:
+ _context2.next = 2;
+ return (0,fetch/* default */.ZP)("/api/competitions.json", {
+ method: 'get',
+ params: objectSpread2_default()({}, params)
+ });
+ case 2:
+ res = _context2.sent;
+ setdatas(res);
+ case 4:
+ case "end":
+ return _context2.stop();
+ }
+ }, _callee2);
+ }));
+ return _getdatas.apply(this, arguments);
+ }
+ (0,react.useEffect)(function () {
+ getdatas();
+ }, []);
+
+ /**
+ * 列表数据点击跳转事件
+ */
+ var onListClick = function onListClick(item) {
+ // 判断有没有配置外链接:
+ if (item.external_url) {
+ var _user$userInfo;
+ // console.log(item.external_url,"-----item.external_url");
+ (0,util/* openNewWindow */.xg)("".concat(item.external_url) + "?login=" + (user === null || user === void 0 ? void 0 : (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.login) + "&websiteName=educoder");
+ } else {
+ if (item !== null && item !== void 0 && item.is_new) {
+ if (item.permission.editable) {
+ (0,util/* openNewWindow */.xg)("/competitions/detail/".concat(item.identifier, "?type=4"));
+ } else {
+ (0,util/* openNewWindow */.xg)("/competitions/detail/".concat(item.identifier));
+ }
+ return;
+ }
+ if (item.competition_status === 'ended' || item.competition_status === 'progressing' || item.competition_status === 'unpublish' || item.competition_status === 'nearly_published' && item.permission.editable == true) {
+ (0,util/* openNewWindow */.xg)("/competitions/".concat(item.identifier));
+ }
+ }
+ };
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.wrap,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomTabs */.YG, {
+ value: params.category,
+ onChange: function onChange(e) {
+ params.category = e;
+ setParams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ tabBarExtraContent: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomButton */.op, {
+ className: "mr20",
+ onClick: function onClick() {
+ var _user$userInfo2, _user$userInfo3;
+ if ((0,authority/* isAdmins */.eB)() || (_user$userInfo2 = user.userInfo) !== null && _user$userInfo2 !== void 0 && _user$userInfo2.professional_certification && (_user$userInfo3 = user.userInfo) !== null && _user$userInfo3 !== void 0 && _user$userInfo3.is_teacher) {
+ setiscreate(true);
+ } else {
+ message/* default.info */.ZP.info("当前仅支持已职业认证的教师可创建");
+ }
+ },
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, {
+ align: "middle",
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ src: ImagesIcon/* cjjs */.FX
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "ml5",
+ children: "\u521B\u5EFA\u7ADE\u8D5B"
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(ui_customization/* CustomInput */.t7, {
+ style: {
+ width: 303
+ },
+ placeholder: "\u8BF7\u8F93\u5165\u7ADE\u8D5B\u540D\u79F0\u8FDB\u884C\u641C\u7D22",
+ value: params.keyword,
+ onChange: function onChange(e) {
+ params.keyword = e;
+ setParams(objectSpread2_default()({}, params));
+ getdatas();
+ }
+ })]
+ }),
+ dataSource: tabs
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(list/* default */.ZP, {
+ itemLayout: "vertical",
+ size: "large",
+ style: {
+ marginTop: 20
+ },
+ dataSource: datas === null || datas === void 0 ? void 0 : datas.competitions,
+ renderItem: function renderItem(item, key) {
+ return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.CompetitionsList,
+ children: [item.competition_status === 'nearly_published' ? item.permission.editable == true ? '' : /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Competitionsmodules.CompetitionsListzhezhao,
+ children: "\u5373\u5C06\u53D1\u5E03 \u656C\u8BF7\u671F\u5F85"
+ }) : '', /*#__PURE__*/(0,jsx_runtime.jsxs)(list/* default.Item */.ZP.Item, {
+ onClick: function onClick() {
+ return onListClick(item);
+ },
+ className: Competitionsmodules.shadow,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(list/* default.Item.Meta */.ZP.Item.Meta, {
+ style: {
+ marginBottom: '0px'
+ },
+ avatar: /*#__PURE__*/(0,jsx_runtime.jsx)("img", {
+ className: Competitionsmodules.divimg,
+ src: item && item.image ? "".concat(env/* default.IMG_SERVER */.Z.IMG_SERVER, "/") + item.image : ImagesIcon/* mainbannerBg */.I2
+ }),
+ title: /*#__PURE__*/(0,jsx_runtime.jsxs)("p", {
+ style: {
+ alignItems: 'center',
+ display: 'flex',
+ marginBottom: 7,
+ paddingRight: 20
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ getPopupContainer: function getPopupContainer(trigger) {
+ return trigger.parentNode;
+ },
+ title: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: [item.name, item.sub_title ? "\u2014\u2014".concat(item.sub_title) : '']
+ }),
+ children: /*#__PURE__*/(0,jsx_runtime.jsxs)("a", {
+ className: Competitionsmodules.task_hide,
+ children: [item.name, item.sub_title ? "\u2014\u2014".concat(item.sub_title) : '']
+ })
+ }), item.competition_status && item.competition_status === 'nearly_published' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "".concat(Competitionsmodules.commonTextBox, " ").concat(Competitionsmodules.Comingtext),
+ children: "\u5373\u5C06\u53D1\u5E03"
+ }) : '', item.competition_status && item.competition_status === 'preparing' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#DB780F',
+ border: '1px solid #FDDBB7'
+ },
+ className: "".concat(Competitionsmodules.commonTextBox, " ").concat(Competitionsmodules.Finishedtext),
+ children: "\u5F85\u5BA1\u6838"
+ }) : '', item.competition_status && item.competition_status === 'not_passed' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#E30000',
+ border: '1px solid #FFC7C7'
+ },
+ className: "".concat(Competitionsmodules.commonTextBox, " ").concat(Competitionsmodules.Finishedtext),
+ children: "\u88AB\u9A73\u56DE"
+ }) : '', item.competition_status && item.competition_status === 'review' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#4237E7',
+ border: '1px solid #B6B1FF'
+ },
+ className: "".concat(Competitionsmodules.commonTextBox, " ").concat(Competitionsmodules.Finishedtext),
+ children: "\u5BA1\u6838\u4E2D"
+ }) : '', item.competition_status && item.competition_status === 'progressing' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ style: {
+ color: '#00B187',
+ border: '1px solid #B1F0E1'
+ },
+ className: "".concat(Competitionsmodules.commonTextBox, " ").concat(Competitionsmodules.havetext),
+ children: "\u8FDB\u884C\u4E2D"
+ }) : '', item.competition_status && item.competition_status === 'ended' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "".concat(Competitionsmodules.commonTextBox, " ").concat(Competitionsmodules.Finishedtext),
+ children: "\u5DF2\u7ED3\u675F"
+ }) : '', item.competition_status && item.competition_status === 'unpublish' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: "".concat(Competitionsmodules.commonTextBox, " ").concat(Competitionsmodules.Finishedtext),
+ children: "\u672A\u53D1\u5E03"
+ }) : '']
+ }),
+ description: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.description,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
+ getPopupContainer: function getPopupContainer(trigger) {
+ return trigger.parentNode;
+ },
+ title: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ children: item.description ? item.description : '暂无简介~'
+ }),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: "multi_ellipsis1 inline-block",
+ style: {
+ fontSize: '14px',
+ color: '#333333'
+ },
+ children: item.description ? item.description : '暂无简介~'
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.bottomText,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ margin: '14px 0'
+ },
+ children: ["\u7ADE\u8D5B\u65F6\u95F4: ", item.start_time, "\uFF5E", item.end_time]
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ children: ["\u62A5\u540D\u622A\u6B62\u65F6\u95F4\uFF1A", item && item.enroll_end_time ? item.enroll_end_time : '暂无']
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
+ style: {
+ marginLeft: '20px'
+ },
+ children: ["\u6D4F\u89C8\u6570\uFF1A", item && item.visits_count ? item.visits_count : '暂无']
+ })]
+ })]
+ })]
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ flexShrink: 0,
+ alignItems: 'flex-end',
+ display: 'flex',
+ flexDirection: 'column',
+ justifyContent: 'space-around'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.info,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.bonus,
+ style: {
+ visibility: item && item.bonus ? 'visible' : 'hidden'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Competitionsmodules.rmb,
+ children: "\xA5"
+ }), parseInt(item.bonus).toLocaleString()]
+ }), item.member_count ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.applyInfo,
+ children: ["\u5DF2\u62A5\u540D\uFF1A", item.competition_status === 'nearly_published' ? '0' : item.member_count]
+ }) : '']
+ }), item && item.competition_status === 'ended' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Competitionsmodules.Unpublishedtext
+ // onClick={e => noclick(e)}
+ ,
+ children: "\u5DF2\u7ED3\u675F"
+ }) : null, item && item.competition_status === 'nearly_published' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Competitionsmodules.Unpublishedtext
+ // onClick={e => noclick(e)}
+ ,
+ children: "\u672A\u53D1\u5E03"
+ }) : null, item && item.competition_status !== 'nearly_published' && item.enroll_end && item.competition_status !== 'ended' ? /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ className: Competitionsmodules.Unpublishedtext
+ // onClick={e => noclick(e)}
+ ,
+ children: "\u62A5\u540D\u622A\u6B62"
+ }) : null]
+ })]
+ }, key)]
+ });
+ }
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Competitionsmodules.countWrap,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, {
+ showQuickJumper: true,
+ showSizeChanger: true,
+ pageSizeOptions: ['10', '15', '50', '100', '200'],
+ total: datas === null || datas === void 0 ? void 0 : datas.count,
+ onChange: function onChange(page, pageSize) {
+ params.page = page;
+ params.per_page = pageSize;
+ setParams(objectSpread2_default()({}, params));
+ getdatas();
+ },
+ pageSize: params.per_page
+ // hideOnSinglePage={true}
+ ,
+ current: params.page
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)(modal/* default */.Z, {
+ title: false,
+ footer: false,
+ open: iscreate,
+ width: 610,
+ className: Competitionsmodules.scoremodal,
+ closable: false,
+ centered: true,
+ onCancel: function onCancel() {
+ return setiscreate(false);
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ style: {
+ display: 'flex',
+ alignItems: 'center'
+ },
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Competitionsmodules.title,
+ children: "\u521B\u5EFA\u7ADE\u8D5B"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
+ onClick: function onClick() {
+ return setiscreate(false);
+ },
+ style: {
+ cursor: 'pointer'
+ },
+ className: Competitionsmodules.close,
+ children: "X"
+ })]
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
+ className: Competitionsmodules.content,
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z, {
+ form: form,
+ layout: "vertical",
+ onFinish: /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(values) {
+ var res;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ setbuttonloading(true);
+ _context.next = 3;
+ return (0,fetch/* default */.ZP)("/api/competitions.json", {
+ method: 'post',
+ body: objectSpread2_default()({}, values)
+ });
+ case 3:
+ res = _context.sent;
+ setbuttonloading(false);
+ if ((res === null || res === void 0 ? void 0 : res.status) === 0) {
+ message/* default.info */.ZP.info('创建成功');
+ _umi_production_exports.history.push("/competitions/".concat(res === null || res === void 0 ? void 0 : res.identifier, "/edit?type=4"));
+ }
+ case 6:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function (_x) {
+ return _ref2.apply(this, arguments);
+ };
+ }(),
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default.Item */.Z.Item, {
+ label: "\u7ADE\u8D5B\u540D\u79F0",
+ name: "name",
+ className: Competitionsmodules.jsinput,
+ rules: [{
+ required: true,
+ validator: function validator(_, value) {
+ var _value$replaceAll;
+ return (value === null || value === void 0 ? void 0 : (_value$replaceAll = value.replaceAll(' ', '')) === null || _value$replaceAll === void 0 ? void 0 : _value$replaceAll.length) > 0 ? Promise.resolve() : Promise.reject('请填写竞赛名称');
+ }
+ }],
+ children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, {
+ maxLength: 60,
+ className: Competitionsmodules.baseFormItem,
+ showCount: true
+ })
+ })
+ })
+ }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
+ className: Competitionsmodules.bottom,
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ className: Competitionsmodules.no,
+ onClick: function onClick() {
+ setiscreate(false);
+ },
+ children: "\u53D6\u6D88"
+ }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.Z, {
+ loading: buttonloading,
+ className: Competitionsmodules.yes,
+ onClick: function onClick() {
+ form.submit();
+ },
+ children: "\u521B\u5EFA\u7ADE\u8D5B"
+ })]
+ })]
+ })]
+ });
+};
+/* harmony default export */ var Competitions = ((0,_umi_production_exports.connect)(function (_ref3) {
+ var competitions = _ref3.competitions,
+ loading = _ref3.loading,
+ globalSetting = _ref3.globalSetting,
+ user = _ref3.user;
+ return {
+ competitions: competitions,
+ globalSetting: globalSetting,
+ loading: loading.models.competitions,
+ user: user
+ };
+})(competitionsPage));
+
+/***/ })
+
+}]);
\ No newline at end of file
diff --git a/p__User__Detail__Competitions__index.chunk.css b/p__User__Detail__Competitions__index.chunk.css
new file mode 100644
index 0000000000..ee5d10dafe
--- /dev/null
+++ b/p__User__Detail__Competitions__index.chunk.css
@@ -0,0 +1,625 @@
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].oneOf[0].use[1]!./node_modules/@umijs/bundler-webpack/compiled/postcss-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[2]!./node_modules/@umijs/bundler-webpack/compiled/less-loader/index.js??ruleSet[1].rules[5].oneOf[0].use[3]!./src/pages/User/Detail/Competitions/index.less?modules ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+.flex_box_center___ENAOI {
+ justify-content: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ box-align: center;
+}
+.flex_space_between___Yjoyu {
+ justify-content: space-between;
+ -webkit-box-pack: justify;
+}
+.flex_box_vertical_center___aPS45 {
+ align-items: center;
+ box-align: center;
+}
+.flex_box_center_end___kUgIl {
+ justify-content: flex-end;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -webkit-box-pack: end;
+ box-align: center;
+ box-pack: end;
+}
+.flex_box_column___mGYey {
+ flex-direction: column;
+ box-orient: block-axis;
+}
+.wrap___S3lx0 {
+ padding-top: 22px;
+ padding-left: 38px;
+}
+.midWrap___Fwx7_ {
+ display: box;
+ display: flex;
+ margin-bottom: 30px;
+ font-size: 12px;
+ align-items: center;
+}
+.color999___fpRZB {
+ color: #999999;
+}
+.orderWrap___xXwnV {
+ display: box;
+ display: flex;
+}
+.orderIconWrap___btpj3 {
+ display: box;
+ display: flex;
+ flex-direction: column;
+ height: 40px;
+ line-height: 40px;
+ color: #999999;
+}
+.orderAsc___Iu6TW {
+ flex-direction: column;
+ text-align: center;
+ height: 10px;
+ line-height: 10px;
+ display: inline-block;
+ margin-top: 9px;
+ transform: translateY(2px);
+}
+.orderDesc___MVd38 {
+ flex-direction: column;
+ text-align: center;
+ height: 10px;
+ line-height: 10px;
+ display: table;
+}
+.color0152d9___gS1Es {
+ color: #232b40 !important;
+}
+.h10___OpBG1 {
+ height: 10px;
+}
+.cursorPointer___BBvno {
+ cursor: pointer;
+ color: #d8d8d8;
+}
+.orderTextWrap___Yee1I {
+ font-size: 14px;
+ color: #3b3e47;
+ cursor: pointer;
+ margin-right: 5px;
+}
+.cardWrap___WWukD {
+ display: box;
+ display: flex;
+ flex-wrap: wrap;
+ min-height: 400px;
+ width: 100%;
+ margin-top: 10px;
+}
+.countWrap___tpXul {
+ padding-bottom: 30px;
+ margin-top: 7px;
+}
+.affixContainer___Q9aZn {
+ position: fixed;
+ background: #ffffff;
+ box-shadow: 0px 0px 8px 0px #dedede;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ text-align: center;
+ z-index: 1000;
+}
+.affixContainer___Q9aZn.qrcode___sFCxR {
+ right: 84px;
+ bottom: 200px;
+ border-radius: 8px;
+ padding: 9px;
+}
+.affixContainer___Q9aZn.qrcode___sFCxR .img___jdtAg img {
+ width: 122px;
+}
+.affixContainer___Q9aZn.qrcode___sFCxR .tips____Aaub {
+ font-size: 14px;
+ font-weight: 500;
+ color: #0152d9;
+ padding-top: 9px;
+}
+.affixContainer___Q9aZn.qrcode___sFCxR .close___qwPuO {
+ position: absolute;
+ top: 0;
+ right: -34px;
+ width: 24px;
+ height: 24px;
+ cursor: pointer;
+ color: #0152d9;
+}
+.affixContainer___Q9aZn.qrcode___sFCxR .close___qwPuO i {
+ font-size: 24px;
+}
+.affixContainer___Q9aZn.text___tml4V {
+ border-radius: 8px 0px 0px 8px;
+ right: 0;
+ bottom: 248px;
+ color: #0152d9;
+ cursor: pointer;
+}
+.affixContainer___Q9aZn.text___tml4V > div {
+ -webkit-writing-mode: vertical-lr;
+ -ms-writing-mode: tb-lr;
+ writing-mode: vertical-lr;
+ font-size: 14px;
+ font-weight: 500;
+ line-height: 14px;
+ padding: 10px 13px;
+ letter-spacing: 2px;
+}
+.type___VMu2F {
+ display: flex;
+ align-items: center;
+ margin-left: 20px;
+}
+.type___VMu2F i {
+ margin-right: 12px;
+}
+.tabsWrap___vVFv7 {
+ background: #fff;
+ border-radius: 4px 4px 0 0;
+ margin-bottom: 20px;
+}
+.tabsWrap___vVFv7 div[class~='ant-tabs-tab'] {
+ font-size: 14px;
+ margin-right: 40px;
+ color: #5f6368;
+}
+.tabsWrap___vVFv7 div[class~='ant-tabs-tab-active'] [class~='ant-tabs-tab-btn'] {
+ color: #232b40;
+}
+.tabsWrap___vVFv7 [class~='ant-tabs-nav'] {
+ margin: 0px;
+ height: 56px;
+}
+.tabsWrap___vVFv7 [class~='ant-tabs-nav'] div[class~='ant-tabs-ink-bar'] {
+ background-color: #232b40;
+ border-radius: 100px 100px 0px 0px;
+ height: 3px;
+}
+.tabsWrap___vVFv7 [class~='ant-tabs-nav']::before {
+ background: #f1f1f1;
+}
+.searchWrap___cLNy_ .search___Klnly {
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ border-radius: 19px;
+ height: 38px;
+ width: 418px;
+ padding-left: 20px;
+ background-color: #f6f7f9;
+ border: none;
+}
+.searchWrap___cLNy_ .search___Klnly [class~='ant-input-affix-wrapper'] {
+ background-color: #f6f7f9;
+ border: none;
+}
+.searchWrap___cLNy_ .search___Klnly [class~='ant-input-affix-wrapper'] {
+ outline: none !important;
+ border: none !important;
+ box-shadow: none !important;
+}
+.searchWrap___cLNy_ .search___Klnly span[class~='ant-input-group-addon'] {
+ display: none;
+}
+.searchWrap___cLNy_ .search___Klnly .searchIcon___aDsB3 {
+ margin-right: 14px;
+ cursor: pointer;
+}
+.searchWrap___cLNy_ .search___Klnly input {
+ background-color: #f6f7f9;
+}
+.btns___ofGrI {
+ margin-top: 35px;
+}
+.btns___ofGrI > div {
+ display: inline-block;
+ height: 32px;
+ background: #f6f7f9;
+ box-shadow: 0px 2px 4px 0px #e0dfe1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 4px;
+ border: 1px solid #dadbde;
+ font-size: 14px;
+ color: #3b3e47;
+ line-height: 30px;
+ margin-right: 23px;
+ padding: 0 16px;
+ position: relative;
+ cursor: pointer;
+}
+.btns___ofGrI > div:hover {
+ color: #165dff;
+ border: 1px solid #bacffe;
+}
+.btns___ofGrI > div img {
+ position: absolute;
+ z-index: 1;
+ top: -21px;
+ right: 22px;
+}
+.searchWrap_right___e9C61 {
+ float: right;
+ margin-top: -50px;
+}
+.searchWrap_right___e9C61 .search___Klnly {
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ border-radius: 19px;
+ height: 38px;
+ width: 418px;
+ padding-left: 20px;
+ background-color: #f6f7f9;
+ border: none;
+}
+.searchWrap_right___e9C61 .search___Klnly [class~='ant-input-affix-wrapper'] {
+ background-color: #f6f7f9;
+ border: none;
+}
+.searchWrap_right___e9C61 .search___Klnly [class~='ant-input-affix-wrapper'] {
+ outline: none !important;
+ border: none !important;
+ box-shadow: none !important;
+}
+.searchWrap_right___e9C61 .search___Klnly span[class~='ant-input-group-addon'] {
+ display: none;
+}
+.searchWrap_right___e9C61 .search___Klnly .searchIcon___aDsB3 {
+ margin-right: 14px;
+ cursor: pointer;
+}
+.searchWrap_right___e9C61 .search___Klnly input {
+ background-color: #f6f7f9;
+}
+.searchWrap_right___e9C61::after {
+ clear: both;
+}
+.description___YHwxX {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ justify-content: space-between;
+ height: 100%;
+}
+.bg___WpG67 {
+ background: #fff;
+ padding-bottom: 1px;
+}
+.list___mHF6V {
+ padding: 20px;
+ margin-bottom: 20px;
+ background: #fff;
+ position: relative;
+}
+.list___mHF6V .status___nfyAH {
+ position: absolute;
+ right: -5px;
+ top: 20px;
+}
+.list___mHF6V .status___nfyAH img {
+ width: 80px;
+}
+.list___mHF6V h1 {
+ font-size: 28px;
+ margin-bottom: 20px;
+}
+.list___mHF6V .desc___xag2m {
+ display: box;
+ display: flex;
+}
+.list___mHF6V .desc___xag2m .flex1___PdtmV {
+ font-size: 14px;
+ color: #666;
+ flex: 1 1;
+}
+.list___mHF6V .desc___xag2m .item___aNPT4 {
+ margin-left: 40px;
+ color: #666;
+ text-align: center;
+}
+.list___mHF6V .desc___xag2m .item___aNPT4 strong {
+ font-size: 24px;
+ color: #333;
+ margin-top: 10px;
+ display: inline-block;
+}
+.list___mHF6V .footer___p72hy {
+ font-size: 14px;
+ margin-top: 20px;
+ color: #828383;
+}
+.bottomText___oqcZk {
+ font-size: 14px;
+ font-weight: 400;
+ color: #666666;
+}
+.CompetitionsList___mwIel {
+ position: relative;
+ background: #ffffff;
+ box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
+ border-radius: 4px;
+ border: 1px solid #f5f5f5;
+ margin-bottom: 20px;
+}
+.CompetitionsList___mwIel [class~='ant-list-item'] {
+ padding: 20px;
+}
+.CompetitionsList___mwIel [class~='ant-list-item-meta-content'] {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+.CompetitionsList___mwIel [class~='ant-list-item-meta-description'] {
+ flex: 1 1;
+}
+.CompetitionsList___mwIel .signup___c4fp9 {
+ width: 88px;
+ height: 32px;
+ border-radius: 4px;
+ font-size: 14px;
+ text-align: center;
+ color: #3061d0;
+ border-color: #bacffe;
+ box-shadow: 0px 2px 4px 0px #e0dfe1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+}
+.CompetitionsList___mwIel .signup___c4fp9:hover {
+ color: #165dff;
+ border-color: #165dff;
+ box-shadow: 0px 2px 4px 0px #e0dfe1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+}
+.CompetitionsList___mwIel:hover {
+ box-shadow: 3px 4px 10px 2px rgba(229, 229, 229, 0.5);
+ opacity: 1;
+ border-radius: 2px;
+}
+.CompetitionsListzhezhao___OiSIi {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ width: 1200px;
+ height: 100%;
+ z-index: 10000;
+ display: none;
+ background: rgba(0, 0, 0, 0.33);
+ text-align: center;
+ color: #fff;
+ font-size: 22px;
+ align-items: center;
+ justify-content: space-around;
+ flex-direction: column;
+}
+.CompetitionsList___mwIel:hover .CompetitionsListzhezhao___OiSIi {
+ display: block;
+ display: flex;
+}
+.shadow___iTRBk {
+ background: #fff;
+ display: flex;
+ cursor: pointer;
+}
+.divimg___vS_gS {
+ width: 326px;
+ height: 140px;
+ border-radius: 4px;
+ overflow: hidden;
+ margin-right: 12px;
+ object-fit: cover;
+ object-position: left;
+}
+.commonTextBox___THI9L {
+ font-size: 14px;
+ font-weight: 400;
+ margin-left: 6px;
+ height: 26px;
+ line-height: 24px;
+ padding: 0 9px;
+ display: inline-block;
+ border-radius: 13px;
+ flex-shrink: 0;
+}
+.commonTextBox___THI9L.havetext___c1f2m {
+ color: #00b187;
+ border: 1px solid #b1f0e1;
+}
+.commonTextBox___THI9L.Finishedtext___chFiq {
+ color: #999999;
+ border: 1px solid #dadbde;
+}
+.commonTextBox___THI9L.Comingtext___h6fHO {
+ color: #165dff;
+ border: 1px solid #d5e2ff;
+}
+.info___v5RHL {
+ text-align: right;
+}
+.info___v5RHL .bonus___lrFm4 {
+ font-size: 30px;
+ font-weight: 500;
+ color: #333333;
+ margin-bottom: 8px;
+}
+.info___v5RHL .bonus___lrFm4 .rmb___Q8E6y {
+ font-size: 20px;
+ font-family: Helvetica;
+ color: #333333;
+}
+.info___v5RHL .applyInfo___ck29q {
+ font-size: 14px;
+ font-weight: 400;
+ color: #666666;
+}
+.task_hide___mAsn0 {
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ font-size: 20px;
+ font-weight: 600;
+ color: #000000;
+}
+.task_hide_2___mkLFM {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+ font-size: 14px;
+ font-weight: 400;
+ color: #333333;
+}
+.Unpublishedtext___D9LjX {
+ background: #fafbfc;
+ box-shadow: inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 4px;
+ border: 1px solid #e9eaec;
+ height: 32px;
+ width: 88px;
+ text-align: center;
+ line-height: 32px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #c0c0c0;
+ cursor: no-drop;
+}
+.checkboxtitle___pbwqo {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 1;
+ overflow: hidden;
+}
+.scoremodal___OiQdF [class~='ant-modal-body'] {
+ padding: 30px 40px;
+}
+.scoremodal___OiQdF .title___fAx3h {
+ color: #000000;
+ font-size: 16px;
+ font-weight: 500;
+ display: flex;
+ width: 100%;
+}
+.scoremodal___OiQdF .content___MbGbI {
+ margin-top: 30px;
+}
+.scoremodal___OiQdF .bottom___cOeks {
+ width: 100%;
+ text-align: end;
+ margin-top: 30px;
+}
+.scoremodal___OiQdF .bottom___cOeks .yes___lMqJj {
+ padding: 0px 20px;
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px 1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-weight: 400;
+ color: #FFFFFF;
+ border: 0px;
+}
+.scoremodal___OiQdF .bottom___cOeks .no___j6M_d {
+ margin-right: 20px;
+ width: 60px;
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-weight: 400;
+ color: #464F66;
+ line-height: 14px;
+}
+.baseFormItem___iTGaw {
+ font-size: 14px;
+}
+.baseFormItem___iTGaw input[class~='ant-input'] {
+ height: 38px;
+}
+.baseFormItem___iTGaw input[class~='ant-input-number-input'] {
+ height: 46px;
+}
+.baseFormItem___iTGaw div[class~='ant-select-selector'] {
+ height: 46px;
+}
+.baseFormItem___iTGaw div[class~='ant-select-selector'] span[class~='ant-select-selection-item'] {
+ line-height: 46px;
+}
+.baseFormItem___iTGaw div[class~='ant-select-selector'] span[class~='ant-select-selection-placeholder'] {
+ line-height: 46px;
+}
+.baseFormItem___iTGaw span[class~='ant-select-arrow'] {
+ right: 12px;
+}
+.jsinput___Hg3Qu div[class~='ant-form-item-label'] {
+ margin-bottom: 15px;
+}
+.scoreByBlankRadio___Ic5Z9 {
+ background: #F6F7F9;
+ box-shadow: inset 0px 1px 3px 0px #D7D8D9;
+ border-radius: 16px;
+ margin-right: 20px;
+ margin-bottom: 20px;
+}
+.scoreByBlankRadio___Ic5Z9 span {
+ font-size: 14px;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper'] {
+ background-color: transparent;
+ border: none;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ height: 32px;
+ color: #9096A3;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper']::before {
+ background-color: transparent;
+ display: none;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked'] {
+ background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: inset 0px 1px 3px 0px #D7D8D9;
+ border: 1px solid #C8D2EA;
+ border-radius: 16px;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ color: #3061D0;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked']:first-child {
+ border-right-color: #C8D2EA;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked']:focus-within {
+ box-shadow: none;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked']::before {
+ background-color: transparent;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked']:hover {
+ background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
+ box-shadow: inset 0px 1px 3px 0px #D7D8D9;
+ border: 1px solid #C8D2EA;
+ border-radius: 16px;
+ padding: 0 20px;
+ display: inline-flex;
+ align-items: center;
+ color: #3061D0;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked']:hover:first-child {
+ border-right-color: #C8D2EA;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked']:hover:focus-within {
+ box-shadow: none;
+}
+.scoreByBlankRadio___Ic5Z9 label[class~='ant-radio-button-wrapper-checked']:hover::before {
+ background-color: transparent;
+}
+/* stylelint-disable no-duplicate-selectors */
+/* stylelint-disable */
+/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
+
diff --git a/p__User__Detail__Topicbank__index.async.js b/p__User__Detail__Topicbank__index.async.js
index 1d73ad3d62..55885d6aeb 100644
--- a/p__User__Detail__Topicbank__index.async.js
+++ b/p__User__Detail__Topicbank__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__User__Detail__UserPortrait__index.async.js b/p__User__Detail__UserPortrait__index.async.js
index f8ac20afe9..a616beae3e 100644
--- a/p__User__Detail__UserPortrait__index.async.js
+++ b/p__User__Detail__UserPortrait__index.async.js
@@ -33,7 +33,7 @@ __webpack_require__.r(__webpack_exports__);
/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! moment */ 30381);
/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(moment__WEBPACK_IMPORTED_MODULE_13__);
/* harmony import */ var _service_user__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! @/service/user */ 58839);
-/* harmony import */ var _components_ImagesIcon__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @/components/ImagesIcon */ 44190);
+/* harmony import */ var _components_ImagesIcon__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @/components/ImagesIcon */ 51647);
/* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! react/jsx-runtime */ 85893);
diff --git a/p__User__Detail__id.async.js b/p__User__Detail__id.async.js
index 4220edcc18..0aff782e26 100644
--- a/p__User__Detail__id.async.js
+++ b/p__User__Detail__id.async.js
@@ -83,6 +83,7 @@ var NavType;
NavType["UserPortrait"] = "userPortrait";
NavType["LearningPath"] = "learningPath";
NavType["virtualSpaces"] = "vspaces";
+ NavType["Competitions"] = "competitions";
})(NavType || (NavType = {}));
var showSearchMapping = [{
name: 'classrooms',
@@ -98,7 +99,7 @@ var showSearchMapping = [{
placeholder: '搜索视频'
}];
var Banner = function Banner(_ref) {
- var _user$userInfo, _userDetail$homepageI, _userDetail$homepageI2, _userDetail$homepageI3, _userDetail$homepageI4, _userDetail$homepageI5, _userDetail$homepageI6, _userDetail$homepageI7, _userDetail$homepageI8, _userDetail$homepageI9, _userDetail$homepageI10, _find, _globalSetting$settin, _find2, _globalSetting$settin2, _find3, _globalSetting$settin3, _user$userInfo2, _globalSetting$settin4, _user$userInfo3, _globalSetting$settin5, _user$userInfo4, _user$userInfo5, _user$userInfo6, _user$userInfo7, _user$userInfo8, _user$userInfo9, _user$userInfo10;
+ var _user$userInfo, _userDetail$homepageI, _userDetail$homepageI2, _userDetail$homepageI3, _userDetail$homepageI4, _userDetail$homepageI5, _userDetail$homepageI6, _userDetail$homepageI7, _userDetail$homepageI8, _userDetail$homepageI9, _userDetail$homepageI10, _find, _globalSetting$settin, _find2, _globalSetting$settin2, _find3, _globalSetting$settin3, _user$userInfo2, _globalSetting$settin4, _user$userInfo3, _user$userInfo4, _globalSetting$settin5, _user$userInfo5, _user$userInfo6, _user$userInfo7, _user$userInfo8, _user$userInfo9, _user$userInfo10, _user$userInfo11;
var userDetail = _ref.userDetail,
user = _ref.user,
globalSetting = _ref.globalSetting,
@@ -288,7 +289,16 @@ var Banner = function Banner(_ref) {
className: "iconfont icon-kaifaxiangmu "
}), "\u5F00\u53D1\u9879\u76EE"]
})
- }), ((_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.main_site) && !((_globalSetting$settin5 = globalSetting.setting) !== null && _globalSetting$settin5 !== void 0 && _globalSetting$settin5.is_local) && (isCurrent && ((_user$userInfo4 = user.userInfo) === null || _user$userInfo4 === void 0 ? void 0 : _user$userInfo4.is_teacher) || ((_user$userInfo5 = user.userInfo) === null || _user$userInfo5 === void 0 ? void 0 : _user$userInfo5.admin)) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
+ }), ((_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.login) === (params === null || params === void 0 ? void 0 : params.username) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
+ to: "/users/".concat(username.current, "/competitions"),
+ onClick: function onClick() {
+ return setActiveKey(NavType.Teach);
+ },
+ className: activeKey === NavType.Competitions ? Menusmodules.active : '',
+ children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
+ className: "iconfont icon-xuexipaiming"
+ }), "\u7ADE\u8D5B\u7BA1\u7406"]
+ }), ((_user$userInfo4 = user.userInfo) === null || _user$userInfo4 === void 0 ? void 0 : _user$userInfo4.main_site) && !((_globalSetting$settin5 = globalSetting.setting) !== null && _globalSetting$settin5 !== void 0 && _globalSetting$settin5.is_local) && (isCurrent && ((_user$userInfo5 = user.userInfo) === null || _user$userInfo5 === void 0 ? void 0 : _user$userInfo5.is_teacher) || ((_user$userInfo6 = user.userInfo) === null || _user$userInfo6 === void 0 ? void 0 : _user$userInfo6.admin)) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
className: activeKey === NavType.Videos ? Menusmodules.active : '',
to: "/users/".concat(username.current, "/videos"),
onClick: function onClick() {
@@ -297,7 +307,7 @@ var Banner = function Banner(_ref) {
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
className: "iconfont icon-shipinwenjian "
}), "\u89C6\u9891\u6587\u4EF6"]
- }), ((_user$userInfo6 = user.userInfo) === null || _user$userInfo6 === void 0 ? void 0 : _user$userInfo6.main_site) && isCurrent && ((_user$userInfo7 = user.userInfo) === null || _user$userInfo7 === void 0 ? void 0 : _user$userInfo7.is_teacher) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
+ }), ((_user$userInfo7 = user.userInfo) === null || _user$userInfo7 === void 0 ? void 0 : _user$userInfo7.main_site) && isCurrent && ((_user$userInfo8 = user.userInfo) === null || _user$userInfo8 === void 0 ? void 0 : _user$userInfo8.is_teacher) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
className: activeKey === NavType.Topics ? Menusmodules.active : '',
to: "/users/".concat(username.current, "/topics/personal"),
onClick: function onClick() {
@@ -315,7 +325,7 @@ var Banner = function Banner(_ref) {
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
className: "iconfont icon-xunishequ "
}), "\u865A\u62DF\u793E\u533A"]
- }), ((_user$userInfo8 = user.userInfo) === null || _user$userInfo8 === void 0 ? void 0 : _user$userInfo8.login) === (params === null || params === void 0 ? void 0 : params.username) && ((_user$userInfo9 = user.userInfo) === null || _user$userInfo9 === void 0 ? void 0 : _user$userInfo9.is_mirror_marker) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
+ }), ((_user$userInfo9 = user.userInfo) === null || _user$userInfo9 === void 0 ? void 0 : _user$userInfo9.login) === (params === null || params === void 0 ? void 0 : params.username) && ((_user$userInfo10 = user.userInfo) === null || _user$userInfo10 === void 0 ? void 0 : _user$userInfo10.is_mirror_marker) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
to: "/users/".concat(username.current, "/experiment-img"),
onClick: function onClick() {
return setActiveKey(NavType.CreateImg);
@@ -333,7 +343,7 @@ var Banner = function Banner(_ref) {
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("i", {
className: "iconfont icon-zhengshuguanli "
}), "\u8BC1\u4E66\u7BA1\u7406"]
- }), ((_user$userInfo10 = user.userInfo) === null || _user$userInfo10 === void 0 ? void 0 : _user$userInfo10.login) === (params === null || params === void 0 ? void 0 : params.username) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
+ }), ((_user$userInfo11 = user.userInfo) === null || _user$userInfo11 === void 0 ? void 0 : _user$userInfo11.login) === (params === null || params === void 0 ? void 0 : params.username) && /*#__PURE__*/(0,jsx_runtime.jsxs)(_umi_production_exports.Link, {
to: "/users/".concat(username.current, "/teach-group"),
onClick: function onClick() {
return setActiveKey(NavType.Teach);
diff --git a/p__index.async.js b/p__index.async.js
index 149433ca3c..041967810b 100644
--- a/p__index.async.js
+++ b/p__index.async.js
@@ -217,7 +217,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__tasks__Jupyter__index.async.js b/p__tasks__Jupyter__index.async.js
index 5deaf8b4b6..fd4d4d3ff6 100644
--- a/p__tasks__Jupyter__index.async.js
+++ b/p__tasks__Jupyter__index.async.js
@@ -2497,8 +2497,8 @@ function TestCaseItem(_ref) {
})]
});
});
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
// EXTERNAL MODULE: ./src/pages/tasks/resize-enlarge.png
var resize_enlarge = __webpack_require__(21978);
// EXTERNAL MODULE: ./src/pages/tasks/resize-small.png
diff --git a/p__tasks__index.async.js b/p__tasks__index.async.js
index 2a3ba0a41e..969735b006 100644
--- a/p__tasks__index.async.js
+++ b/p__tasks__index.async.js
@@ -5532,8 +5532,8 @@ var shixuns = __webpack_require__(56088);
var lodash = __webpack_require__(96486);
// EXTERNAL MODULE: ./src/utils/verifyLogin.tsx + 2 modules
var verifyLogin = __webpack_require__(7303);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
;// CONCATENATED MODULE: ./src/pages/Demo/Warehouse/components/Tree.tsx
@@ -8280,8 +8280,8 @@ var dtFormat = 'YYYY-MM-DD HH:mm';
/* harmony default export */ var task_path_listmodules = ({"tree":"tree___LyfjL"});
// EXTERNAL MODULE: ./src/service/exercise.ts
var exercise = __webpack_require__(51412);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
// EXTERNAL MODULE: ./src/service/shixuns.ts
var shixuns = __webpack_require__(56088);
;// CONCATENATED MODULE: ./src/utils/toShixun.tsx
@@ -12327,6 +12327,7 @@ function choose_repository_reducer(state, action) {
subject_id: searchParams.get("subject_id") || '',
question_id: searchParams.get("questionId"),
exercise_id: searchParams.get("exercisesId"),
+ competition_entry_id: searchParams.get("competition_entry_id"),
ip: ip
}, extraParams));
case 9:
@@ -18273,6 +18274,10 @@ function tasks_reducer(state, action) {
subject_id: searchParams.get("subject_id") || '',
commitID: response === null || response === void 0 ? void 0 : (_response$content = response.content) === null || _response$content === void 0 ? void 0 : _response$content.commitID
};
+ } else if (searchParams.get("type") === 'competitions') {
+ params.extras = {
+ competition_entry_id: searchParams.get("competition_entry_id")
+ };
} else if (_params.courseId && _params.homeworkId) {
params.extras = {
homework_common_id: _params.homeworkId,
diff --git a/p__virtualSpaces__Lists__Course__index.async.js b/p__virtualSpaces__Lists__Course__index.async.js
index 814dff29e7..03a8ef3470 100644
--- a/p__virtualSpaces__Lists__Course__index.async.js
+++ b/p__virtualSpaces__Lists__Course__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__virtualSpaces__Lists__Member__index.async.js b/p__virtualSpaces__Lists__Member__index.async.js
index 2c62c7ab92..1a7cdd49a0 100644
--- a/p__virtualSpaces__Lists__Member__index.async.js
+++ b/p__virtualSpaces__Lists__Member__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
@@ -153,8 +153,8 @@ var moment_default = /*#__PURE__*/__webpack_require__.n(moment);
var virtualSpaces = __webpack_require__(51207);
// EXTERNAL MODULE: ./src/service/classrooms.ts
var classrooms = __webpack_require__(73290);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
var jsx_runtime = __webpack_require__(85893);
;// CONCATENATED MODULE: ./src/pages/virtualSpaces/Lists/Member/AddTeacher.tsx
diff --git a/p__virtualSpaces__Lists__Notices__index.async.js b/p__virtualSpaces__Lists__Notices__index.async.js
index 54a36c9b6f..638e131ef6 100644
--- a/p__virtualSpaces__Lists__Notices__index.async.js
+++ b/p__virtualSpaces__Lists__Notices__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__virtualSpaces__Lists__Settings__index.async.js b/p__virtualSpaces__Lists__Settings__index.async.js
index 7b6fecdfc7..3c4abe7236 100644
--- a/p__virtualSpaces__Lists__Settings__index.async.js
+++ b/p__virtualSpaces__Lists__Settings__index.async.js
@@ -527,8 +527,8 @@ var moment_default = /*#__PURE__*/__webpack_require__.n(moment);
var virtualSpaces = __webpack_require__(51207);
// EXTERNAL MODULE: ./src/service/classrooms.ts
var classrooms = __webpack_require__(73290);
-// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 31 modules
-var ImagesIcon = __webpack_require__(44190);
+// EXTERNAL MODULE: ./src/components/ImagesIcon/index.ts + 32 modules
+var ImagesIcon = __webpack_require__(51647);
;// CONCATENATED MODULE: ./src/pages/virtualSpaces/Lists/Settings/components/Member/AddTeacher.tsx
diff --git a/p__virtualSpaces__Lists__Shixuns__index.async.js b/p__virtualSpaces__Lists__Shixuns__index.async.js
index 2981198498..3e86c29100 100644
--- a/p__virtualSpaces__Lists__Shixuns__index.async.js
+++ b/p__virtualSpaces__Lists__Shixuns__index.async.js
@@ -62,7 +62,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/p__virtualSpaces__Lists__Syllabuses__index.async.js b/p__virtualSpaces__Lists__Syllabuses__index.async.js
index de25081536..c501a0b7dd 100644
--- a/p__virtualSpaces__Lists__Syllabuses__index.async.js
+++ b/p__virtualSpaces__Lists__Syllabuses__index.async.js
@@ -36,7 +36,7 @@ var noData = function noData(_ref) {
className: "tc animated fadeIn",
style: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_1___default()({}, {
color: '#999',
- margin: '200px auto'
+ margin: '100px auto'
}), styles),
children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
src: _assets_images_icons_nodata_png__WEBPACK_IMPORTED_MODULE_3__,
diff --git a/static/iconfont.0ce67ce2.svg b/static/iconfont.0ce67ce2.svg
new file mode 100644
index 0000000000..55ce145781
--- /dev/null
+++ b/static/iconfont.0ce67ce2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/iconfont.98e16e0a.svg b/static/iconfont.98e16e0a.svg
deleted file mode 100644
index 26b21686ba..0000000000
--- a/static/iconfont.98e16e0a.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/iconfont.9f9c4459.woff b/static/iconfont.9f9c4459.woff
new file mode 100644
index 0000000000..ee9b919364
Binary files /dev/null and b/static/iconfont.9f9c4459.woff differ
diff --git a/static/iconfont.b937596d.woff b/static/iconfont.b937596d.woff
deleted file mode 100644
index c89ce068c8..0000000000
Binary files a/static/iconfont.b937596d.woff and /dev/null differ
diff --git a/static/iconfont.24818926.ttf b/static/iconfont.bd4b373f.ttf
similarity index 91%
rename from static/iconfont.24818926.ttf
rename to static/iconfont.bd4b373f.ttf
index 841fe9bec9..7953ae7773 100644
Binary files a/static/iconfont.24818926.ttf and b/static/iconfont.bd4b373f.ttf differ
diff --git a/static/iconfont.f18a5c0e.woff2 b/static/iconfont.f18a5c0e.woff2
new file mode 100644
index 0000000000..af0c2bdc14
Binary files /dev/null and b/static/iconfont.f18a5c0e.woff2 differ
diff --git a/static/iconfont.f84589f4.woff2 b/static/iconfont.f84589f4.woff2
deleted file mode 100644
index 2766b9a044..0000000000
Binary files a/static/iconfont.f84589f4.woff2 and /dev/null differ
diff --git a/umi.css b/umi.css
index b4ca8b0e65..1d1d13555a 100644
--- a/umi.css
+++ b/umi.css
@@ -1374,10 +1374,10 @@ html {
\*************************************************************************************************************************************************************************************************************************************/
@font-face {
font-family: "iconfont"; /* Project id 653600 */
- src: url(./static/iconfont.f84589f4.woff2) format('woff2'),
- url(./static/iconfont.b937596d.woff) format('woff'),
- url(./static/iconfont.24818926.ttf) format('truetype'),
- url(./static/iconfont.98e16e0a.svg#iconfont) format('svg');
+ src: url(./static/iconfont.f18a5c0e.woff2) format('woff2'),
+ url(./static/iconfont.9f9c4459.woff) format('woff'),
+ url(./static/iconfont.bd4b373f.ttf) format('truetype'),
+ url(./static/iconfont.0ce67ce2.svg#iconfont) format('svg');
}
.iconfont {
@@ -1388,6 +1388,58 @@ html {
-moz-osx-font-smoothing: grayscale;
}
+.icon-wendang:before {
+ content: "\eb75";
+}
+
+.icon-rili3:before {
+ content: "\eb77";
+}
+
+.icon-xiazai5:before {
+ content: "\eb78";
+}
+
+.icon-saitishixun:before {
+ content: "\eb79";
+}
+
+.icon-guanka:before {
+ content: "\eb7a";
+}
+
+.icon-fuzhi8:before {
+ content: "\eb7c";
+}
+
+.icon-weishezhi:before {
+ content: "\eb7d";
+}
+
+.icon-yiwancheng4:before {
+ content: "\eb7e";
+}
+
+.icon-jieduanguanka:before {
+ content: "\eb7f";
+}
+
+.icon-liulan1:before {
+ content: "\eb71";
+}
+
+.icon-jiangjin:before {
+ content: "\eb73";
+}
+
+.icon-baoming:before {
+ content: "\eb74";
+}
+
+.icon-tuodong1:before {
+ content: "\eb70";
+}
+
.icon-quanping3:before {
content: "\eb6d";
}
@@ -12286,23 +12338,6 @@ body .mask-tips {
border-right-color: #fff !important;
border-bottom-color: #fff !important;
}
-.custom-modal-divider .ant-modal-body {
- padding: 0 !important;
-}
-.custom-modal-divider .ant-modal-confirm-title {
- padding: 11px 16px;
- border-bottom: 1px solid #f0f0f0;
-}
-.custom-modal-divider .ant-modal-confirm-content {
- padding: 0px 20px 20px;
-}
-.custom-modal-divider .ant-modal-confirm-btns {
- padding: 8px 16px;
- margin-top: 0 !important;
-}
-.custom-modal-divider.ant-modal-confirm-btns-hidden .ant-modal-confirm-btns {
- display: none;
-}
body {
width: 100% !important;
}
@@ -12477,6 +12512,97 @@ body[data-custom='auto'] {
.bg-44D7B6 {
background: #44d7b6;
}
+.ant-modal-confirm .ant-modal-body {
+ padding: 25px !important;
+}
+.ant-modal-confirm .ant-btn-default {
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #464F66;
+ margin-right: 15px;
+}
+.ant-modal-confirm .ant-btn-primary {
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+}
+.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child {
+ border-right-color: #C8D2EA !important;
+}
+.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
+ border-color: #C8D2EA !important;
+}
+.modal_styles [class=ant-modal-header] {
+ padding: 25px;
+}
+.modal_styles [class=ant-modal-close-x] {
+ margin: 15px 15px 0 0;
+ font-size: 16px;
+}
+.modal_styles [class=ant-modal-footer] {
+ border-top: none;
+ padding: 0 25px 25px 0;
+}
+.modal_styles [class=ant-modal-footer] .ant-btn-default {
+ height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #464F66;
+ margin-right: 15px;
+}
+.modal_styles [class=ant-modal-footer] .ant-btn-primary {
+ height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+}
+.modal_styles [class=ant-input] {
+ height: 40px;
+ line-height: 40px;
+}
+.modal_styles .modal_button_close {
+ height: 32px;
+ line-height: 32px;
+ background: #F8F9FC;
+ border-radius: 2px;
+ opacity: 0.5;
+ border: 1px solid #C3CFE0;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #464F66;
+}
+.modal_styles .modal_button_submit {
+ height: 32px;
+ line-height: 32px;
+ background: #3061D0;
+ box-shadow: 0px 2px 4px 0px #E0DFE1, inset 0px -1px 3px 0px rgba(255, 255, 255, 0.5);
+ border-radius: 2px;
+ font-size: 14px;
+ font-family: PingFangSC-Regular, PingFang SC;
+ font-weight: 400;
+ color: #FFFFFF;
+}
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
diff --git a/umi.js b/umi.js
index 89986c7aba..2bf8c4f151 100644
--- a/umi.js
+++ b/umi.js
@@ -39907,10 +39907,22 @@ var CompetitionsModel = {
per_page: 20,
category: ""
},
+ Staff: {},
+ Header: {},
competition_title: '',
banner: '',
competitions: [],
- count: ''
+ count: '',
+ RightItems: {},
+ Prizes: {},
+ Account: {},
+ TabResultList: {},
+ competition_team: {},
+ all_team_member: {},
+ actionTabs: {
+ key: '',
+ params: {}
+ }
},
effects: {
//获取头部信息
@@ -40028,8 +40040,16 @@ var CompetitionsModel = {
return call(competitions/* getStaff */.Dh, payload);
case 2:
response = _context5.sent;
+ _context5.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ Staff: response
+ }
+ });
+ case 5:
return _context5.abrupt("return", response);
- case 4:
+ case 6:
case "end":
return _context5.stop();
}
@@ -40051,8 +40071,16 @@ var CompetitionsModel = {
return call(competitions/* getHeader */.Pg, payload);
case 2:
response = _context6.sent;
+ _context6.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ Header: response
+ }
+ });
+ case 5:
return _context6.abrupt("return", response);
- case 4:
+ case 6:
case "end":
return _context6.stop();
}
@@ -40074,8 +40102,16 @@ var CompetitionsModel = {
return call(competitions/* getItem */.rV, payload);
case 2:
response = _context7.sent;
+ _context7.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ RightItems: response
+ }
+ });
+ case 5:
return _context7.abrupt("return", response);
- case 4:
+ case 6:
case "end":
return _context7.stop();
}
@@ -40243,8 +40279,8 @@ var CompetitionsModel = {
}, _callee14);
})();
},
- //加入战队 JoinTeam
- JoinTeam: function JoinTeam(_ref29, _ref30) {
+ //新增管理员 AddPersonnel
+ AddPersonnel: function AddPersonnel(_ref29, _ref30) {
var payload = _ref29.payload,
callback = _ref29.callback;
var call = _ref30.call,
@@ -40255,7 +40291,7 @@ var CompetitionsModel = {
while (1) switch (_context15.prev = _context15.next) {
case 0:
_context15.next = 2;
- return call(competitions/* JoinTeam */.zc, payload);
+ return call(competitions/* AddPersonnel */.R9, payload);
case 2:
response = _context15.sent;
return _context15.abrupt("return", response);
@@ -40266,8 +40302,8 @@ var CompetitionsModel = {
}, _callee15);
})();
},
- //查找老师 getTeacher
- getTeacher: function getTeacher(_ref31, _ref32) {
+ //加入战队 JoinTeam
+ JoinTeam: function JoinTeam(_ref31, _ref32) {
var payload = _ref31.payload,
callback = _ref31.callback;
var call = _ref32.call,
@@ -40278,7 +40314,7 @@ var CompetitionsModel = {
while (1) switch (_context16.prev = _context16.next) {
case 0:
_context16.next = 2;
- return call(competitions/* getTeacher */.jS, payload);
+ return call(competitions/* JoinTeam */.zc, payload);
case 2:
response = _context16.sent;
return _context16.abrupt("return", response);
@@ -40289,8 +40325,8 @@ var CompetitionsModel = {
}, _callee16);
})();
},
- //查找学生 getStudents
- getStudents: function getStudents(_ref33, _ref34) {
+ //查找老师 getTeacher
+ getTeacher: function getTeacher(_ref33, _ref34) {
var payload = _ref33.payload,
callback = _ref33.callback;
var call = _ref34.call,
@@ -40301,7 +40337,7 @@ var CompetitionsModel = {
while (1) switch (_context17.prev = _context17.next) {
case 0:
_context17.next = 2;
- return call(competitions/* getStudents */.sK, payload);
+ return call(competitions/* getTeacher */.jS, payload);
case 2:
response = _context17.sent;
return _context17.abrupt("return", response);
@@ -40312,8 +40348,8 @@ var CompetitionsModel = {
}, _callee17);
})();
},
- //提交战队成员 SubmitTeam
- SubmitTeam: function SubmitTeam(_ref35, _ref36) {
+ //查找学生 getStudents
+ getStudents: function getStudents(_ref35, _ref36) {
var payload = _ref35.payload,
callback = _ref35.callback;
var call = _ref36.call,
@@ -40324,7 +40360,7 @@ var CompetitionsModel = {
while (1) switch (_context18.prev = _context18.next) {
case 0:
_context18.next = 2;
- return call(competitions/* SubmitTeam */.rm, payload);
+ return call(competitions/* getStudents */.sK, payload);
case 2:
response = _context18.sent;
return _context18.abrupt("return", response);
@@ -40335,8 +40371,8 @@ var CompetitionsModel = {
}, _callee18);
})();
},
- //领取代金劵 Reward
- Reward: function Reward(_ref37, _ref38) {
+ //提交战队成员 SubmitTeam
+ SubmitTeam: function SubmitTeam(_ref37, _ref38) {
var payload = _ref37.payload,
callback = _ref37.callback;
var call = _ref38.call,
@@ -40347,7 +40383,7 @@ var CompetitionsModel = {
while (1) switch (_context19.prev = _context19.next) {
case 0:
_context19.next = 2;
- return call(competitions/* Reward */.Qp, payload);
+ return call(competitions/* SubmitTeam */.rm, payload);
case 2:
response = _context19.sent;
return _context19.abrupt("return", response);
@@ -40358,8 +40394,8 @@ var CompetitionsModel = {
}, _callee19);
})();
},
- //获取排行榜头部 ChartRules
- ChartRules: function ChartRules(_ref39, _ref40) {
+ //领取代金劵 Reward
+ Reward: function Reward(_ref39, _ref40) {
var payload = _ref39.payload,
callback = _ref39.callback;
var call = _ref40.call,
@@ -40370,7 +40406,7 @@ var CompetitionsModel = {
while (1) switch (_context20.prev = _context20.next) {
case 0:
_context20.next = 2;
- return call(competitions/* ChartRules */.Ux, payload);
+ return call(competitions/* Reward */.Qp, payload);
case 2:
response = _context20.sent;
return _context20.abrupt("return", response);
@@ -40381,8 +40417,8 @@ var CompetitionsModel = {
}, _callee20);
})();
},
- //获取战队信息 Charts
- Charts: function Charts(_ref41, _ref42) {
+ //获取排行榜头部 ChartRules
+ ChartRules: function ChartRules(_ref41, _ref42) {
var payload = _ref41.payload,
callback = _ref41.callback;
var call = _ref42.call,
@@ -40393,7 +40429,7 @@ var CompetitionsModel = {
while (1) switch (_context21.prev = _context21.next) {
case 0:
_context21.next = 2;
- return call(competitions/* Charts */.GQ, payload);
+ return call(competitions/* ChartRules */.Ux, payload);
case 2:
response = _context21.sent;
return _context21.abrupt("return", response);
@@ -40404,8 +40440,8 @@ var CompetitionsModel = {
}, _callee21);
})();
},
- //获取战队信息 TabResults
- TabResults: function TabResults(_ref43, _ref44) {
+ //获取战队信息 Charts
+ Charts: function Charts(_ref43, _ref44) {
var payload = _ref43.payload,
callback = _ref43.callback;
var call = _ref44.call,
@@ -40416,7 +40452,7 @@ var CompetitionsModel = {
while (1) switch (_context22.prev = _context22.next) {
case 0:
_context22.next = 2;
- return call(competitions/* TabResults */.ml, payload);
+ return call(competitions/* Charts */.GQ, payload);
case 2:
response = _context22.sent;
return _context22.abrupt("return", response);
@@ -40427,8 +40463,8 @@ var CompetitionsModel = {
}, _callee22);
})();
},
- //获取战队信息 Results
- Results: function Results(_ref45, _ref46) {
+ //获取战队信息 TabResults
+ TabResults: function TabResults(_ref45, _ref46) {
var payload = _ref45.payload,
callback = _ref45.callback;
var call = _ref46.call,
@@ -40439,42 +40475,50 @@ var CompetitionsModel = {
while (1) switch (_context23.prev = _context23.next) {
case 0:
_context23.next = 2;
- return call(competitions/* Results */.u9, payload);
+ return call(competitions/* TabResults */.ml, payload);
case 2:
response = _context23.sent;
+ _context23.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ TabResultList: response
+ }
+ });
+ case 5:
return _context23.abrupt("return", response);
- case 4:
+ case 6:
case "end":
return _context23.stop();
}
}, _callee23);
})();
},
- //获取获奖证书 Prize
- Prize: function Prize(_ref47, _ref48) {
- var payload = _ref47.payload,
- callback = _ref47.callback;
+ // 设置操做action
+ setActionTabs: function setActionTabs(_ref47, _ref48) {
+ var payload = _ref47.payload;
var call = _ref48.call,
put = _ref48.put;
return /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee24() {
- var response;
return regeneratorRuntime_default()().wrap(function _callee24$(_context24) {
while (1) switch (_context24.prev = _context24.next) {
case 0:
_context24.next = 2;
- return call(competitions/* Prize */.pU, payload);
+ return put({
+ type: 'save',
+ payload: {
+ actionTabs: objectSpread2_default()({}, payload)
+ }
+ });
case 2:
- response = _context24.sent;
- return _context24.abrupt("return", response);
- case 4:
case "end":
return _context24.stop();
}
}, _callee24);
})();
},
- //获取用户信息 Accounts
- Accounts: function Accounts(_ref49, _ref50) {
+ //获取战队信息 Results
+ Results: function Results(_ref49, _ref50) {
var payload = _ref49.payload,
callback = _ref49.callback;
var call = _ref50.call,
@@ -40485,7 +40529,7 @@ var CompetitionsModel = {
while (1) switch (_context25.prev = _context25.next) {
case 0:
_context25.next = 2;
- return call(competitions/* Accounts */.XJ, payload);
+ return call(competitions/* Results */.u9, payload);
case 2:
response = _context25.sent;
return _context25.abrupt("return", response);
@@ -40496,8 +40540,8 @@ var CompetitionsModel = {
}, _callee25);
})();
},
- //获取验证码 getVerification
- getVerification: function getVerification(_ref51, _ref52) {
+ //获取获奖证书 Prize
+ Prize: function Prize(_ref51, _ref52) {
var payload = _ref51.payload,
callback = _ref51.callback;
var call = _ref52.call,
@@ -40508,19 +40552,27 @@ var CompetitionsModel = {
while (1) switch (_context26.prev = _context26.next) {
case 0:
_context26.next = 2;
- return call(competitions/* getVerification */.Ni, payload);
+ return call(competitions/* Prize */.pU, payload);
case 2:
response = _context26.sent;
+ _context26.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ Prizes: response
+ }
+ });
+ case 5:
return _context26.abrupt("return", response);
- case 4:
+ case 6:
case "end":
return _context26.stop();
}
}, _callee26);
})();
},
- //绑定手机
- PhoneBind: function PhoneBind(_ref53, _ref54) {
+ //获取用户信息 Accounts
+ Accounts: function Accounts(_ref53, _ref54) {
var payload = _ref53.payload,
callback = _ref53.callback;
var call = _ref54.call,
@@ -40531,19 +40583,27 @@ var CompetitionsModel = {
while (1) switch (_context27.prev = _context27.next) {
case 0:
_context27.next = 2;
- return call(competitions/* PhoneBind */.uZ, payload);
+ return call(competitions/* Accounts */.XJ, payload);
case 2:
response = _context27.sent;
+ _context27.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ Account: response
+ }
+ });
+ case 5:
return _context27.abrupt("return", response);
- case 4:
+ case 6:
case "end":
return _context27.stop();
}
}, _callee27);
})();
},
- //绑定邮箱
- EmailBind: function EmailBind(_ref55, _ref56) {
+ //获取验证码 getVerification
+ getVerification: function getVerification(_ref55, _ref56) {
var payload = _ref55.payload,
callback = _ref55.callback;
var call = _ref56.call,
@@ -40554,7 +40614,7 @@ var CompetitionsModel = {
while (1) switch (_context28.prev = _context28.next) {
case 0:
_context28.next = 2;
- return call(competitions/* EmailBind */.rk, payload);
+ return call(competitions/* getVerification */.Ni, payload);
case 2:
response = _context28.sent;
return _context28.abrupt("return", response);
@@ -40565,8 +40625,8 @@ var CompetitionsModel = {
}, _callee28);
})();
},
- //撤销认证 Authentication, Professional
- Authentication: function Authentication(_ref57, _ref58) {
+ //绑定手机
+ PhoneBind: function PhoneBind(_ref57, _ref58) {
var payload = _ref57.payload,
callback = _ref57.callback;
var call = _ref58.call,
@@ -40577,7 +40637,7 @@ var CompetitionsModel = {
while (1) switch (_context29.prev = _context29.next) {
case 0:
_context29.next = 2;
- return call(competitions/* Authentication */.Vy, payload);
+ return call(competitions/* PhoneBind */.uZ, payload);
case 2:
response = _context29.sent;
return _context29.abrupt("return", response);
@@ -40588,7 +40648,8 @@ var CompetitionsModel = {
}, _callee29);
})();
},
- Professional: function Professional(_ref59, _ref60) {
+ //绑定邮箱
+ EmailBind: function EmailBind(_ref59, _ref60) {
var payload = _ref59.payload,
callback = _ref59.callback;
var call = _ref60.call,
@@ -40599,7 +40660,7 @@ var CompetitionsModel = {
while (1) switch (_context30.prev = _context30.next) {
case 0:
_context30.next = 2;
- return call(competitions/* Professional */.tC, payload);
+ return call(competitions/* EmailBind */.rk, payload);
case 2:
response = _context30.sent;
return _context30.abrupt("return", response);
@@ -40610,8 +40671,8 @@ var CompetitionsModel = {
}, _callee30);
})();
},
- //提交银行卡信息
- setleader: function setleader(_ref61, _ref62) {
+ //撤销认证 Authentication, Professional
+ Authentication: function Authentication(_ref61, _ref62) {
var payload = _ref61.payload,
callback = _ref61.callback;
var call = _ref62.call,
@@ -40622,7 +40683,7 @@ var CompetitionsModel = {
while (1) switch (_context31.prev = _context31.next) {
case 0:
_context31.next = 2;
- return call(competitions/* setleader */.tO, payload);
+ return call(competitions/* Authentication */.Vy, payload);
case 2:
response = _context31.sent;
return _context31.abrupt("return", response);
@@ -40633,8 +40694,7 @@ var CompetitionsModel = {
}, _callee31);
})();
},
- //获取实训 getShixun
- getShixun: function getShixun(_ref63, _ref64) {
+ Professional: function Professional(_ref63, _ref64) {
var payload = _ref63.payload,
callback = _ref63.callback;
var call = _ref64.call,
@@ -40645,7 +40705,7 @@ var CompetitionsModel = {
while (1) switch (_context32.prev = _context32.next) {
case 0:
_context32.next = 2;
- return call(competitions/* getShixun */.qj, payload);
+ return call(competitions/* Professional */.tC, payload);
case 2:
response = _context32.sent;
return _context32.abrupt("return", response);
@@ -40656,8 +40716,8 @@ var CompetitionsModel = {
}, _callee32);
})();
},
- //获取课堂 getCourse
- getCourse: function getCourse(_ref65, _ref66) {
+ //提交银行卡信息
+ setleader: function setleader(_ref65, _ref66) {
var payload = _ref65.payload,
callback = _ref65.callback;
var call = _ref66.call,
@@ -40668,7 +40728,7 @@ var CompetitionsModel = {
while (1) switch (_context33.prev = _context33.next) {
case 0:
_context33.next = 2;
- return call(competitions/* getCourse */.XR, payload);
+ return call(competitions/* setleader */.tO, payload);
case 2:
response = _context33.sent;
return _context33.abrupt("return", response);
@@ -40678,6 +40738,114 @@ var CompetitionsModel = {
}
}, _callee33);
})();
+ },
+ //获取实训 getShixun
+ getShixun: function getShixun(_ref67, _ref68) {
+ var payload = _ref67.payload,
+ callback = _ref67.callback;
+ var call = _ref68.call,
+ put = _ref68.put;
+ return /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee34() {
+ var response;
+ return regeneratorRuntime_default()().wrap(function _callee34$(_context34) {
+ while (1) switch (_context34.prev = _context34.next) {
+ case 0:
+ _context34.next = 2;
+ return call(competitions/* getShixun */.qj, payload);
+ case 2:
+ response = _context34.sent;
+ return _context34.abrupt("return", response);
+ case 4:
+ case "end":
+ return _context34.stop();
+ }
+ }, _callee34);
+ })();
+ },
+ //获取课堂 getCourse
+ getCourse: function getCourse(_ref69, _ref70) {
+ var payload = _ref69.payload,
+ callback = _ref69.callback;
+ var call = _ref70.call,
+ put = _ref70.put;
+ return /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee35() {
+ var response;
+ return regeneratorRuntime_default()().wrap(function _callee35$(_context35) {
+ while (1) switch (_context35.prev = _context35.next) {
+ case 0:
+ _context35.next = 2;
+ return call(competitions/* getCourse */.XR, payload);
+ case 2:
+ response = _context35.sent;
+ return _context35.abrupt("return", response);
+ case 4:
+ case "end":
+ return _context35.stop();
+ }
+ }, _callee35);
+ })();
+ },
+ //获取战队
+ competition_teams: function competition_teams(_ref71, _ref72) {
+ var payload = _ref71.payload,
+ callback = _ref71.callback;
+ var call = _ref72.call,
+ put = _ref72.put;
+ return /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee36() {
+ var response;
+ return regeneratorRuntime_default()().wrap(function _callee36$(_context36) {
+ while (1) switch (_context36.prev = _context36.next) {
+ case 0:
+ _context36.next = 2;
+ return call(competitions/* competition_teams */.zz, payload);
+ case 2:
+ response = _context36.sent;
+ _context36.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ competition_team: response
+ }
+ });
+ case 5:
+ return _context36.abrupt("return", response);
+ case 6:
+ case "end":
+ return _context36.stop();
+ }
+ }, _callee36);
+ })();
+ },
+ //获取参赛人员 all_team_members
+ all_team_members: function all_team_members(_ref73, _ref74) {
+ var payload = _ref73.payload,
+ callback = _ref73.callback;
+ var call = _ref74.call,
+ put = _ref74.put;
+ return /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee37() {
+ var response;
+ return regeneratorRuntime_default()().wrap(function _callee37$(_context37) {
+ while (1) switch (_context37.prev = _context37.next) {
+ case 0:
+ _context37.next = 2;
+ return call(competitions/* all_team_members */.$P, payload);
+ case 2:
+ response = _context37.sent;
+ _context37.next = 5;
+ return put({
+ type: "save",
+ payload: {
+ all_team_member: response
+ }
+ });
+ case 5:
+ return _context37.abrupt("return", response);
+ case 6:
+ case "end":
+ return _context37.stop();
+ }
+ }, _callee37);
+ })();
}
},
reducers: {
@@ -40687,12 +40855,12 @@ var CompetitionsModel = {
}
},
subscriptions: {
- setup: function setup(_ref67) {
- var dispatch = _ref67.dispatch,
- history = _ref67.history;
+ setup: function setup(_ref75) {
+ var dispatch = _ref75.dispatch,
+ history = _ref75.history;
// console.log("subscriptions:", dispatch, history)
- return history.listen(function (_ref68) {
- var pathname = _ref68.pathname;
+ return history.listen(function (_ref76) {
+ var pathname = _ref76.pathname;
if (pathname === '/') {
dispatch({
type: 'query'
@@ -57051,14 +57219,20 @@ function _getCommitIdContent() {
"use strict";
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
+/* harmony export */ "$M": function() { return /* binding */ basicSetting; },
+/* harmony export */ "$P": function() { return /* binding */ all_team_members; },
/* harmony export */ "Dh": function() { return /* binding */ getStaff; },
/* harmony export */ "FU": function() { return /* binding */ AddTeam; },
/* harmony export */ "GQ": function() { return /* binding */ Charts; },
+/* harmony export */ "IN": function() { return /* binding */ identifier_exist; },
+/* harmony export */ "JM": function() { return /* binding */ shixun_select; },
/* harmony export */ "Ju": function() { return /* binding */ getCertificateInfo; },
+/* harmony export */ "Mn": function() { return /* binding */ get_picture; },
/* harmony export */ "Ni": function() { return /* binding */ getVerification; },
/* harmony export */ "Pg": function() { return /* binding */ getHeader; },
/* harmony export */ "Pt": function() { return /* binding */ competitionTeams; },
/* harmony export */ "Qp": function() { return /* binding */ Reward; },
+/* harmony export */ "R9": function() { return /* binding */ AddPersonnel; },
/* harmony export */ "Ux": function() { return /* binding */ ChartRules; },
/* harmony export */ "Vy": function() { return /* binding */ Authentication; },
/* harmony export */ "XJ": function() { return /* binding */ Accounts; },
@@ -57067,15 +57241,25 @@ function _getCommitIdContent() {
/* harmony export */ "aq": function() { return /* binding */ getTeamList; },
/* harmony export */ "bQ": function() { return /* binding */ getCompetitionsList; },
/* harmony export */ "jS": function() { return /* binding */ getTeacher; },
+/* harmony export */ "lm": function() { return /* binding */ get_shixun_settings; },
/* harmony export */ "ml": function() { return /* binding */ TabResults; },
+/* harmony export */ "o3": function() { return /* binding */ common_header; },
+/* harmony export */ "pA": function() { return /* binding */ search_managers; },
+/* harmony export */ "pS": function() { return /* binding */ shixun_delete; },
/* harmony export */ "pU": function() { return /* binding */ Prize; },
/* harmony export */ "ps": function() { return /* binding */ DeleteTeam; },
+/* harmony export */ "q0": function() { return /* binding */ add_managers; },
+/* harmony export */ "qN": function() { return /* binding */ delete_managers; },
/* harmony export */ "qS": function() { return /* binding */ addApplytojoincourse; },
/* harmony export */ "qj": function() { return /* binding */ getShixun; },
+/* harmony export */ "qt": function() { return /* binding */ competition_review; },
/* harmony export */ "rV": function() { return /* binding */ getItem; },
+/* harmony export */ "rZ": function() { return /* binding */ info_finish; },
/* harmony export */ "rk": function() { return /* binding */ EmailBind; },
/* harmony export */ "rm": function() { return /* binding */ SubmitTeam; },
/* harmony export */ "sK": function() { return /* binding */ getStudents; },
+/* harmony export */ "sL": function() { return /* binding */ get_managers; },
+/* harmony export */ "su": function() { return /* binding */ shixun_add; },
/* harmony export */ "tC": function() { return /* binding */ Professional; },
/* harmony export */ "tO": function() { return /* binding */ setleader; },
/* harmony export */ "u9": function() { return /* binding */ Results; },
@@ -57085,8 +57269,10 @@ function _getCommitIdContent() {
/* harmony export */ "yS": function() { return /* binding */ UpTeam; },
/* harmony export */ "zF": function() { return /* binding */ getWorkSubmitUpdateRes; },
/* harmony export */ "zc": function() { return /* binding */ JoinTeam; },
-/* harmony export */ "zj": function() { return /* binding */ updateMdContent; }
+/* harmony export */ "zj": function() { return /* binding */ updateMdContent; },
+/* harmony export */ "zz": function() { return /* binding */ competition_teams; }
/* harmony export */ });
+/* unused harmony exports download_template, addCompetitions */
/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/objectSpread2.js */ 42122);
/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js */ 17061);
@@ -57371,7 +57557,7 @@ function _DeleteTeam() {
function AddTeam(_x14) {
return _AddTeam.apply(this, arguments);
}
-//加入战队
+//新增管理员
function _AddTeam() {
_AddTeam = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee14(params) {
return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee14$(_context14) {
@@ -57389,16 +57575,16 @@ function _AddTeam() {
}));
return _AddTeam.apply(this, arguments);
}
-function JoinTeam(_x15) {
- return _JoinTeam.apply(this, arguments);
+function AddPersonnel(_x15) {
+ return _AddPersonnel.apply(this, arguments);
}
-//查找老师
-function _JoinTeam() {
- _JoinTeam = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee15(params) {
+//加入战队
+function _AddPersonnel() {
+ _AddPersonnel = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee15(params) {
return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee15$(_context15) {
while (1) switch (_context15.prev = _context15.next) {
case 0:
- return _context15.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/join.json"), {
+ return _context15.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.id, "/add_managers.json"), {
method: 'post',
body: params
}));
@@ -57408,505 +57594,915 @@ function _JoinTeam() {
}
}, _callee15);
}));
+ return _AddPersonnel.apply(this, arguments);
+}
+function JoinTeam(_x16) {
+ return _JoinTeam.apply(this, arguments);
+}
+//查找老师
+function _JoinTeam() {
+ _JoinTeam = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee16(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee16$(_context16) {
+ while (1) switch (_context16.prev = _context16.next) {
+ case 0:
+ return _context16.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/join.json"), {
+ method: 'post',
+ body: params
+ }));
+ case 1:
+ case "end":
+ return _context16.stop();
+ }
+ }, _callee16);
+ }));
return _JoinTeam.apply(this, arguments);
}
-function getTeacher(_x16) {
+function getTeacher(_x17) {
return _getTeacher.apply(this, arguments);
}
//查找学生
function _getTeacher() {
- _getTeacher = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee16(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee16$(_context16) {
- while (1) switch (_context16.prev = _context16.next) {
+ _getTeacher = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee17(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee17$(_context17) {
+ while (1) switch (_context17.prev = _context17.next) {
case 0:
- return _context16.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/teachers.json"), {
+ return _context17.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/teachers.json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context16.stop();
+ return _context17.stop();
}
- }, _callee16);
+ }, _callee17);
}));
return _getTeacher.apply(this, arguments);
}
-function getStudents(_x17) {
+function getStudents(_x18) {
return _getStudents.apply(this, arguments);
}
//提交数据
function _getStudents() {
- _getStudents = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee17(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee17$(_context17) {
- while (1) switch (_context17.prev = _context17.next) {
+ _getStudents = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee18(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee18$(_context18) {
+ while (1) switch (_context18.prev = _context18.next) {
case 0:
- return _context17.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/students.json"), {
+ return _context18.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/students.json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context17.stop();
+ return _context18.stop();
}
- }, _callee17);
+ }, _callee18);
}));
return _getStudents.apply(this, arguments);
}
-function SubmitTeam(_x18) {
+function SubmitTeam(_x19) {
return _SubmitTeam.apply(this, arguments);
}
//领取代金劵
function _SubmitTeam() {
- _SubmitTeam = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee18(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee18$(_context18) {
- while (1) switch (_context18.prev = _context18.next) {
+ _SubmitTeam = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee19(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee19$(_context19) {
+ while (1) switch (_context19.prev = _context19.next) {
case 0:
- return _context18.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/").concat(params.teamid, "/crud_team_members.json"), {
+ return _context19.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/").concat(params.teamid, "/crud_team_members.json"), {
method: 'post',
body: params
}));
case 1:
case "end":
- return _context18.stop();
+ return _context19.stop();
}
- }, _callee18);
+ }, _callee19);
}));
return _SubmitTeam.apply(this, arguments);
}
-function Reward(_x19) {
+function Reward(_x20) {
return _Reward.apply(this, arguments);
}
//获取排行榜tab chart_rules
function _Reward() {
- _Reward = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee19(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee19$(_context19) {
- while (1) switch (_context19.prev = _context19.next) {
+ _Reward = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee20(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee20$(_context20) {
+ while (1) switch (_context20.prev = _context20.next) {
case 0:
- return _context19.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/competition_reward.json", {
+ return _context20.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/competition_reward.json", {
method: 'post',
body: params
}));
case 1:
case "end":
- return _context19.stop();
+ return _context20.stop();
}
- }, _callee19);
+ }, _callee20);
}));
return _Reward.apply(this, arguments);
}
-function ChartRules(_x20) {
+function ChartRules(_x21) {
return _ChartRules.apply(this, arguments);
}
//获取排行榜 排名数据
function _ChartRules() {
- _ChartRules = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee20(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee20$(_context20) {
- while (1) switch (_context20.prev = _context20.next) {
+ _ChartRules = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee21(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee21$(_context21) {
+ while (1) switch (_context21.prev = _context21.next) {
case 0:
- return _context20.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/chart_rules.json"), {
+ return _context21.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/chart_rules.json"), {
method: 'get'
}));
case 1:
case "end":
- return _context20.stop();
+ return _context21.stop();
}
- }, _callee20);
+ }, _callee21);
}));
return _ChartRules.apply(this, arguments);
}
-function Charts(_x21) {
+function Charts(_x22) {
return _Charts.apply(this, arguments);
}
//获取提交结果拍行榜数据
function _Charts() {
- _Charts = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee21(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee21$(_context21) {
- while (1) switch (_context21.prev = _context21.next) {
+ _Charts = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee22(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee22$(_context22) {
+ while (1) switch (_context22.prev = _context22.next) {
case 0:
- return _context21.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/charts.json"), {
+ return _context22.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/charts.json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context21.stop();
+ return _context22.stop();
}
- }, _callee21);
+ }, _callee22);
}));
return _Charts.apply(this, arguments);
}
-function Results(_x22) {
+function Results(_x23) {
return _Results.apply(this, arguments);
}
//获取提交结果拍行榜数据
function _Results() {
- _Results = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee22(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee22$(_context22) {
- while (1) switch (_context22.prev = _context22.next) {
+ _Results = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee23(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee23$(_context23) {
+ while (1) switch (_context23.prev = _context23.next) {
case 0:
- return _context22.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/results.json"), {
+ return _context23.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/results.json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context22.stop();
+ return _context23.stop();
}
- }, _callee22);
+ }, _callee23);
}));
return _Results.apply(this, arguments);
}
-function TabResults(_x23) {
+function TabResults(_x24) {
return _TabResults.apply(this, arguments);
}
//获取获奖证书 prize
function _TabResults() {
- _TabResults = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee23(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee23$(_context23) {
- while (1) switch (_context23.prev = _context23.next) {
+ _TabResults = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee24(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee24$(_context24) {
+ while (1) switch (_context24.prev = _context24.next) {
case 0:
- return _context23.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/md_tab_rules.json"), {
+ return _context24.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/md_tab_rules.json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context23.stop();
+ return _context24.stop();
}
- }, _callee23);
+ }, _callee24);
}));
return _TabResults.apply(this, arguments);
}
-function Prize(_x24) {
+function Prize(_x25) {
return _Prize.apply(this, arguments);
}
//获取个人详情信息
function _Prize() {
- _Prize = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee24(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee24$(_context24) {
- while (1) switch (_context24.prev = _context24.next) {
+ _Prize = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee25(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee25$(_context25) {
+ while (1) switch (_context25.prev = _context25.next) {
case 0:
- return _context24.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/prize.json"), {
+ return _context25.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/prize.json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context24.stop();
+ return _context25.stop();
}
- }, _callee24);
+ }, _callee25);
}));
return _Prize.apply(this, arguments);
}
-function Accounts(_x25) {
+function Accounts(_x26) {
return _Accounts.apply(this, arguments);
}
//获取邮箱 get_verification_code
function _Accounts() {
- _Accounts = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee25(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee25$(_context25) {
- while (1) switch (_context25.prev = _context25.next) {
+ _Accounts = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee26(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee26$(_context26) {
+ while (1) switch (_context26.prev = _context26.next) {
case 0:
- return _context25.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.id, ".json"), {
+ return _context26.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.id, ".json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context25.stop();
+ return _context26.stop();
}
- }, _callee25);
+ }, _callee26);
}));
return _Accounts.apply(this, arguments);
}
-function getVerification(_x26) {
+function getVerification(_x27) {
return _getVerification.apply(this, arguments);
}
//绑定手机号 /api/users/accounts/130978/phone_bind.json
function _getVerification() {
- _getVerification = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee26(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee26$(_context26) {
- while (1) switch (_context26.prev = _context26.next) {
+ _getVerification = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee27(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee27$(_context27) {
+ while (1) switch (_context27.prev = _context27.next) {
case 0:
- return _context26.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/accounts/get_verification_code.json", {
+ return _context27.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/accounts/get_verification_code.json", {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context26.stop();
+ return _context27.stop();
}
- }, _callee26);
+ }, _callee27);
}));
return _getVerification.apply(this, arguments);
}
-function PhoneBind(_x27) {
+function PhoneBind(_x28) {
return _PhoneBind.apply(this, arguments);
}
//绑定邮箱
function _PhoneBind() {
- _PhoneBind = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee27(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee27$(_context27) {
- while (1) switch (_context27.prev = _context27.next) {
+ _PhoneBind = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee28(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee28$(_context28) {
+ while (1) switch (_context28.prev = _context28.next) {
case 0:
- return _context27.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/phone_bind.json"), {
+ return _context28.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/phone_bind.json"), {
method: 'post',
body: params
}));
case 1:
case "end":
- return _context27.stop();
+ return _context28.stop();
}
- }, _callee27);
+ }, _callee28);
}));
return _PhoneBind.apply(this, arguments);
}
-function EmailBind(_x28) {
+function EmailBind(_x29) {
return _EmailBind.apply(this, arguments);
}
//职业信息撤销认证/users/accounts/${userid}/professional_auth_apply.json
function _EmailBind() {
- _EmailBind = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee28(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee28$(_context28) {
- while (1) switch (_context28.prev = _context28.next) {
+ _EmailBind = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee29(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee29$(_context29) {
+ while (1) switch (_context29.prev = _context29.next) {
case 0:
- return _context28.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/email_bind.json"), {
+ return _context29.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/email_bind.json"), {
method: 'post',
body: params
}));
case 1:
case "end":
- return _context28.stop();
+ return _context29.stop();
}
- }, _callee28);
+ }, _callee29);
}));
return _EmailBind.apply(this, arguments);
}
-function Professional(_x29) {
+function Professional(_x30) {
return _Professional.apply(this, arguments);
}
//实名信息撤销认证 /users/accounts/${userid}/authentication_apply.json
function _Professional() {
- _Professional = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee29(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee29$(_context29) {
- while (1) switch (_context29.prev = _context29.next) {
+ _Professional = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee30(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee30$(_context30) {
+ while (1) switch (_context30.prev = _context30.next) {
case 0:
- return _context29.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/professional_auth_apply.json"), {
+ return _context30.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/professional_auth_apply.json"), {
method: 'delete'
}));
case 1:
case "end":
- return _context29.stop();
+ return _context30.stop();
}
- }, _callee29);
+ }, _callee30);
}));
return _Professional.apply(this, arguments);
}
-function Authentication(_x30) {
+function Authentication(_x31) {
return _Authentication.apply(this, arguments);
}
//提交银行卡信息
function _Authentication() {
- _Authentication = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee30(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee30$(_context30) {
- while (1) switch (_context30.prev = _context30.next) {
+ _Authentication = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee31(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee31$(_context31) {
+ while (1) switch (_context31.prev = _context31.next) {
case 0:
- return _context30.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/authentication_apply.json"), {
+ return _context31.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/users/accounts/".concat(params.userid, "/authentication_apply.json"), {
method: 'delete'
}));
case 1:
case "end":
- return _context30.stop();
+ return _context31.stop();
}
- }, _callee30);
+ }, _callee31);
}));
return _Authentication.apply(this, arguments);
}
-function setleader(_x31) {
+function setleader(_x32) {
return _setleader.apply(this, arguments);
}
//获取战队实训信息
function _setleader() {
- _setleader = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee31(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee31$(_context31) {
- while (1) switch (_context31.prev = _context31.next) {
+ _setleader = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee32(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee32$(_context32) {
+ while (1) switch (_context32.prev = _context32.next) {
case 0:
- return _context31.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/prize_leader_account.json"), {
- method: 'patch',
+ return _context32.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/prize_leader_account.json"), {
+ method: 'put',
body: params
}));
case 1:
case "end":
- return _context31.stop();
+ return _context32.stop();
}
- }, _callee31);
+ }, _callee32);
}));
return _setleader.apply(this, arguments);
}
-function getShixun(_x32) {
+function getShixun(_x33) {
return _getShixun.apply(this, arguments);
}
//获取战队课堂信息
function _getShixun() {
- _getShixun = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee32(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee32$(_context32) {
- while (1) switch (_context32.prev = _context32.next) {
+ _getShixun = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee33(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee33$(_context33) {
+ while (1) switch (_context33.prev = _context33.next) {
case 0:
- return _context32.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/").concat(params.teamid, "/shixun_detail.json"), {
+ return _context33.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/").concat(params.teamid, "/shixun_detail.json"), {
method: 'get'
}));
case 1:
case "end":
- return _context32.stop();
+ return _context33.stop();
}
- }, _callee32);
+ }, _callee33);
}));
return _getShixun.apply(this, arguments);
}
-function getCourse(_x33) {
+function getCourse(_x34) {
return _getCourse.apply(this, arguments);
}
//删除视频
function _getCourse() {
- _getCourse = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee33(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee33$(_context33) {
- while (1) switch (_context33.prev = _context33.next) {
+ _getCourse = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee34(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee34$(_context34) {
+ while (1) switch (_context34.prev = _context34.next) {
case 0:
- return _context33.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/").concat(params.teamid, "/course_detail.json"), {
+ return _context34.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.identifier, "/competition_teams/").concat(params.teamid, "/course_detail.json"), {
method: 'get'
}));
case 1:
case "end":
- return _context33.stop();
+ return _context34.stop();
}
- }, _callee33);
+ }, _callee34);
}));
return _getCourse.apply(this, arguments);
}
-function deletAttachments(_x34) {
+function deletAttachments(_x35) {
return _deletAttachments.apply(this, arguments);
}
// 导出证书
function _deletAttachments() {
- _deletAttachments = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee34(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee34$(_context34) {
- while (1) switch (_context34.prev = _context34.next) {
+ _deletAttachments = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee35(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee35$(_context35) {
+ while (1) switch (_context35.prev = _context35.next) {
case 0:
- return _context34.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/attachments/".concat(params.id, ".json"), {
+ return _context35.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/attachments/".concat(params.id, ".json"), {
method: 'delete'
}));
case 1:
case "end":
- return _context34.stop();
+ return _context35.stop();
}
- }, _callee34);
+ }, _callee35);
}));
return _deletAttachments.apply(this, arguments);
}
-function getCertificateInfo(_x35) {
+function getCertificateInfo(_x36) {
return _getCertificateInfo.apply(this, arguments);
}
+
+// 更新基本信息
function _getCertificateInfo() {
- _getCertificateInfo = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee35(params) {
- return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee35$(_context35) {
- while (1) switch (_context35.prev = _context35.next) {
+ _getCertificateInfo = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee36(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee36$(_context36) {
+ while (1) switch (_context36.prev = _context36.next) {
case 0:
- return _context35.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.id, "/get_certificate_info.json"), {
+ return _context36.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.id, "/get_certificate_info.json"), {
method: 'get',
params: params
}));
case 1:
case "end":
- return _context35.stop();
+ return _context36.stop();
}
- }, _callee35);
+ }, _callee36);
}));
return _getCertificateInfo.apply(this, arguments);
}
+function basicSetting(_x37) {
+ return _basicSetting.apply(this, arguments);
+}
-/***/ }),
-
-/***/ 65630:
-/*!******************************************************!*\
- !*** ./src/service/engineering/index.ts + 1 modules ***!
- \******************************************************/
-/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-
-// EXPORTS
-__webpack_require__.d(__webpack_exports__, {
- "F": function() { return /* reexport */ exportCourseService; },
- "OE": function() { return /* reexport */ exportGraduationService; },
- "ff": function() { return /* reexport */ getCourseResultDetailClass; },
- "p1": function() { return /* reexport */ getCourseResultDetailService; },
- "_y": function() { return /* reexport */ getCourseResultsService; },
- "mK": function() { return /* reexport */ getFormulasService; },
- "gq": function() { return /* reexport */ getGraduationResultDetailService; },
- "eM": function() { return /* reexport */ getGraduationResultsService; },
- "BA": function() { return /* binding */ getMajorListService; },
- "bA": function() { return /* binding */ getTopPageService; },
- "Nx": function() { return /* binding */ getYearListService; },
- "Qx": function() { return /* reexport */ postComputeAllGraduationService; },
- "At": function() { return /* reexport */ postComputeAllService; },
- "PX": function() { return /* reexport */ postComputeCourseSingleService; },
- "Xl": function() { return /* reexport */ postComputeGraduationSingleService; },
- "y9": function() { return /* reexport */ putFormulasService; },
- "No": function() { return /* reexport */ putGoalValueService; },
- "ay": function() { return /* binding */ putTopPageService; }
-});
-
-// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
-var regeneratorRuntime = __webpack_require__(17061);
-var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
-// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js
-var asyncToGenerator = __webpack_require__(17156);
-var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
-// EXTERNAL MODULE: ./src/utils/fetch.ts
-var fetch = __webpack_require__(84519);
-// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
-var objectSpread2 = __webpack_require__(42122);
-var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
-// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js
-var objectWithoutProperties = __webpack_require__(70215);
-var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties);
-;// CONCATENATED MODULE: ./src/service/engineering/evaluate.ts
-
-
-
-
-var _excluded = ["id"],
- _excluded2 = ["ec_year_id", "type", "goal_value"];
+// 竞赛名单导入模板
+function _basicSetting() {
+ _basicSetting = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee37(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee37$(_context37) {
+ while (1) switch (_context37.prev = _context37.next) {
+ case 0:
+ return _context37.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params.id, "/basic_setting.json"), {
+ method: 'post',
+ body: params
+ }));
+ case 1:
+ case "end":
+ return _context37.stop();
+ }
+ }, _callee37);
+ }));
+ return _basicSetting.apply(this, arguments);
+}
+function download_template() {
+ return _download_template.apply(this, arguments);
+}
-/**
- * 课程评价
- * 获取列表数据
- * @param id 届别id
- */
-var getCourseResultsService = /*#__PURE__*/function () {
- var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(_ref) {
- var id, params;
- return regeneratorRuntime_default()().wrap(function _callee$(_context) {
- while (1) switch (_context.prev = _context.next) {
+// 竞赛基本信息详情
+function _download_template() {
+ _download_template = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee38() {
+ return _regeneratorRuntime().wrap(function _callee38$(_context38) {
+ while (1) switch (_context38.prev = _context38.next) {
case 0:
- id = _ref.id, params = objectWithoutProperties_default()(_ref, _excluded);
- return _context.abrupt("return", (0,fetch/* default */.ZP)("/api/ec_years/".concat(id, "/course_results.json"), {
+ return _context38.abrupt("return", Fetch("/api/competitions/download_template", {
method: 'get',
- params: params
+ responseType: 'arraybuffer'
}));
- case 2:
+ case 1:
case "end":
- return _context.stop();
+ return _context38.stop();
}
- }, _callee);
+ }, _callee38);
}));
- return function getCourseResultsService(_x) {
- return _ref2.apply(this, arguments);
- };
-}();
+ return _download_template.apply(this, arguments);
+}
+function common_header(_x38) {
+ return _common_header.apply(this, arguments);
+}
+
+// 创建竞赛
+function _common_header() {
+ _common_header = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee39(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee39$(_context39) {
+ while (1) switch (_context39.prev = _context39.next) {
+ case 0:
+ return _context39.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params, "/common_header.json"), {
+ method: 'get'
+ }));
+ case 1:
+ case "end":
+ return _context39.stop();
+ }
+ }, _callee39);
+ }));
+ return _common_header.apply(this, arguments);
+}
+function addCompetitions(_x39) {
+ return _addCompetitions.apply(this, arguments);
+}
+
+// 添加管理员的搜索列表
+function _addCompetitions() {
+ _addCompetitions = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee40(params) {
+ return _regeneratorRuntime().wrap(function _callee40$(_context40) {
+ while (1) switch (_context40.prev = _context40.next) {
+ case 0:
+ return _context40.abrupt("return", Fetch("/api/competitions.json", {
+ method: 'post',
+ body: params
+ }));
+ case 1:
+ case "end":
+ return _context40.stop();
+ }
+ }, _callee40);
+ }));
+ return _addCompetitions.apply(this, arguments);
+}
+function search_managers(_x40) {
+ return _search_managers.apply(this, arguments);
+}
+
+// 管理员列表
+function _search_managers() {
+ _search_managers = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee41(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee41$(_context41) {
+ while (1) switch (_context41.prev = _context41.next) {
+ case 0:
+ return _context41.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params === null || params === void 0 ? void 0 : params.id, "/search_managers.json"), {
+ method: 'get',
+ params: params
+ }));
+ case 1:
+ case "end":
+ return _context41.stop();
+ }
+ }, _callee41);
+ }));
+ return _search_managers.apply(this, arguments);
+}
+function get_managers(_x41) {
+ return _get_managers.apply(this, arguments);
+}
+
+// 添加管理员
+function _get_managers() {
+ _get_managers = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee42(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee42$(_context42) {
+ while (1) switch (_context42.prev = _context42.next) {
+ case 0:
+ return _context42.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params, "/get_managers.json"), {
+ method: 'get'
+ }));
+ case 1:
+ case "end":
+ return _context42.stop();
+ }
+ }, _callee42);
+ }));
+ return _get_managers.apply(this, arguments);
+}
+function add_managers(_x42) {
+ return _add_managers.apply(this, arguments);
+}
+
+// 删除管理员
+function _add_managers() {
+ _add_managers = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee43(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee43$(_context43) {
+ while (1) switch (_context43.prev = _context43.next) {
+ case 0:
+ return _context43.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data === null || data === void 0 ? void 0 : data.id, "/add_managers.json"), {
+ method: 'post',
+ body: data
+ }));
+ case 1:
+ case "end":
+ return _context43.stop();
+ }
+ }, _callee43);
+ }));
+ return _add_managers.apply(this, arguments);
+}
+function delete_managers(_x43) {
+ return _delete_managers.apply(this, arguments);
+}
+
+// 获取图片设置信息
+function _delete_managers() {
+ _delete_managers = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee44(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee44$(_context44) {
+ while (1) switch (_context44.prev = _context44.next) {
+ case 0:
+ return _context44.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data === null || data === void 0 ? void 0 : data.id, "/delete_managers.json"), {
+ method: 'delete',
+ body: data
+ }));
+ case 1:
+ case "end":
+ return _context44.stop();
+ }
+ }, _callee44);
+ }));
+ return _delete_managers.apply(this, arguments);
+}
+function get_picture(_x44) {
+ return _get_picture.apply(this, arguments);
+}
+
+// 网址是否被占用
+function _get_picture() {
+ _get_picture = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee45(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee45$(_context45) {
+ while (1) switch (_context45.prev = _context45.next) {
+ case 0:
+ return _context45.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params, "/get_picture.json"), {
+ method: 'get'
+ }));
+ case 1:
+ case "end":
+ return _context45.stop();
+ }
+ }, _callee45);
+ }));
+ return _get_picture.apply(this, arguments);
+}
+function identifier_exist(_x45) {
+ return _identifier_exist.apply(this, arguments);
+}
+
+// 获取赛题设置
+function _identifier_exist() {
+ _identifier_exist = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee46(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee46$(_context46) {
+ while (1) switch (_context46.prev = _context46.next) {
+ case 0:
+ return _context46.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data === null || data === void 0 ? void 0 : data.id, "/identifier_exist.json"), {
+ method: 'post',
+ body: data
+ }));
+ case 1:
+ case "end":
+ return _context46.stop();
+ }
+ }, _callee46);
+ }));
+ return _identifier_exist.apply(this, arguments);
+}
+function get_shixun_settings(_x46) {
+ return _get_shixun_settings.apply(this, arguments);
+}
+
+// 添加赛题
+function _get_shixun_settings() {
+ _get_shixun_settings = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee47(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee47$(_context47) {
+ while (1) switch (_context47.prev = _context47.next) {
+ case 0:
+ return _context47.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params, "/get_shixun_settings.json"), {
+ method: 'get'
+ }));
+ case 1:
+ case "end":
+ return _context47.stop();
+ }
+ }, _callee47);
+ }));
+ return _get_shixun_settings.apply(this, arguments);
+}
+function shixun_add(_x47) {
+ return _shixun_add.apply(this, arguments);
+}
+
+// 删除赛题
+function _shixun_add() {
+ _shixun_add = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee48(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee48$(_context48) {
+ while (1) switch (_context48.prev = _context48.next) {
+ case 0:
+ return _context48.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data === null || data === void 0 ? void 0 : data.id, "/shixun_add.json"), {
+ method: 'post',
+ body: data
+ }));
+ case 1:
+ case "end":
+ return _context48.stop();
+ }
+ }, _callee48);
+ }));
+ return _shixun_add.apply(this, arguments);
+}
+function shixun_delete(_x48) {
+ return _shixun_delete.apply(this, arguments);
+}
+
+// 更新赛题设置
+function _shixun_delete() {
+ _shixun_delete = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee49(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee49$(_context49) {
+ while (1) switch (_context49.prev = _context49.next) {
+ case 0:
+ return _context49.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data === null || data === void 0 ? void 0 : data.id, "/shixun_delete.json"), {
+ method: 'delete',
+ body: data
+ }));
+ case 1:
+ case "end":
+ return _context49.stop();
+ }
+ }, _callee49);
+ }));
+ return _shixun_delete.apply(this, arguments);
+}
+function shixun_select(_x49) {
+ return _shixun_select.apply(this, arguments);
+}
+
+// 竞赛指引
+function _shixun_select() {
+ _shixun_select = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee50(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee50$(_context50) {
+ while (1) switch (_context50.prev = _context50.next) {
+ case 0:
+ return _context50.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data === null || data === void 0 ? void 0 : data.id, "/shixun_select.json"), {
+ method: 'post',
+ body: data
+ }));
+ case 1:
+ case "end":
+ return _context50.stop();
+ }
+ }, _callee50);
+ }));
+ return _shixun_select.apply(this, arguments);
+}
+function info_finish(_x50) {
+ return _info_finish.apply(this, arguments);
+}
+
+// 提交审核
+function _info_finish() {
+ _info_finish = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee51(params) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee51$(_context51) {
+ while (1) switch (_context51.prev = _context51.next) {
+ case 0:
+ return _context51.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(params, "/info_finish.json"), {
+ method: 'get'
+ }));
+ case 1:
+ case "end":
+ return _context51.stop();
+ }
+ }, _callee51);
+ }));
+ return _info_finish.apply(this, arguments);
+}
+function competition_review(_x51) {
+ return _competition_review.apply(this, arguments);
+}
+//获取团队人数
+function _competition_review() {
+ _competition_review = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee52(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee52$(_context52) {
+ while (1) switch (_context52.prev = _context52.next) {
+ case 0:
+ return _context52.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data === null || data === void 0 ? void 0 : data.id, "/competition_review.json"), {
+ method: 'post',
+ body: _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0___default()({}, data)
+ }));
+ case 1:
+ case "end":
+ return _context52.stop();
+ }
+ }, _callee52);
+ }));
+ return _competition_review.apply(this, arguments);
+}
+function competition_teams(_x52) {
+ return _competition_teams.apply(this, arguments);
+}
+//获取参赛人数
+function _competition_teams() {
+ _competition_teams = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee53(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee53$(_context53) {
+ while (1) switch (_context53.prev = _context53.next) {
+ case 0:
+ return _context53.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data.identifier, "/competition_teams.json"), {
+ method: 'get',
+ params: data
+ }));
+ case 1:
+ case "end":
+ return _context53.stop();
+ }
+ }, _callee53);
+ }));
+ return _competition_teams.apply(this, arguments);
+}
+function all_team_members(_x53) {
+ return _all_team_members.apply(this, arguments);
+}
+function _all_team_members() {
+ _all_team_members = _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2___default()( /*#__PURE__*/_root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().mark(function _callee54(data) {
+ return _root_workspace_ppte5yg23_SJ5m_develop_node_modules_babel_runtime_helpers_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_1___default()().wrap(function _callee54$(_context54) {
+ while (1) switch (_context54.prev = _context54.next) {
+ case 0:
+ return _context54.abrupt("return", (0,_utils_fetch__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .ZP)("/api/competitions/".concat(data.identifier, "/all_team_members.json"), {
+ method: 'get',
+ params: data
+ }));
+ case 1:
+ case "end":
+ return _context54.stop();
+ }
+ }, _callee54);
+ }));
+ return _all_team_members.apply(this, arguments);
+}
+
+/***/ }),
+
+/***/ 65630:
+/*!******************************************************!*\
+ !*** ./src/service/engineering/index.ts + 1 modules ***!
+ \******************************************************/
+/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+
+// EXPORTS
+__webpack_require__.d(__webpack_exports__, {
+ "F": function() { return /* reexport */ exportCourseService; },
+ "OE": function() { return /* reexport */ exportGraduationService; },
+ "ff": function() { return /* reexport */ getCourseResultDetailClass; },
+ "p1": function() { return /* reexport */ getCourseResultDetailService; },
+ "_y": function() { return /* reexport */ getCourseResultsService; },
+ "mK": function() { return /* reexport */ getFormulasService; },
+ "gq": function() { return /* reexport */ getGraduationResultDetailService; },
+ "eM": function() { return /* reexport */ getGraduationResultsService; },
+ "BA": function() { return /* binding */ getMajorListService; },
+ "bA": function() { return /* binding */ getTopPageService; },
+ "Nx": function() { return /* binding */ getYearListService; },
+ "Qx": function() { return /* reexport */ postComputeAllGraduationService; },
+ "At": function() { return /* reexport */ postComputeAllService; },
+ "PX": function() { return /* reexport */ postComputeCourseSingleService; },
+ "Xl": function() { return /* reexport */ postComputeGraduationSingleService; },
+ "y9": function() { return /* reexport */ putFormulasService; },
+ "No": function() { return /* reexport */ putGoalValueService; },
+ "ay": function() { return /* binding */ putTopPageService; }
+});
+
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js
+var regeneratorRuntime = __webpack_require__(17061);
+var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/asyncToGenerator.js
+var asyncToGenerator = __webpack_require__(17156);
+var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
+// EXTERNAL MODULE: ./src/utils/fetch.ts
+var fetch = __webpack_require__(84519);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectSpread2.js
+var objectSpread2 = __webpack_require__(42122);
+var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
+// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/objectWithoutProperties.js
+var objectWithoutProperties = __webpack_require__(70215);
+var objectWithoutProperties_default = /*#__PURE__*/__webpack_require__.n(objectWithoutProperties);
+;// CONCATENATED MODULE: ./src/service/engineering/evaluate.ts
+
+
+
+
+var _excluded = ["id"],
+ _excluded2 = ["ec_year_id", "type", "goal_value"];
+
+/**
+ * 课程评价
+ * 获取列表数据
+ * @param id 届别id
+ */
+var getCourseResultsService = /*#__PURE__*/function () {
+ var _ref2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee(_ref) {
+ var id, params;
+ return regeneratorRuntime_default()().wrap(function _callee$(_context) {
+ while (1) switch (_context.prev = _context.next) {
+ case 0:
+ id = _ref.id, params = objectWithoutProperties_default()(_ref, _excluded);
+ return _context.abrupt("return", (0,fetch/* default */.ZP)("/api/ec_years/".concat(id, "/course_results.json"), {
+ method: 'get',
+ params: params
+ }));
+ case 2:
+ case "end":
+ return _context.stop();
+ }
+ }, _callee);
+ }));
+ return function getCourseResultsService(_x) {
+ return _ref2.apply(this, arguments);
+ };
+}();
/**
* 课程评价
@@ -70803,7 +71399,7 @@ __webpack_require__.d(__webpack_exports__, {
;// CONCATENATED MODULE: ./src/utils/env/dev.ts
var DEV = {
- PROXY_SERVER: 'https://test-data.educoder.net',
+ PROXY_SERVER: 'https://pre-data.educoder.net',
API_SERVER: '',
REPORT_SERVER: 'http://192.168.1.57:3001',
IMG_SERVER: 'https://new-testali-cdn.educoder.net',
@@ -70855,7 +71451,14 @@ var GlobalConfig = {
}(),
SSH_SERVER: "wss://pre-webssh.educoder.net",
SSH_Slice: 'https://testfu.educoder.net',
- IMG_SERVER: 'https://new-testali-cdn.educoder.net',
+ IMG_SERVER: function () {
+ var imgServer = 'https://new-testali-cdn.educoder.net';
+ var host = location.host;
+ if (host === "test3.educoder.net") {
+ imgServer = 'https://test3-data.educoder.net';
+ }
+ return imgServer;
+ }(),
OFFICE_SERVER: "https://testoffice.educoder.net",
ONLYOFFICE: "https://testoffice.educoder.net",
OFFICE_IP: 'http://113.246.243.98:9569',
@@ -119944,7 +120547,7 @@ function _unsupportedIterableToArray(o, minLen) {
/******/ // This function allow to reference async chunks
/******/ __webpack_require__.u = function(chunkId) {
/******/ // return url for filenames based on template
-/******/ return "" + ({"292":"p__Classrooms__Lists__Exercise__Add__index","310":"p__User__Detail__ExperImentImg__Detail__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1660":"p__User__QQLogin__index","1702":"p__Classrooms__New__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","3317":"p__Classrooms__Lists__Graduation__Topics__Add__index","3391":"p__Classrooms__Lists__ProgramHomework__Detail__components__CodeReview__Detail__index","3451":"p__Classrooms__Lists__Statistics__StudentStatistics__Detail__index","3509":"p__HttpStatus__SixActivities","3585":"p__Classrooms__Lists__Statistics__StudentSituation__index","3951":"p__Classrooms__Lists__ProgramHomework__Detail__index","4639":"p__virtualSpaces__Lists__Video__index","4736":"p__User__Detail__Projects__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5348":"p__virtualSpaces__Lists__Video__Upload__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6685":"p__Shixuns__Detail__RankingList__index","6758":"p__Classrooms__Lists__Attachment__index","6788":"p__Classrooms__Lists__ProgramHomework__index","7043":"p__User__Detail__Topics__Exercise__Edit__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","7918":"p__Paperlibrary__Random__ExerciseEdit__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","10195":"p__Classrooms__Lists__GroupHomework__Detail__index","10485":"p__Question__AddOrEdit__BatchAdd__index","10737":"p__Classrooms__Lists__CommonHomework__Detail__components__CodeReview__Detail__index","10799":"p__User__Detail__Topics__Poll__Detail__index","10921":"p__Classrooms__Lists__Exercise__CodeDetails__index","11070":"p__Innovation__PublicMirror__index","11512":"p__Classrooms__Lists__Exercise__AnswerCheck__index","11520":"p__Engineering__Lists__StudentList__index","11545":"p__Paperlibrary__Random__ExchangeFromProblemSet__index","11581":"p__Problemset__Preview__index","12102":"p__Classrooms__Lists__Board__Edit__index","12412":"p__User__Detail__Videos__index","12476":"p__Colleges__index","12865":"p__Innovation__MyMirror__index","12884":"p__Classrooms__Lists__ProgramHomework__Comment__index","13006":"p__Engineering__index","13355":"p__Classrooms__Lists__Polls__index","13414":"p__virtualSpaces__Lists__Managements__index","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16729":"p__Classrooms__Lists__GroupHomework__Edit__index","16845":"p__Shixuns__Detail__Settings__index","17482":"p__Classrooms__Lists__Exercise__Notice__index","17527":"p__MyProblem__RecordDetail__index","17622":"p__Classrooms__Lists__Polls__Detail__index","17806":"p__Classrooms__Lists__Statistics__StatisticsQuality__index","18241":"p__virtualSpaces__Lists__Plan__index","18302":"p__Classrooms__Lists__Board__index","18307":"p__User__Detail__Shixuns__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19715":"p__Classrooms__Lists__CommonHomework__Edit__index","19891":"p__User__Detail__Videos__Success__index","20026":"p__Classrooms__Lists__Graduation__Tasks__Edit__index","20576":"p__Account__Profile__Edit__index","20680":"p__Innovation__index","20700":"p__tasks__Jupyter__index","21265":"p__Classrooms__Lists__Announcement__index","21423":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22257":"p__Paperlibrary__Random__AddAndEdit__index","22307":"p__Report__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25896":"p__virtualSpaces__Lists__Syllabuses__Detail__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27182":"p__User__ResetPassword__index","27333":"p__User__WechatLogin__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28435":"p__Classrooms__Lists__Attendance__index","28639":"p__Forums__Index__redirect","28723":"p__Classrooms__Lists__Polls__Edit__index","28782":"p__Shixuns__Index__index","28982":"p__Paths__New__index","29080":"p__virtualSpaces__Lists__Graphs__index","29647":"p__Question__Index__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31427":"p__Classrooms__Lists__Statistics__index","31674":"p__Classrooms__ClassicCases__index","31962":"p__Classrooms__Lists__Engineering__index","33356":"p__Classrooms__Lists__Assistant__index","33747":"p__virtualSpaces__Lists__Homepage__index","33784":"p__Paperlibrary__Random__Detail__index","34093":"p__Classrooms__Lists__Attendance__Detail__index","34601":"p__Paths__Detail__Statistics__index","34608":"p__virtualSpaces__Index__index","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35588":"p__virtualSpaces__Lists__Course__index","35729":"p__Help__Index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","38447":"p__virtualSpaces__Lists__Knowledge__index","38634":"p__Classrooms__Lists__CourseGroup__List__index","39332":"p__Classrooms__Lists__Video__index","39391":"p__Engineering__Lists__CurseSetting__index","39404":"monaco-editor","39695":"p__Classrooms__Lists__Polls__Add__index","40559":"layouts__virtualDetail__index","41048":"p__Classrooms__Lists__ProgramHomework__Detail__Ranking__index","41657":"p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index","41717":"layouts__index","41953":"p__Problemset__NewItem__index","42240":"p__User__Detail__Videos__Upload__index","43442":"p__Classrooms__Lists__Board__Add__index","43465":"p__virtualSpaces__Lists__Member__index","43862":"p__HttpStatus__403","44216":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Edit__index","44259":"p__User__Detail__Order__pages__result__index","44449":"p__Competitions__Exports__index","44510":"p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index","44565":"p__HttpStatus__500","45096":"p__Shixuns__Detail__AuditSituation__index","45359":"p__Messages__Detail__index","45650":"p__Competitions__Update__index","45775":"p__Engineering__Lists__Document__index","45825":"p__Classrooms__Lists__Exercise__index","45992":"p__Classrooms__Lists__Exercise__ReviewGroup__index","46796":"p__virtualSpaces__Lists__Announcement__Detail__index","46963":"p__Classrooms__Lists__Engineering__Detail__index","48077":"p__Classrooms__Lists__Students__index","48431":"p__Classrooms__Lists__Exercise__Export__index","48689":"p__Classrooms__Lists__Statistics__VideoStatistics__index","49205":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index","49366":"p__User__Login__index","49716":"p__Question__OjProblem__RecordDetail__index","49890":"p__Classrooms__Lists__CommonHomework__index","50869":"p__Guidance__index","51276":"p__MoopCases__Success__index","51582":"p__Classrooms__Lists__GroupHomework__Add__index","51855":"p__MoopCases__InfoPanel__index","52338":"p__Classrooms__Lists__CommonHomework__Review__index","52404":"p__Classrooms__Lists__Template__teacher__index","52806":"p__User__Detail__Topics__Exercise__Detail__index","52829":"p__Messages__Private__index","52875":"p__Shixuns__Detail__id","53247":"p__Paperlibrary__See__index","53910":"p__HttpStatus__introduction","54056":"p__IntrainCourse__index","54164":"p__Classrooms__Lists__Exercise__Detail__index","54472":"p__virtualSpaces__Lists__Notices__index","54572":"p__Classrooms__Lists__ExportList__index","54770":"p__Classrooms__Lists__ProgramHomework__Detail__answer__index","54862":"p__Paperlibrary__index","55573":"p__Shixuns__Detail__Merge__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","59133":"p__Shixuns__Detail__Challenges__index","59649":"p__Engineering__Lists__TrainingProgram__index","59788":"p__Account__Profile__index","60479":"p__Classrooms__Lists__GroupHomework__EditWork__index","60533":"p__Classrooms__Lists__Video__Statistics__Detail__index","60547":"p__Account__index","61043":"p__Classrooms__Lists__Graduation__Tasks__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","62300":"p__Api__index","62548":"p__Engineering__Norm__Detail__index","64017":"p__Classrooms__Lists__PlaceholderPage__index","64144":"p__Problemset__Preview__New__index","64217":"p__Classrooms__Lists__Video__Statistics__index","64496":"p__HttpStatus__HpcCourse","64520":"p__Account__Secure__index","65111":"p__Terminal__index","65148":"p__Classrooms__Lists__Polls__Answer__index","65191":"p__User__Detail__Certificate__index","65294":"p__User__OtherLogin__index","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66034":"p__HttpStatus__UserAgents","66531":"p__HttpStatus__404","66583":"p__User__Detail__Classrooms__index","66651":"p__Engineering__Evaluate__Detail__index","67242":"p__Innovation__MyProject__index","67878":"p__Classrooms__Lists__LiveVideo__index","68014":"p__Classrooms__Lists__Teachers__index","68665":"p__Engineering__Lists__TrainingObjectives__index","68827":"p__Classrooms__Lists__OnlineLearning__index","68882":"p__Classrooms__Lists__Graduation__Tasks__Detail__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","70928":"p__RestFul__Edit__index","71218":"p__virtualSpaces__Lists__Syllabuses__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71783":"p__virtualSpaces__Lists__Experiment__index","72529":"p__User__Detail__id","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74795":"p__Classrooms__Lists__Graduation__Tasks__Add__index","75043":"p__User__Detail__Topics__Poll__Edit__index","75357":"p__Engineering__Lists__TrainingProgram__Edit__index","75786":"layouts__LoginAndRegister__index","76904":"p__MoopCases__FormPanel__index","77460":"p__Question__OjProblem__index","77857":"p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index","78085":"p__Classrooms__Lists__Exercise__Review__index","79489":"p__Engineering__Lists__CourseList__index","79590":"p__User__Detail__TeachGroup__index","79921":"p__Classrooms__ExamList__index","80508":"p__Forums__Detail__id","81148":"p__Shixuns__Detail__Repository__UploadFile__index","81799":"p__Competitions__Entered__Assembly__TeamDateil","82339":"p__virtualSpaces__Lists__Plan__Detail__index","82425":"p__Classrooms__Lists__Board__Detail__index","83141":"p__Innovation__Detail__index","83212":"p__MoopCases__index","83935":"p__Classrooms__Lists__GroupHomework__index","84546":"p__Engineering__Lists__TrainingProgram__Add__index","85048":"p__Classrooms__Lists__Graduation__Topics__index","85111":"p__User__Detail__Order__pages__orderInformation__index","85297":"p__Classrooms__Lists__Exercise__Detail__components__DuplicateChecking__CheckDetail__index","85888":"p__Classrooms__Lists__CommonHomework__Add__index","85891":"p__virtualSpaces__Lists__Resources__index","86052":"p__Paths__Index__index","86452":"p__Innovation__PublicDataSet__index","86541":"p__Shixuns__Detail__Dataset__index","86634":"p__Innovation__Tasks__index","86820":"p__User__Detail__Topics__Normal__index","86913":"p__Question__AddOrEdit__index","87058":"p__virtualSpaces__Lists__Survey__Detail__index","87260":"p__Account__Certification__index","87922":"p__Classrooms__Lists__CourseGroup__Detail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89076":"p__Account__Binding__index","89677":"p__virtualSpaces__Lists__Announcement__AddAndEdit__index","89785":"p__Classrooms__Lists__Template__student__index","90109":"p__Classrooms__Lists__ShixunHomeworks__Detail__components__CodeReview__Detail__index","90265":"p__User__Detail__Topics__index","90337":"p__Paperlibrary__Random__PreviewEdit__index","91045":"p__virtualSpaces__Lists__Knowledge__AddAndEdit__index","91470":"p__User__Register__index","91487":"p__virtualSpaces__Lists__Shixuns__index","92045":"p__Engineering__Lists__TeacherList__index","92501":"p__Search__index","92603":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Add__index","92823":"p__Engineering__Navigation__Home__index","92983":"p__Forums__Index__index","93260":"p__Paperlibrary__Add__index","93282":"layouts__ShixunDetail__index","93496":"p__User__Detail__OtherResources__index","93665":"p__tasks__index","93668":"p__Classrooms__Lists__CommonHomework__Detail__index","94078":"p__Messages__Tidings__index","94498":"p__Shixuns__Edit__body__Level__Challenges__NewPractice__index","94662":"p__User__Detail__Paths__index","94715":"p__virtualSpaces__Lists__Material__Detail__index","94849":"p__User__Detail__ExperImentImg__index","95125":"p__Classrooms__Lists__Exercise__DetailedAnalysis__index","95176":"p__User__Detail__Videos__Protocol__index","95335":"p__Engineering__Lists__CourseMatrix__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","99674":"p__Shixuns__New__ImagePreview__index"}[chunkId] || chunkId) + ".async.js";
+/******/ return "" + ({"292":"p__Classrooms__Lists__Exercise__Add__index","310":"p__User__Detail__ExperImentImg__Detail__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1660":"p__User__QQLogin__index","1702":"p__Classrooms__New__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","3317":"p__Classrooms__Lists__Graduation__Topics__Add__index","3391":"p__Classrooms__Lists__ProgramHomework__Detail__components__CodeReview__Detail__index","3451":"p__Classrooms__Lists__Statistics__StudentStatistics__Detail__index","3509":"p__HttpStatus__SixActivities","3585":"p__Classrooms__Lists__Statistics__StudentSituation__index","3951":"p__Classrooms__Lists__ProgramHomework__Detail__index","4639":"p__virtualSpaces__Lists__Video__index","4736":"p__User__Detail__Projects__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5348":"p__virtualSpaces__Lists__Video__Upload__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6685":"p__Shixuns__Detail__RankingList__index","6758":"p__Classrooms__Lists__Attachment__index","6788":"p__Classrooms__Lists__ProgramHomework__index","7043":"p__User__Detail__Topics__Exercise__Edit__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","7918":"p__Paperlibrary__Random__ExerciseEdit__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","10195":"p__Classrooms__Lists__GroupHomework__Detail__index","10485":"p__Question__AddOrEdit__BatchAdd__index","10737":"p__Classrooms__Lists__CommonHomework__Detail__components__CodeReview__Detail__index","10799":"p__User__Detail__Topics__Poll__Detail__index","10921":"p__Classrooms__Lists__Exercise__CodeDetails__index","11070":"p__Innovation__PublicMirror__index","11512":"p__Classrooms__Lists__Exercise__AnswerCheck__index","11520":"p__Engineering__Lists__StudentList__index","11545":"p__Paperlibrary__Random__ExchangeFromProblemSet__index","11581":"p__Problemset__Preview__index","12076":"p__User__Detail__Competitions__index","12102":"p__Classrooms__Lists__Board__Edit__index","12412":"p__User__Detail__Videos__index","12476":"p__Colleges__index","12865":"p__Innovation__MyMirror__index","12884":"p__Classrooms__Lists__ProgramHomework__Comment__index","13006":"p__Engineering__index","13355":"p__Classrooms__Lists__Polls__index","13414":"p__virtualSpaces__Lists__Managements__index","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16729":"p__Classrooms__Lists__GroupHomework__Edit__index","16845":"p__Shixuns__Detail__Settings__index","17482":"p__Classrooms__Lists__Exercise__Notice__index","17527":"p__MyProblem__RecordDetail__index","17622":"p__Classrooms__Lists__Polls__Detail__index","17806":"p__Classrooms__Lists__Statistics__StatisticsQuality__index","18241":"p__virtualSpaces__Lists__Plan__index","18302":"p__Classrooms__Lists__Board__index","18307":"p__User__Detail__Shixuns__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19715":"p__Classrooms__Lists__CommonHomework__Edit__index","19891":"p__User__Detail__Videos__Success__index","20026":"p__Classrooms__Lists__Graduation__Tasks__Edit__index","20576":"p__Account__Profile__Edit__index","20680":"p__Innovation__index","20700":"p__tasks__Jupyter__index","21265":"p__Classrooms__Lists__Announcement__index","21423":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22257":"p__Paperlibrary__Random__AddAndEdit__index","22307":"p__Report__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25896":"p__virtualSpaces__Lists__Syllabuses__Detail__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27182":"p__User__ResetPassword__index","27333":"p__User__WechatLogin__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28435":"p__Classrooms__Lists__Attendance__index","28639":"p__Forums__Index__redirect","28723":"p__Classrooms__Lists__Polls__Edit__index","28782":"p__Shixuns__Index__index","28982":"p__Paths__New__index","29080":"p__virtualSpaces__Lists__Graphs__index","29647":"p__Question__Index__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31427":"p__Classrooms__Lists__Statistics__index","31674":"p__Classrooms__ClassicCases__index","31962":"p__Classrooms__Lists__Engineering__index","33356":"p__Classrooms__Lists__Assistant__index","33747":"p__virtualSpaces__Lists__Homepage__index","33784":"p__Paperlibrary__Random__Detail__index","34093":"p__Classrooms__Lists__Attendance__Detail__index","34601":"p__Paths__Detail__Statistics__index","34608":"p__virtualSpaces__Index__index","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35588":"p__virtualSpaces__Lists__Course__index","35729":"p__Help__Index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","38447":"p__virtualSpaces__Lists__Knowledge__index","38634":"p__Classrooms__Lists__CourseGroup__List__index","38797":"p__Competitions__Edit__index","39332":"p__Classrooms__Lists__Video__index","39391":"p__Engineering__Lists__CurseSetting__index","39404":"monaco-editor","39695":"p__Classrooms__Lists__Polls__Add__index","40559":"layouts__virtualDetail__index","41048":"p__Classrooms__Lists__ProgramHomework__Detail__Ranking__index","41657":"p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index","41717":"layouts__index","41953":"p__Problemset__NewItem__index","42240":"p__User__Detail__Videos__Upload__index","43442":"p__Classrooms__Lists__Board__Add__index","43465":"p__virtualSpaces__Lists__Member__index","43862":"p__HttpStatus__403","44216":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Edit__index","44259":"p__User__Detail__Order__pages__result__index","44449":"p__Competitions__Exports__index","44510":"p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index","44565":"p__HttpStatus__500","45096":"p__Shixuns__Detail__AuditSituation__index","45359":"p__Messages__Detail__index","45650":"p__Competitions__Update__index","45775":"p__Engineering__Lists__Document__index","45825":"p__Classrooms__Lists__Exercise__index","45992":"p__Classrooms__Lists__Exercise__ReviewGroup__index","46796":"p__virtualSpaces__Lists__Announcement__Detail__index","46963":"p__Classrooms__Lists__Engineering__Detail__index","48077":"p__Classrooms__Lists__Students__index","48431":"p__Classrooms__Lists__Exercise__Export__index","48689":"p__Classrooms__Lists__Statistics__VideoStatistics__index","49205":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index","49366":"p__User__Login__index","49716":"p__Question__OjProblem__RecordDetail__index","49890":"p__Classrooms__Lists__CommonHomework__index","50869":"p__Guidance__index","51276":"p__MoopCases__Success__index","51582":"p__Classrooms__Lists__GroupHomework__Add__index","51855":"p__MoopCases__InfoPanel__index","52338":"p__Classrooms__Lists__CommonHomework__Review__index","52404":"p__Classrooms__Lists__Template__teacher__index","52806":"p__User__Detail__Topics__Exercise__Detail__index","52829":"p__Messages__Private__index","52875":"p__Shixuns__Detail__id","53247":"p__Paperlibrary__See__index","53910":"p__HttpStatus__introduction","54056":"p__IntrainCourse__index","54164":"p__Classrooms__Lists__Exercise__Detail__index","54472":"p__virtualSpaces__Lists__Notices__index","54572":"p__Classrooms__Lists__ExportList__index","54770":"p__Classrooms__Lists__ProgramHomework__Detail__answer__index","54862":"p__Paperlibrary__index","55573":"p__Shixuns__Detail__Merge__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","59133":"p__Shixuns__Detail__Challenges__index","59649":"p__Engineering__Lists__TrainingProgram__index","59788":"p__Account__Profile__index","60479":"p__Classrooms__Lists__GroupHomework__EditWork__index","60533":"p__Classrooms__Lists__Video__Statistics__Detail__index","60547":"p__Account__index","61043":"p__Classrooms__Lists__Graduation__Tasks__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","62300":"p__Api__index","62548":"p__Engineering__Norm__Detail__index","64017":"p__Classrooms__Lists__PlaceholderPage__index","64144":"p__Problemset__Preview__New__index","64217":"p__Classrooms__Lists__Video__Statistics__index","64496":"p__HttpStatus__HpcCourse","64520":"p__Account__Secure__index","65111":"p__Terminal__index","65148":"p__Classrooms__Lists__Polls__Answer__index","65191":"p__User__Detail__Certificate__index","65294":"p__User__OtherLogin__index","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66034":"p__HttpStatus__UserAgents","66531":"p__HttpStatus__404","66583":"p__User__Detail__Classrooms__index","66651":"p__Engineering__Evaluate__Detail__index","67242":"p__Innovation__MyProject__index","67878":"p__Classrooms__Lists__LiveVideo__index","68014":"p__Classrooms__Lists__Teachers__index","68665":"p__Engineering__Lists__TrainingObjectives__index","68827":"p__Classrooms__Lists__OnlineLearning__index","68882":"p__Classrooms__Lists__Graduation__Tasks__Detail__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","70928":"p__RestFul__Edit__index","71218":"p__virtualSpaces__Lists__Syllabuses__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71783":"p__virtualSpaces__Lists__Experiment__index","72529":"p__User__Detail__id","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74795":"p__Classrooms__Lists__Graduation__Tasks__Add__index","75043":"p__User__Detail__Topics__Poll__Edit__index","75357":"p__Engineering__Lists__TrainingProgram__Edit__index","75786":"layouts__LoginAndRegister__index","76904":"p__MoopCases__FormPanel__index","77460":"p__Question__OjProblem__index","77857":"p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index","78085":"p__Classrooms__Lists__Exercise__Review__index","79489":"p__Engineering__Lists__CourseList__index","79590":"p__User__Detail__TeachGroup__index","79921":"p__Classrooms__ExamList__index","80508":"p__Forums__Detail__id","81148":"p__Shixuns__Detail__Repository__UploadFile__index","81799":"p__Competitions__Entered__Assembly__TeamDateil","82339":"p__virtualSpaces__Lists__Plan__Detail__index","82425":"p__Classrooms__Lists__Board__Detail__index","83141":"p__Innovation__Detail__index","83212":"p__MoopCases__index","83935":"p__Classrooms__Lists__GroupHomework__index","84546":"p__Engineering__Lists__TrainingProgram__Add__index","85048":"p__Classrooms__Lists__Graduation__Topics__index","85111":"p__User__Detail__Order__pages__orderInformation__index","85297":"p__Classrooms__Lists__Exercise__Detail__components__DuplicateChecking__CheckDetail__index","85888":"p__Classrooms__Lists__CommonHomework__Add__index","85891":"p__virtualSpaces__Lists__Resources__index","86052":"p__Paths__Index__index","86452":"p__Innovation__PublicDataSet__index","86541":"p__Shixuns__Detail__Dataset__index","86634":"p__Innovation__Tasks__index","86820":"p__User__Detail__Topics__Normal__index","86913":"p__Question__AddOrEdit__index","87058":"p__virtualSpaces__Lists__Survey__Detail__index","87260":"p__Account__Certification__index","87922":"p__Classrooms__Lists__CourseGroup__Detail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89076":"p__Account__Binding__index","89677":"p__virtualSpaces__Lists__Announcement__AddAndEdit__index","89785":"p__Classrooms__Lists__Template__student__index","90109":"p__Classrooms__Lists__ShixunHomeworks__Detail__components__CodeReview__Detail__index","90265":"p__User__Detail__Topics__index","90337":"p__Paperlibrary__Random__PreviewEdit__index","91045":"p__virtualSpaces__Lists__Knowledge__AddAndEdit__index","91470":"p__User__Register__index","91487":"p__virtualSpaces__Lists__Shixuns__index","92045":"p__Engineering__Lists__TeacherList__index","92501":"p__Search__index","92603":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Add__index","92823":"p__Engineering__Navigation__Home__index","92983":"p__Forums__Index__index","93260":"p__Paperlibrary__Add__index","93282":"layouts__ShixunDetail__index","93496":"p__User__Detail__OtherResources__index","93665":"p__tasks__index","93668":"p__Classrooms__Lists__CommonHomework__Detail__index","94078":"p__Messages__Tidings__index","94498":"p__Shixuns__Edit__body__Level__Challenges__NewPractice__index","94662":"p__User__Detail__Paths__index","94715":"p__virtualSpaces__Lists__Material__Detail__index","94849":"p__User__Detail__ExperImentImg__index","95125":"p__Classrooms__Lists__Exercise__DetailedAnalysis__index","95176":"p__User__Detail__Videos__Protocol__index","95335":"p__Engineering__Lists__CourseMatrix__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","99674":"p__Shixuns__New__ImagePreview__index"}[chunkId] || chunkId) + ".async.js";
/******/ };
/******/ }();
/******/
@@ -119953,7 +120556,7 @@ function _unsupportedIterableToArray(o, minLen) {
/******/ // This function allow to reference async chunks
/******/ __webpack_require__.miniCssF = function(chunkId) {
/******/ // return url for filenames based on template
-/******/ return "" + ({"292":"p__Classrooms__Lists__Exercise__Add__index","310":"p__User__Detail__ExperImentImg__Detail__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1660":"p__User__QQLogin__index","1702":"p__Classrooms__New__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","3317":"p__Classrooms__Lists__Graduation__Topics__Add__index","3391":"p__Classrooms__Lists__ProgramHomework__Detail__components__CodeReview__Detail__index","3451":"p__Classrooms__Lists__Statistics__StudentStatistics__Detail__index","3509":"p__HttpStatus__SixActivities","3585":"p__Classrooms__Lists__Statistics__StudentSituation__index","3951":"p__Classrooms__Lists__ProgramHomework__Detail__index","4639":"p__virtualSpaces__Lists__Video__index","4736":"p__User__Detail__Projects__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5348":"p__virtualSpaces__Lists__Video__Upload__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6685":"p__Shixuns__Detail__RankingList__index","6758":"p__Classrooms__Lists__Attachment__index","6788":"p__Classrooms__Lists__ProgramHomework__index","7043":"p__User__Detail__Topics__Exercise__Edit__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","7918":"p__Paperlibrary__Random__ExerciseEdit__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","10195":"p__Classrooms__Lists__GroupHomework__Detail__index","10485":"p__Question__AddOrEdit__BatchAdd__index","10737":"p__Classrooms__Lists__CommonHomework__Detail__components__CodeReview__Detail__index","10799":"p__User__Detail__Topics__Poll__Detail__index","10921":"p__Classrooms__Lists__Exercise__CodeDetails__index","11070":"p__Innovation__PublicMirror__index","11512":"p__Classrooms__Lists__Exercise__AnswerCheck__index","11520":"p__Engineering__Lists__StudentList__index","11545":"p__Paperlibrary__Random__ExchangeFromProblemSet__index","11581":"p__Problemset__Preview__index","12102":"p__Classrooms__Lists__Board__Edit__index","12412":"p__User__Detail__Videos__index","12476":"p__Colleges__index","12865":"p__Innovation__MyMirror__index","12884":"p__Classrooms__Lists__ProgramHomework__Comment__index","13006":"p__Engineering__index","13355":"p__Classrooms__Lists__Polls__index","13414":"p__virtualSpaces__Lists__Managements__index","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16729":"p__Classrooms__Lists__GroupHomework__Edit__index","16845":"p__Shixuns__Detail__Settings__index","17482":"p__Classrooms__Lists__Exercise__Notice__index","17527":"p__MyProblem__RecordDetail__index","17622":"p__Classrooms__Lists__Polls__Detail__index","17806":"p__Classrooms__Lists__Statistics__StatisticsQuality__index","18241":"p__virtualSpaces__Lists__Plan__index","18302":"p__Classrooms__Lists__Board__index","18307":"p__User__Detail__Shixuns__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19715":"p__Classrooms__Lists__CommonHomework__Edit__index","19891":"p__User__Detail__Videos__Success__index","20026":"p__Classrooms__Lists__Graduation__Tasks__Edit__index","20576":"p__Account__Profile__Edit__index","20680":"p__Innovation__index","20700":"p__tasks__Jupyter__index","21265":"p__Classrooms__Lists__Announcement__index","21423":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22257":"p__Paperlibrary__Random__AddAndEdit__index","22307":"p__Report__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25896":"p__virtualSpaces__Lists__Syllabuses__Detail__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27182":"p__User__ResetPassword__index","27333":"p__User__WechatLogin__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28435":"p__Classrooms__Lists__Attendance__index","28723":"p__Classrooms__Lists__Polls__Edit__index","28782":"p__Shixuns__Index__index","28982":"p__Paths__New__index","29080":"p__virtualSpaces__Lists__Graphs__index","29647":"p__Question__Index__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31427":"p__Classrooms__Lists__Statistics__index","31674":"p__Classrooms__ClassicCases__index","31962":"p__Classrooms__Lists__Engineering__index","33356":"p__Classrooms__Lists__Assistant__index","33747":"p__virtualSpaces__Lists__Homepage__index","33784":"p__Paperlibrary__Random__Detail__index","34093":"p__Classrooms__Lists__Attendance__Detail__index","34601":"p__Paths__Detail__Statistics__index","34608":"p__virtualSpaces__Index__index","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35588":"p__virtualSpaces__Lists__Course__index","35729":"p__Help__Index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","38447":"p__virtualSpaces__Lists__Knowledge__index","38634":"p__Classrooms__Lists__CourseGroup__List__index","39332":"p__Classrooms__Lists__Video__index","39391":"p__Engineering__Lists__CurseSetting__index","39404":"monaco-editor","39695":"p__Classrooms__Lists__Polls__Add__index","40559":"layouts__virtualDetail__index","41048":"p__Classrooms__Lists__ProgramHomework__Detail__Ranking__index","41657":"p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index","41717":"layouts__index","41953":"p__Problemset__NewItem__index","42240":"p__User__Detail__Videos__Upload__index","43442":"p__Classrooms__Lists__Board__Add__index","43465":"p__virtualSpaces__Lists__Member__index","44216":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Edit__index","44259":"p__User__Detail__Order__pages__result__index","44449":"p__Competitions__Exports__index","44510":"p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index","45096":"p__Shixuns__Detail__AuditSituation__index","45359":"p__Messages__Detail__index","45650":"p__Competitions__Update__index","45775":"p__Engineering__Lists__Document__index","45825":"p__Classrooms__Lists__Exercise__index","45992":"p__Classrooms__Lists__Exercise__ReviewGroup__index","46796":"p__virtualSpaces__Lists__Announcement__Detail__index","46963":"p__Classrooms__Lists__Engineering__Detail__index","48077":"p__Classrooms__Lists__Students__index","48431":"p__Classrooms__Lists__Exercise__Export__index","48689":"p__Classrooms__Lists__Statistics__VideoStatistics__index","49205":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index","49366":"p__User__Login__index","49716":"p__Question__OjProblem__RecordDetail__index","49890":"p__Classrooms__Lists__CommonHomework__index","50869":"p__Guidance__index","51276":"p__MoopCases__Success__index","51582":"p__Classrooms__Lists__GroupHomework__Add__index","51855":"p__MoopCases__InfoPanel__index","52338":"p__Classrooms__Lists__CommonHomework__Review__index","52404":"p__Classrooms__Lists__Template__teacher__index","52806":"p__User__Detail__Topics__Exercise__Detail__index","52829":"p__Messages__Private__index","52875":"p__Shixuns__Detail__id","53247":"p__Paperlibrary__See__index","53910":"p__HttpStatus__introduction","54056":"p__IntrainCourse__index","54164":"p__Classrooms__Lists__Exercise__Detail__index","54472":"p__virtualSpaces__Lists__Notices__index","54572":"p__Classrooms__Lists__ExportList__index","54770":"p__Classrooms__Lists__ProgramHomework__Detail__answer__index","54862":"p__Paperlibrary__index","55573":"p__Shixuns__Detail__Merge__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","59133":"p__Shixuns__Detail__Challenges__index","59649":"p__Engineering__Lists__TrainingProgram__index","59788":"p__Account__Profile__index","60479":"p__Classrooms__Lists__GroupHomework__EditWork__index","60533":"p__Classrooms__Lists__Video__Statistics__Detail__index","60547":"p__Account__index","61043":"p__Classrooms__Lists__Graduation__Tasks__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","62548":"p__Engineering__Norm__Detail__index","64144":"p__Problemset__Preview__New__index","64217":"p__Classrooms__Lists__Video__Statistics__index","64496":"p__HttpStatus__HpcCourse","64520":"p__Account__Secure__index","65111":"p__Terminal__index","65148":"p__Classrooms__Lists__Polls__Answer__index","65191":"p__User__Detail__Certificate__index","65294":"p__User__OtherLogin__index","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66034":"p__HttpStatus__UserAgents","66583":"p__User__Detail__Classrooms__index","66651":"p__Engineering__Evaluate__Detail__index","67242":"p__Innovation__MyProject__index","67878":"p__Classrooms__Lists__LiveVideo__index","68014":"p__Classrooms__Lists__Teachers__index","68665":"p__Engineering__Lists__TrainingObjectives__index","68827":"p__Classrooms__Lists__OnlineLearning__index","68882":"p__Classrooms__Lists__Graduation__Tasks__Detail__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","71218":"p__virtualSpaces__Lists__Syllabuses__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71783":"p__virtualSpaces__Lists__Experiment__index","72529":"p__User__Detail__id","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74795":"p__Classrooms__Lists__Graduation__Tasks__Add__index","75043":"p__User__Detail__Topics__Poll__Edit__index","75357":"p__Engineering__Lists__TrainingProgram__Edit__index","75786":"layouts__LoginAndRegister__index","76904":"p__MoopCases__FormPanel__index","77460":"p__Question__OjProblem__index","77857":"p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index","78085":"p__Classrooms__Lists__Exercise__Review__index","79489":"p__Engineering__Lists__CourseList__index","79590":"p__User__Detail__TeachGroup__index","79921":"p__Classrooms__ExamList__index","80508":"p__Forums__Detail__id","81148":"p__Shixuns__Detail__Repository__UploadFile__index","82339":"p__virtualSpaces__Lists__Plan__Detail__index","82425":"p__Classrooms__Lists__Board__Detail__index","83141":"p__Innovation__Detail__index","83212":"p__MoopCases__index","83935":"p__Classrooms__Lists__GroupHomework__index","84546":"p__Engineering__Lists__TrainingProgram__Add__index","85048":"p__Classrooms__Lists__Graduation__Topics__index","85111":"p__User__Detail__Order__pages__orderInformation__index","85297":"p__Classrooms__Lists__Exercise__Detail__components__DuplicateChecking__CheckDetail__index","85888":"p__Classrooms__Lists__CommonHomework__Add__index","85891":"p__virtualSpaces__Lists__Resources__index","86052":"p__Paths__Index__index","86452":"p__Innovation__PublicDataSet__index","86541":"p__Shixuns__Detail__Dataset__index","86634":"p__Innovation__Tasks__index","86820":"p__User__Detail__Topics__Normal__index","86913":"p__Question__AddOrEdit__index","87058":"p__virtualSpaces__Lists__Survey__Detail__index","87260":"p__Account__Certification__index","87922":"p__Classrooms__Lists__CourseGroup__Detail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89076":"p__Account__Binding__index","89677":"p__virtualSpaces__Lists__Announcement__AddAndEdit__index","89785":"p__Classrooms__Lists__Template__student__index","90109":"p__Classrooms__Lists__ShixunHomeworks__Detail__components__CodeReview__Detail__index","90265":"p__User__Detail__Topics__index","90337":"p__Paperlibrary__Random__PreviewEdit__index","91045":"p__virtualSpaces__Lists__Knowledge__AddAndEdit__index","91470":"p__User__Register__index","91487":"p__virtualSpaces__Lists__Shixuns__index","92045":"p__Engineering__Lists__TeacherList__index","92501":"p__Search__index","92603":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Add__index","92823":"p__Engineering__Navigation__Home__index","92983":"p__Forums__Index__index","93260":"p__Paperlibrary__Add__index","93282":"layouts__ShixunDetail__index","93496":"p__User__Detail__OtherResources__index","93665":"p__tasks__index","93668":"p__Classrooms__Lists__CommonHomework__Detail__index","94078":"p__Messages__Tidings__index","94498":"p__Shixuns__Edit__body__Level__Challenges__NewPractice__index","94662":"p__User__Detail__Paths__index","94715":"p__virtualSpaces__Lists__Material__Detail__index","94849":"p__User__Detail__ExperImentImg__index","95125":"p__Classrooms__Lists__Exercise__DetailedAnalysis__index","95176":"p__User__Detail__Videos__Protocol__index","95335":"p__Engineering__Lists__CourseMatrix__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","99674":"p__Shixuns__New__ImagePreview__index"}[chunkId] || chunkId) + ".chunk.css";
+/******/ return "" + ({"292":"p__Classrooms__Lists__Exercise__Add__index","310":"p__User__Detail__ExperImentImg__Detail__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1660":"p__User__QQLogin__index","1702":"p__Classrooms__New__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","3317":"p__Classrooms__Lists__Graduation__Topics__Add__index","3391":"p__Classrooms__Lists__ProgramHomework__Detail__components__CodeReview__Detail__index","3451":"p__Classrooms__Lists__Statistics__StudentStatistics__Detail__index","3509":"p__HttpStatus__SixActivities","3585":"p__Classrooms__Lists__Statistics__StudentSituation__index","3951":"p__Classrooms__Lists__ProgramHomework__Detail__index","4639":"p__virtualSpaces__Lists__Video__index","4736":"p__User__Detail__Projects__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5348":"p__virtualSpaces__Lists__Video__Upload__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6685":"p__Shixuns__Detail__RankingList__index","6758":"p__Classrooms__Lists__Attachment__index","6788":"p__Classrooms__Lists__ProgramHomework__index","7043":"p__User__Detail__Topics__Exercise__Edit__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","7918":"p__Paperlibrary__Random__ExerciseEdit__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","10195":"p__Classrooms__Lists__GroupHomework__Detail__index","10485":"p__Question__AddOrEdit__BatchAdd__index","10737":"p__Classrooms__Lists__CommonHomework__Detail__components__CodeReview__Detail__index","10799":"p__User__Detail__Topics__Poll__Detail__index","10921":"p__Classrooms__Lists__Exercise__CodeDetails__index","11070":"p__Innovation__PublicMirror__index","11512":"p__Classrooms__Lists__Exercise__AnswerCheck__index","11520":"p__Engineering__Lists__StudentList__index","11545":"p__Paperlibrary__Random__ExchangeFromProblemSet__index","11581":"p__Problemset__Preview__index","12076":"p__User__Detail__Competitions__index","12102":"p__Classrooms__Lists__Board__Edit__index","12412":"p__User__Detail__Videos__index","12476":"p__Colleges__index","12865":"p__Innovation__MyMirror__index","12884":"p__Classrooms__Lists__ProgramHomework__Comment__index","13006":"p__Engineering__index","13355":"p__Classrooms__Lists__Polls__index","13414":"p__virtualSpaces__Lists__Managements__index","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16729":"p__Classrooms__Lists__GroupHomework__Edit__index","16845":"p__Shixuns__Detail__Settings__index","17482":"p__Classrooms__Lists__Exercise__Notice__index","17527":"p__MyProblem__RecordDetail__index","17622":"p__Classrooms__Lists__Polls__Detail__index","17806":"p__Classrooms__Lists__Statistics__StatisticsQuality__index","18241":"p__virtualSpaces__Lists__Plan__index","18302":"p__Classrooms__Lists__Board__index","18307":"p__User__Detail__Shixuns__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19715":"p__Classrooms__Lists__CommonHomework__Edit__index","19891":"p__User__Detail__Videos__Success__index","20026":"p__Classrooms__Lists__Graduation__Tasks__Edit__index","20576":"p__Account__Profile__Edit__index","20680":"p__Innovation__index","20700":"p__tasks__Jupyter__index","21265":"p__Classrooms__Lists__Announcement__index","21423":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22257":"p__Paperlibrary__Random__AddAndEdit__index","22307":"p__Report__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25896":"p__virtualSpaces__Lists__Syllabuses__Detail__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27182":"p__User__ResetPassword__index","27333":"p__User__WechatLogin__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28435":"p__Classrooms__Lists__Attendance__index","28723":"p__Classrooms__Lists__Polls__Edit__index","28782":"p__Shixuns__Index__index","28982":"p__Paths__New__index","29080":"p__virtualSpaces__Lists__Graphs__index","29647":"p__Question__Index__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31427":"p__Classrooms__Lists__Statistics__index","31674":"p__Classrooms__ClassicCases__index","31962":"p__Classrooms__Lists__Engineering__index","33356":"p__Classrooms__Lists__Assistant__index","33747":"p__virtualSpaces__Lists__Homepage__index","33784":"p__Paperlibrary__Random__Detail__index","34093":"p__Classrooms__Lists__Attendance__Detail__index","34601":"p__Paths__Detail__Statistics__index","34608":"p__virtualSpaces__Index__index","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35588":"p__virtualSpaces__Lists__Course__index","35729":"p__Help__Index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","38447":"p__virtualSpaces__Lists__Knowledge__index","38634":"p__Classrooms__Lists__CourseGroup__List__index","38797":"p__Competitions__Edit__index","39332":"p__Classrooms__Lists__Video__index","39391":"p__Engineering__Lists__CurseSetting__index","39404":"monaco-editor","39695":"p__Classrooms__Lists__Polls__Add__index","40559":"layouts__virtualDetail__index","41048":"p__Classrooms__Lists__ProgramHomework__Detail__Ranking__index","41657":"p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index","41717":"layouts__index","41953":"p__Problemset__NewItem__index","42240":"p__User__Detail__Videos__Upload__index","43442":"p__Classrooms__Lists__Board__Add__index","43465":"p__virtualSpaces__Lists__Member__index","44216":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Edit__index","44259":"p__User__Detail__Order__pages__result__index","44449":"p__Competitions__Exports__index","44510":"p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index","45096":"p__Shixuns__Detail__AuditSituation__index","45359":"p__Messages__Detail__index","45650":"p__Competitions__Update__index","45775":"p__Engineering__Lists__Document__index","45825":"p__Classrooms__Lists__Exercise__index","45992":"p__Classrooms__Lists__Exercise__ReviewGroup__index","46796":"p__virtualSpaces__Lists__Announcement__Detail__index","46963":"p__Classrooms__Lists__Engineering__Detail__index","48077":"p__Classrooms__Lists__Students__index","48431":"p__Classrooms__Lists__Exercise__Export__index","48689":"p__Classrooms__Lists__Statistics__VideoStatistics__index","49205":"p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index","49366":"p__User__Login__index","49716":"p__Question__OjProblem__RecordDetail__index","49890":"p__Classrooms__Lists__CommonHomework__index","50869":"p__Guidance__index","51276":"p__MoopCases__Success__index","51582":"p__Classrooms__Lists__GroupHomework__Add__index","51855":"p__MoopCases__InfoPanel__index","52338":"p__Classrooms__Lists__CommonHomework__Review__index","52404":"p__Classrooms__Lists__Template__teacher__index","52806":"p__User__Detail__Topics__Exercise__Detail__index","52829":"p__Messages__Private__index","52875":"p__Shixuns__Detail__id","53247":"p__Paperlibrary__See__index","53910":"p__HttpStatus__introduction","54056":"p__IntrainCourse__index","54164":"p__Classrooms__Lists__Exercise__Detail__index","54472":"p__virtualSpaces__Lists__Notices__index","54572":"p__Classrooms__Lists__ExportList__index","54770":"p__Classrooms__Lists__ProgramHomework__Detail__answer__index","54862":"p__Paperlibrary__index","55573":"p__Shixuns__Detail__Merge__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","59133":"p__Shixuns__Detail__Challenges__index","59649":"p__Engineering__Lists__TrainingProgram__index","59788":"p__Account__Profile__index","60479":"p__Classrooms__Lists__GroupHomework__EditWork__index","60533":"p__Classrooms__Lists__Video__Statistics__Detail__index","60547":"p__Account__index","61043":"p__Classrooms__Lists__Graduation__Tasks__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","62548":"p__Engineering__Norm__Detail__index","64144":"p__Problemset__Preview__New__index","64217":"p__Classrooms__Lists__Video__Statistics__index","64496":"p__HttpStatus__HpcCourse","64520":"p__Account__Secure__index","65111":"p__Terminal__index","65148":"p__Classrooms__Lists__Polls__Answer__index","65191":"p__User__Detail__Certificate__index","65294":"p__User__OtherLogin__index","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66034":"p__HttpStatus__UserAgents","66583":"p__User__Detail__Classrooms__index","66651":"p__Engineering__Evaluate__Detail__index","67242":"p__Innovation__MyProject__index","67878":"p__Classrooms__Lists__LiveVideo__index","68014":"p__Classrooms__Lists__Teachers__index","68665":"p__Engineering__Lists__TrainingObjectives__index","68827":"p__Classrooms__Lists__OnlineLearning__index","68882":"p__Classrooms__Lists__Graduation__Tasks__Detail__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","71218":"p__virtualSpaces__Lists__Syllabuses__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71783":"p__virtualSpaces__Lists__Experiment__index","72529":"p__User__Detail__id","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74795":"p__Classrooms__Lists__Graduation__Tasks__Add__index","75043":"p__User__Detail__Topics__Poll__Edit__index","75357":"p__Engineering__Lists__TrainingProgram__Edit__index","75786":"layouts__LoginAndRegister__index","76904":"p__MoopCases__FormPanel__index","77460":"p__Question__OjProblem__index","77857":"p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index","78085":"p__Classrooms__Lists__Exercise__Review__index","79489":"p__Engineering__Lists__CourseList__index","79590":"p__User__Detail__TeachGroup__index","79921":"p__Classrooms__ExamList__index","80508":"p__Forums__Detail__id","81148":"p__Shixuns__Detail__Repository__UploadFile__index","82339":"p__virtualSpaces__Lists__Plan__Detail__index","82425":"p__Classrooms__Lists__Board__Detail__index","83141":"p__Innovation__Detail__index","83212":"p__MoopCases__index","83935":"p__Classrooms__Lists__GroupHomework__index","84546":"p__Engineering__Lists__TrainingProgram__Add__index","85048":"p__Classrooms__Lists__Graduation__Topics__index","85111":"p__User__Detail__Order__pages__orderInformation__index","85297":"p__Classrooms__Lists__Exercise__Detail__components__DuplicateChecking__CheckDetail__index","85888":"p__Classrooms__Lists__CommonHomework__Add__index","85891":"p__virtualSpaces__Lists__Resources__index","86052":"p__Paths__Index__index","86452":"p__Innovation__PublicDataSet__index","86541":"p__Shixuns__Detail__Dataset__index","86634":"p__Innovation__Tasks__index","86820":"p__User__Detail__Topics__Normal__index","86913":"p__Question__AddOrEdit__index","87058":"p__virtualSpaces__Lists__Survey__Detail__index","87260":"p__Account__Certification__index","87922":"p__Classrooms__Lists__CourseGroup__Detail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89076":"p__Account__Binding__index","89677":"p__virtualSpaces__Lists__Announcement__AddAndEdit__index","89785":"p__Classrooms__Lists__Template__student__index","90109":"p__Classrooms__Lists__ShixunHomeworks__Detail__components__CodeReview__Detail__index","90265":"p__User__Detail__Topics__index","90337":"p__Paperlibrary__Random__PreviewEdit__index","91045":"p__virtualSpaces__Lists__Knowledge__AddAndEdit__index","91470":"p__User__Register__index","91487":"p__virtualSpaces__Lists__Shixuns__index","92045":"p__Engineering__Lists__TeacherList__index","92501":"p__Search__index","92603":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Add__index","92823":"p__Engineering__Navigation__Home__index","92983":"p__Forums__Index__index","93260":"p__Paperlibrary__Add__index","93282":"layouts__ShixunDetail__index","93496":"p__User__Detail__OtherResources__index","93665":"p__tasks__index","93668":"p__Classrooms__Lists__CommonHomework__Detail__index","94078":"p__Messages__Tidings__index","94498":"p__Shixuns__Edit__body__Level__Challenges__NewPractice__index","94662":"p__User__Detail__Paths__index","94715":"p__virtualSpaces__Lists__Material__Detail__index","94849":"p__User__Detail__ExperImentImg__index","95125":"p__Classrooms__Lists__Exercise__DetailedAnalysis__index","95176":"p__User__Detail__Videos__Protocol__index","95335":"p__Engineering__Lists__CourseMatrix__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","99674":"p__Shixuns__New__ImagePreview__index"}[chunkId] || chunkId) + ".chunk.css";
/******/ };
/******/ }();
/******/
@@ -120121,7 +120724,7 @@ function _unsupportedIterableToArray(o, minLen) {
/******/ };
/******/
/******/ __webpack_require__.f.miniCss = function(chunkId, promises) {
-/******/ var cssChunks = {"292":1,"310":1,"794":1,"1226":1,"1482":1,"1660":1,"1702":1,"2082":1,"2206":1,"2282":1,"2659":1,"2819":1,"3317":1,"3391":1,"3451":1,"3509":1,"3585":1,"3633":1,"3951":1,"4390":1,"4639":1,"4656":1,"4736":1,"4884":1,"4900":1,"4973":1,"5348":1,"5572":1,"6127":1,"6685":1,"6758":1,"6788":1,"7043":1,"7852":1,"7884":1,"7918":1,"8280":1,"8787":1,"8999":1,"10195":1,"10226":1,"10485":1,"10737":1,"10799":1,"10921":1,"11070":1,"11512":1,"11520":1,"11545":1,"11581":1,"12102":1,"12412":1,"12476":1,"12819":1,"12865":1,"12884":1,"13006":1,"13355":1,"13414":1,"13581":1,"14058":1,"14074":1,"14105":1,"14506":1,"14514":1,"14599":1,"14610":1,"14662":1,"14889":1,"15148":1,"15319":1,"15402":1,"15428":1,"16328":1,"16729":1,"16827":1,"16845":1,"17379":1,"17482":1,"17527":1,"17622":1,"17806":1,"18241":1,"18302":1,"18307":1,"19215":1,"19360":1,"19715":1,"19891":1,"20026":1,"20576":1,"20680":1,"20700":1,"20812":1,"20959":1,"21265":1,"21423":1,"21578":1,"21939":1,"22254":1,"22257":1,"22307":1,"22562":1,"22707":1,"22842":1,"23332":1,"23805":1,"24504":1,"25470":1,"25705":1,"25896":1,"26366":1,"26685":1,"26741":1,"26883":1,"27182":1,"27333":1,"27395":1,"27703":1,"28072":1,"28435":1,"28723":1,"28782":1,"28982":1,"29080":1,"29647":1,"29730":1,"30067":1,"30264":1,"30342":1,"31006":1,"31211":1,"31418":1,"31427":1,"31674":1,"31949":1,"31962":1,"33356":1,"33747":1,"33784":1,"34093":1,"34601":1,"34608":1,"34741":1,"34800":1,"34994":1,"35238":1,"35588":1,"35729":1,"36204":1,"36270":1,"36433":1,"36483":1,"36579":1,"36784":1,"37062":1,"37099":1,"38447":1,"38634":1,"39332":1,"39391":1,"39404":1,"39695":1,"39961":1,"40018":1,"40559":1,"41048":1,"41657":1,"41717":1,"41953":1,"42240":1,"42977":1,"43442":1,"43465":1,"43778":1,"43915":1,"44216":1,"44259":1,"44449":1,"44510":1,"45096":1,"45359":1,"45650":1,"45775":1,"45825":1,"45992":1,"46059":1,"46430":1,"46796":1,"46963":1,"46981":1,"48077":1,"48431":1,"48689":1,"48896":1,"49205":1,"49366":1,"49666":1,"49716":1,"49890":1,"49960":1,"50869":1,"51276":1,"51370":1,"51582":1,"51855":1,"52338":1,"52404":1,"52424":1,"52806":1,"52829":1,"52875":1,"53247":1,"53267":1,"53440":1,"53910":1,"54056":1,"54164":1,"54285":1,"54472":1,"54572":1,"54770":1,"54836":1,"54862":1,"55573":1,"56277":1,"56885":1,"57045":1,"57614":1,"59133":1,"59295":1,"59649":1,"59788":1,"60479":1,"60533":1,"60547":1,"61043":1,"61437":1,"61713":1,"61727":1,"62055":1,"62548":1,"62629":1,"63543":1,"64144":1,"64217":1,"64496":1,"64520":1,"65111":1,"65148":1,"65191":1,"65294":1,"65491":1,"65549":1,"65816":1,"66034":1,"66583":1,"66651":1,"67242":1,"67570":1,"67878":1,"68014":1,"68665":1,"68827":1,"68882":1,"68922":1,"69922":1,"69944":1,"71218":1,"71450":1,"71783":1,"72465":1,"72529":1,"72570":1,"72693":1,"73183":1,"73220":1,"74264":1,"74795":1,"75043":1,"75357":1,"75786":1,"75800":1,"76563":1,"76904":1,"77460":1,"77857":1,"78085":1,"78397":1,"78843":1,"79489":1,"79590":1,"79921":1,"80280":1,"80508":1,"80670":1,"81148":1,"82339":1,"82425":1,"83141":1,"83212":1,"83520":1,"83935":1,"84546":1,"84685":1,"85048":1,"85111":1,"85297":1,"85343":1,"85410":1,"85888":1,"85891":1,"86052":1,"86452":1,"86541":1,"86634":1,"86820":1,"86913":1,"87058":1,"87260":1,"87922":1,"88517":1,"88866":1,"89076":1,"89106":1,"89677":1,"89785":1,"90109":1,"90265":1,"90337":1,"91045":1,"91470":1,"91487":1,"92045":1,"92401":1,"92501":1,"92603":1,"92823":1,"92983":1,"93260":1,"93282":1,"93291":1,"93496":1,"93665":1,"93668":1,"94078":1,"94220":1,"94498":1,"94662":1,"94715":1,"94849":1,"95125":1,"95176":1,"95335":1,"96444":1,"96882":1,"96967":1,"97008":1,"97046":1,"98062":1,"98398":1,"98688":1,"98885":1,"99674":1};
+/******/ var cssChunks = {"292":1,"310":1,"794":1,"1226":1,"1482":1,"1660":1,"1702":1,"2082":1,"2206":1,"2282":1,"2659":1,"2819":1,"3317":1,"3391":1,"3451":1,"3509":1,"3585":1,"3633":1,"3951":1,"4390":1,"4525":1,"4639":1,"4656":1,"4736":1,"4884":1,"4900":1,"4973":1,"5348":1,"5572":1,"6127":1,"6685":1,"6758":1,"6788":1,"7043":1,"7852":1,"7884":1,"7918":1,"8280":1,"8787":1,"8999":1,"10195":1,"10226":1,"10485":1,"10737":1,"10799":1,"10921":1,"11070":1,"11512":1,"11520":1,"11545":1,"11581":1,"12076":1,"12102":1,"12412":1,"12476":1,"12819":1,"12865":1,"12884":1,"13006":1,"13355":1,"13414":1,"13581":1,"14058":1,"14074":1,"14105":1,"14506":1,"14514":1,"14599":1,"14610":1,"14662":1,"14889":1,"15148":1,"15319":1,"15402":1,"15428":1,"16328":1,"16729":1,"16827":1,"16845":1,"17379":1,"17482":1,"17527":1,"17622":1,"17806":1,"18241":1,"18302":1,"18307":1,"18976":1,"19215":1,"19360":1,"19715":1,"19891":1,"20026":1,"20576":1,"20680":1,"20700":1,"20812":1,"20959":1,"21265":1,"21423":1,"21578":1,"21939":1,"22254":1,"22257":1,"22307":1,"22562":1,"22707":1,"22842":1,"23332":1,"23805":1,"24504":1,"25470":1,"25705":1,"25896":1,"26366":1,"26685":1,"26741":1,"26883":1,"27182":1,"27333":1,"27395":1,"27703":1,"28072":1,"28435":1,"28723":1,"28782":1,"28982":1,"29080":1,"29647":1,"29730":1,"30067":1,"30264":1,"30342":1,"31006":1,"31211":1,"31418":1,"31427":1,"31674":1,"31949":1,"31962":1,"33356":1,"33747":1,"33784":1,"34093":1,"34601":1,"34608":1,"34741":1,"34800":1,"34994":1,"35238":1,"35588":1,"35729":1,"36270":1,"36433":1,"36483":1,"36579":1,"36784":1,"37062":1,"37099":1,"38447":1,"38634":1,"38797":1,"39332":1,"39391":1,"39404":1,"39695":1,"39961":1,"40018":1,"40559":1,"41048":1,"41657":1,"41717":1,"41953":1,"42240":1,"42977":1,"43442":1,"43465":1,"43778":1,"43915":1,"44216":1,"44259":1,"44449":1,"44510":1,"45096":1,"45359":1,"45650":1,"45775":1,"45825":1,"45992":1,"46059":1,"46430":1,"46796":1,"46963":1,"46981":1,"48077":1,"48431":1,"48689":1,"48896":1,"49205":1,"49366":1,"49666":1,"49716":1,"49890":1,"49960":1,"50869":1,"51276":1,"51370":1,"51582":1,"51855":1,"52338":1,"52404":1,"52424":1,"52806":1,"52829":1,"52875":1,"53247":1,"53267":1,"53440":1,"53585":1,"53910":1,"54056":1,"54164":1,"54285":1,"54472":1,"54572":1,"54770":1,"54836":1,"54862":1,"55573":1,"56277":1,"56885":1,"57045":1,"57614":1,"59133":1,"59295":1,"59649":1,"59788":1,"60479":1,"60533":1,"60547":1,"61043":1,"61437":1,"61713":1,"61727":1,"62055":1,"62548":1,"62629":1,"63543":1,"64144":1,"64217":1,"64496":1,"64520":1,"65111":1,"65148":1,"65191":1,"65294":1,"65491":1,"65549":1,"65816":1,"66034":1,"66583":1,"66651":1,"67242":1,"67570":1,"67878":1,"68014":1,"68665":1,"68827":1,"68882":1,"68922":1,"69922":1,"69944":1,"71218":1,"71450":1,"71783":1,"72465":1,"72529":1,"72570":1,"72693":1,"73183":1,"73220":1,"74264":1,"74795":1,"75043":1,"75357":1,"75786":1,"75800":1,"76904":1,"77460":1,"77857":1,"78085":1,"78397":1,"78843":1,"79489":1,"79590":1,"79921":1,"80280":1,"80508":1,"80670":1,"81148":1,"81762":1,"82339":1,"82425":1,"83141":1,"83212":1,"83520":1,"83935":1,"84546":1,"84635":1,"85048":1,"85111":1,"85297":1,"85343":1,"85410":1,"85888":1,"85891":1,"86052":1,"86452":1,"86541":1,"86634":1,"86820":1,"86913":1,"87058":1,"87260":1,"87922":1,"88517":1,"88866":1,"89076":1,"89106":1,"89677":1,"89785":1,"90109":1,"90265":1,"90337":1,"91045":1,"91470":1,"91487":1,"92045":1,"92401":1,"92501":1,"92603":1,"92823":1,"92983":1,"93260":1,"93282":1,"93291":1,"93496":1,"93665":1,"93668":1,"94078":1,"94220":1,"94498":1,"94662":1,"94715":1,"94849":1,"95125":1,"95176":1,"95335":1,"96444":1,"96882":1,"96967":1,"97008":1,"97046":1,"98062":1,"98398":1,"98688":1,"98885":1,"99674":1};
/******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
/******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
/******/ promises.push(installedCssChunks[chunkId] = loadStylesheet(chunkId).then(function() {
@@ -120156,7 +120759,7 @@ function _unsupportedIterableToArray(o, minLen) {
/******/ if(installedChunkData) {
/******/ promises.push(installedChunkData[2]);
/******/ } else {
-/******/ if(!/^(2(0576|2562|2842|3805|8723)|36(433|483|579)|(439|8067|9422)0|42977|61437|62055)$/.test(chunkId)) {
+/******/ if(!/^(2(0576|2562|2842|3805|8723)|36(433|483|579)|(439|8067|9422)0|42977|61437|62055|81762)$/.test(chunkId)) {
/******/ // setup Promise in chunk cache
/******/ var promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });
/******/ promises.push(installedChunkData[2] = promise);
@@ -122614,1309 +123217,1319 @@ function _getRoutes() {
"id": "157"
},
"158": {
- "path": "/forums",
- "parentId": "1",
+ "path": "/competitions/detail/:identifier",
+ "parentId": "148",
"id": "158"
},
"159": {
"path": "/forums",
- "parentId": "158",
+ "parentId": "1",
"id": "159"
},
"160": {
- "path": "/forums/categories/:memoType",
- "parentId": "158",
+ "path": "/forums",
+ "parentId": "159",
"id": "160"
},
"161": {
- "path": "/forums/new",
- "parentId": "158",
+ "path": "/forums/categories/:memoType",
+ "parentId": "159",
"id": "161"
},
"162": {
- "path": "/forums/:memoId/edit",
- "parentId": "158",
+ "path": "/forums/new",
+ "parentId": "159",
"id": "162"
},
"163": {
- "path": "/forums/:memoId",
- "parentId": "158",
+ "path": "/forums/:memoId/edit",
+ "parentId": "159",
"id": "163"
},
"164": {
- "path": "/problemset",
- "parentId": "1",
+ "path": "/forums/:memoId",
+ "parentId": "159",
"id": "164"
},
"165": {
"path": "/problemset",
- "parentId": "164",
+ "parentId": "1",
"id": "165"
},
"166": {
- "path": "/problemset/newitem",
- "parentId": "164",
+ "path": "/problemset",
+ "parentId": "165",
"id": "166"
},
"167": {
- "path": "/problemset/:type/:id",
- "parentId": "164",
+ "path": "/problemset/newitem",
+ "parentId": "165",
"id": "167"
},
"168": {
- "path": "/problemset/preview",
- "parentId": "164",
+ "path": "/problemset/:type/:id",
+ "parentId": "165",
"id": "168"
},
"169": {
- "path": "/problemset/preview_new",
- "parentId": "164",
+ "path": "/problemset/preview",
+ "parentId": "165",
"id": "169"
},
"170": {
- "path": "/problemset/preview_select",
- "parentId": "164",
+ "path": "/problemset/preview_new",
+ "parentId": "165",
"id": "170"
},
"171": {
- "path": "/shixuns",
- "parentId": "1",
+ "path": "/problemset/preview_select",
+ "parentId": "165",
"id": "171"
},
"172": {
"path": "/shixuns",
- "parentId": "171",
+ "parentId": "1",
"id": "172"
},
"173": {
- "path": "/shixuns/exports",
- "parentId": "171",
+ "path": "/shixuns",
+ "parentId": "172",
"id": "173"
},
"174": {
- "path": "/shixuns/new",
- "parentId": "171",
+ "path": "/shixuns/exports",
+ "parentId": "172",
"id": "174"
},
"175": {
- "path": "/shixuns/new/CreateImg",
- "parentId": "171",
+ "path": "/shixuns/new",
+ "parentId": "172",
"id": "175"
},
"176": {
- "path": "/shixuns/new/:id/imagepreview",
- "parentId": "171",
+ "path": "/shixuns/new/CreateImg",
+ "parentId": "172",
"id": "176"
},
"177": {
- "path": "/shixuns/:id/Merge",
- "parentId": "171",
+ "path": "/shixuns/new/:id/imagepreview",
+ "parentId": "172",
"id": "177"
},
"178": {
- "path": "/shixuns/:id/edit",
- "parentId": "171",
+ "path": "/shixuns/:id/Merge",
+ "parentId": "172",
"id": "178"
},
"179": {
- "path": "shixuns/:id/edit/warehouse",
- "parentId": "178",
+ "path": "/shixuns/:id/edit",
+ "parentId": "172",
"id": "179"
},
"180": {
- "path": "/shixuns/:id/edit/newquestion",
- "parentId": "178",
+ "path": "shixuns/:id/edit/warehouse",
+ "parentId": "179",
"id": "180"
},
"181": {
- "path": "/shixuns/:id/edit/:challengesId/editquestion",
- "parentId": "178",
+ "path": "/shixuns/:id/edit/newquestion",
+ "parentId": "179",
"id": "181"
},
"182": {
- "path": "/shixuns/:id/edit/:challengesId/editquestion/:questionId",
- "parentId": "178",
+ "path": "/shixuns/:id/edit/:challengesId/editquestion",
+ "parentId": "179",
"id": "182"
},
"183": {
- "path": "/shixuns/:id/edit/new",
- "parentId": "178",
+ "path": "/shixuns/:id/edit/:challengesId/editquestion/:questionId",
+ "parentId": "179",
"id": "183"
},
"184": {
- "path": "/shixuns/:id/edit/:challengesId/editcheckpoint",
- "parentId": "178",
+ "path": "/shixuns/:id/edit/new",
+ "parentId": "179",
"id": "184"
},
"185": {
- "path": "/shixuns/:id/edit/:challengesId/tab=2",
- "parentId": "178",
+ "path": "/shixuns/:id/edit/:challengesId/editcheckpoint",
+ "parentId": "179",
"id": "185"
},
"186": {
- "path": "/shixuns/:id/edit/:challengesId/tab=3",
- "parentId": "178",
+ "path": "/shixuns/:id/edit/:challengesId/tab=2",
+ "parentId": "179",
"id": "186"
},
"187": {
- "path": "/shixuns/:id/edit/:challengesId/tab=4",
- "parentId": "178",
+ "path": "/shixuns/:id/edit/:challengesId/tab=3",
+ "parentId": "179",
"id": "187"
},
"188": {
- "path": "/shixuns/:id",
- "parentId": "171",
+ "path": "/shixuns/:id/edit/:challengesId/tab=4",
+ "parentId": "179",
"id": "188"
},
"189": {
- "path": "/shixuns/:id/challenges",
- "parentId": "188",
+ "path": "/shixuns/:id",
+ "parentId": "172",
"id": "189"
},
"190": {
- "path": "/shixuns/:id/repository",
- "parentId": "188",
+ "path": "/shixuns/:id/challenges",
+ "parentId": "189",
"id": "190"
},
"191": {
- "path": "/shixuns/:id/secret_repository",
- "parentId": "188",
+ "path": "/shixuns/:id/repository",
+ "parentId": "189",
"id": "191"
},
"192": {
- "path": "/shixuns/:id/collaborators",
- "parentId": "188",
+ "path": "/shixuns/:id/secret_repository",
+ "parentId": "189",
"id": "192"
},
"193": {
- "path": "/shixuns/:id/dataset",
- "parentId": "188",
+ "path": "/shixuns/:id/collaborators",
+ "parentId": "189",
"id": "193"
},
"194": {
- "path": "/shixuns/:id/shixun_discuss",
- "parentId": "188",
+ "path": "/shixuns/:id/dataset",
+ "parentId": "189",
"id": "194"
},
"195": {
- "path": "/shixuns/:id/ranking_list",
- "parentId": "188",
+ "path": "/shixuns/:id/shixun_discuss",
+ "parentId": "189",
"id": "195"
},
"196": {
- "path": "/shixuns/:id/settings",
- "parentId": "188",
+ "path": "/shixuns/:id/ranking_list",
+ "parentId": "189",
"id": "196"
},
"197": {
- "path": "/shixuns/:id/repository/:repoId/commits",
- "parentId": "188",
+ "path": "/shixuns/:id/settings",
+ "parentId": "189",
"id": "197"
},
"198": {
- "path": "/shixuns/:id/secret_repository/:repoId/commits",
- "parentId": "188",
+ "path": "/shixuns/:id/repository/:repoId/commits",
+ "parentId": "189",
"id": "198"
},
"199": {
- "path": "/shixuns/:id/repository/upload_file",
- "parentId": "188",
+ "path": "/shixuns/:id/secret_repository/:repoId/commits",
+ "parentId": "189",
"id": "199"
},
"200": {
- "path": "/shixuns/:id/secret_repository/upload_file",
- "parentId": "188",
+ "path": "/shixuns/:id/repository/upload_file",
+ "parentId": "189",
"id": "200"
},
"201": {
- "path": "/shixuns/:id/repository/add_file",
- "parentId": "188",
+ "path": "/shixuns/:id/secret_repository/upload_file",
+ "parentId": "189",
"id": "201"
},
"202": {
- "path": "/shixuns/:id/secret_repository/add_file",
- "parentId": "188",
+ "path": "/shixuns/:id/repository/add_file",
+ "parentId": "189",
"id": "202"
},
"203": {
- "path": "/shixuns/:id/repository/master/shixun_show/:fileId",
- "exact": false,
- "parentId": "188",
+ "path": "/shixuns/:id/secret_repository/add_file",
+ "parentId": "189",
"id": "203"
},
"204": {
- "path": "/shixuns/:id/secret_repository/master/shixun_show/:fileId",
+ "path": "/shixuns/:id/repository/master/shixun_show/:fileId",
"exact": false,
- "parentId": "188",
+ "parentId": "189",
"id": "204"
},
"205": {
- "path": "/shixuns/:id/audit_situation",
- "parentId": "188",
+ "path": "/shixuns/:id/secret_repository/master/shixun_show/:fileId",
+ "exact": false,
+ "parentId": "189",
"id": "205"
},
"206": {
- "path": "/shixuns/:id/fork_list",
- "parentId": "188",
+ "path": "/shixuns/:id/audit_situation",
+ "parentId": "189",
"id": "206"
},
"207": {
- "path": "/users",
- "parentId": "1",
+ "path": "/shixuns/:id/fork_list",
+ "parentId": "189",
"id": "207"
},
"208": {
- "path": "/users/:username/videos/protocol",
- "parentId": "207",
+ "path": "/users",
+ "parentId": "1",
"id": "208"
},
"209": {
- "path": "/users/:username/videos/success",
- "parentId": "207",
+ "path": "/users/:username/videos/protocol",
+ "parentId": "208",
"id": "209"
},
"210": {
- "path": "/users/:username/topicbank/:topicstype",
- "parentId": "207",
+ "path": "/users/:username/videos/success",
+ "parentId": "208",
"id": "210"
},
"211": {
- "path": "/users/:username/topics/:topicId/:topictype/normal/detail",
- "parentId": "207",
+ "path": "/users/:username/topicbank/:topicstype",
+ "parentId": "208",
"id": "211"
},
"212": {
- "path": "/users/:username/topics/:topicId/:topictype/group/detail",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/normal/detail",
+ "parentId": "208",
"id": "212"
},
"213": {
- "path": "/users/:username/topics/:topicId/:topictype/normal/edit",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/group/detail",
+ "parentId": "208",
"id": "213"
},
"214": {
- "path": "/users/:username/topics/:topicId/:topictype/group/edit",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/normal/edit",
+ "parentId": "208",
"id": "214"
},
"215": {
- "path": "/users/:username/topics/:topicId/:topictype/exercise/edit",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/group/edit",
+ "parentId": "208",
"id": "215"
},
"216": {
- "path": "/users/:username/topics/:topicId/:topictype/exercise/detail",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/exercise/edit",
+ "parentId": "208",
"id": "216"
},
"217": {
- "path": "/users/:username/topics/:topicId/:topictype/poll/edit",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/exercise/detail",
+ "parentId": "208",
"id": "217"
},
"218": {
- "path": "/users/:username/topics/:topicId/:topictype/poll/detail",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/poll/edit",
+ "parentId": "208",
"id": "218"
},
"219": {
- "path": "/users/:username",
- "parentId": "207",
+ "path": "/users/:username/topics/:topicId/:topictype/poll/detail",
+ "parentId": "208",
"id": "219"
},
"220": {
"path": "/users/:username",
- "parentId": "219",
+ "parentId": "208",
"id": "220"
},
"221": {
- "path": "/users/:username/classrooms",
- "parentId": "219",
+ "path": "/users/:username",
+ "parentId": "220",
"id": "221"
},
"222": {
- "path": "/users/:username/shixuns",
- "parentId": "219",
+ "path": "/users/:username/classrooms",
+ "parentId": "220",
"id": "222"
},
"223": {
- "path": "/users/:username/userPortrait",
- "parentId": "219",
+ "path": "/users/:username/shixuns",
+ "parentId": "220",
"id": "223"
},
"224": {
- "path": "/users/:username/learningPath",
- "parentId": "219",
+ "path": "/users/:username/userPortrait",
+ "parentId": "220",
"id": "224"
},
"225": {
- "path": "/users/:username/teach-group",
- "parentId": "219",
+ "path": "/users/:username/learningPath",
+ "parentId": "220",
"id": "225"
},
"226": {
- "path": "/users/:username/experiment-img",
- "parentId": "219",
+ "path": "/users/:username/teach-group",
+ "parentId": "220",
"id": "226"
},
"227": {
- "path": "/users/:username/experiment-img/:experid/detail",
- "parentId": "219",
+ "path": "/users/:username/competitions",
+ "parentId": "220",
"id": "227"
},
"228": {
- "path": "/users/:username/certificate",
- "parentId": "219",
+ "path": "/users/:username/experiment-img",
+ "parentId": "220",
"id": "228"
},
"229": {
- "path": "/users/:username/otherResources",
- "parentId": "219",
+ "path": "/users/:username/experiment-img/:experid/detail",
+ "parentId": "220",
"id": "229"
},
"230": {
- "path": "/users/:username/paths",
- "parentId": "219",
+ "path": "/users/:username/certificate",
+ "parentId": "220",
"id": "230"
},
"231": {
- "path": "/users/:username/projects",
- "parentId": "219",
+ "path": "/users/:username/otherResources",
+ "parentId": "220",
"id": "231"
},
"232": {
- "path": "/users/:username/videos",
- "parentId": "219",
+ "path": "/users/:username/paths",
+ "parentId": "220",
"id": "232"
},
"233": {
- "path": "/users/:username/videos/upload",
- "parentId": "219",
+ "path": "/users/:username/projects",
+ "parentId": "220",
"id": "233"
},
"234": {
- "path": "/users/:username/topics/:topicstype",
- "parentId": "219",
+ "path": "/users/:username/videos",
+ "parentId": "220",
"id": "234"
},
"235": {
- "path": "/users/:username/vspaces",
- "parentId": "219",
+ "path": "/users/:username/videos/upload",
+ "parentId": "220",
"id": "235"
},
"236": {
- "parentId": "1",
+ "path": "/users/:username/topics/:topicstype",
+ "parentId": "220",
"id": "236"
},
"237": {
- "path": "/problems",
- "parentId": "236",
+ "path": "/users/:username/vspaces",
+ "parentId": "220",
"id": "237"
},
"238": {
- "path": "/problems",
- "parentId": "237",
+ "parentId": "1",
"id": "238"
},
"239": {
- "path": "/problems/batchAdd",
- "parentId": "237",
+ "path": "/problems",
+ "parentId": "238",
"id": "239"
},
"240": {
- "path": "/problems/newcreate",
- "parentId": "236",
+ "path": "/problems",
+ "parentId": "239",
"id": "240"
},
"241": {
- "path": "/problems/newedit/:id",
- "exact": true,
- "parentId": "236",
+ "path": "/problems/batchAdd",
+ "parentId": "239",
"id": "241"
},
"242": {
- "path": "/problems/:id/edit",
- "exact": true,
- "parentId": "236",
+ "path": "/problems/newcreate",
+ "parentId": "238",
"id": "242"
},
"243": {
- "path": "/problems/new",
+ "path": "/problems/newedit/:id",
"exact": true,
- "parentId": "236",
+ "parentId": "238",
"id": "243"
},
"244": {
- "path": "/problems/:id/oj/:save_identifier",
- "parentId": "236",
+ "path": "/problems/:id/edit",
+ "exact": true,
+ "parentId": "238",
"id": "244"
},
"245": {
- "path": "/problems/:id/record-detail/:submitId",
- "parentId": "236",
+ "path": "/problems/new",
+ "exact": true,
+ "parentId": "238",
"id": "245"
},
"246": {
- "path": "/problems/add",
- "parentId": "236",
+ "path": "/problems/:id/oj/:save_identifier",
+ "parentId": "238",
"id": "246"
},
"247": {
- "path": "/problems/:id/ojedit",
- "parentId": "236",
+ "path": "/problems/:id/record-detail/:submitId",
+ "parentId": "238",
"id": "247"
},
"248": {
- "path": "/engineering",
- "parentId": "1",
+ "path": "/problems/add",
+ "parentId": "238",
"id": "248"
},
"249": {
- "path": "/engineering",
- "parentId": "248",
+ "path": "/problems/:id/ojedit",
+ "parentId": "238",
"id": "249"
},
"250": {
- "path": "/engineering/teacherList",
- "parentId": "249",
+ "path": "/engineering",
+ "parentId": "1",
"id": "250"
},
"251": {
- "path": "/engineering/studentList",
- "parentId": "249",
+ "path": "/engineering",
+ "parentId": "250",
"id": "251"
},
"252": {
- "path": "/engineering/trainingProgram",
- "parentId": "249",
+ "path": "/engineering/teacherList",
+ "parentId": "251",
"id": "252"
},
"253": {
- "path": "/engineering/trainingProgram/add",
- "parentId": "249",
+ "path": "/engineering/studentList",
+ "parentId": "251",
"id": "253"
},
"254": {
- "path": "/engineering/trainingProgram/edit",
- "parentId": "249",
+ "path": "/engineering/trainingProgram",
+ "parentId": "251",
"id": "254"
},
"255": {
- "path": "/engineering/trainingObjectives",
- "parentId": "249",
+ "path": "/engineering/trainingProgram/add",
+ "parentId": "251",
"id": "255"
},
"256": {
- "path": "/engineering/graduationindex",
- "parentId": "249",
+ "path": "/engineering/trainingProgram/edit",
+ "parentId": "251",
"id": "256"
},
"257": {
- "path": "/engineering/graduatedMatrix",
- "parentId": "249",
+ "path": "/engineering/trainingObjectives",
+ "parentId": "251",
"id": "257"
},
"258": {
- "path": "/engineering/courseList",
- "parentId": "249",
+ "path": "/engineering/graduationindex",
+ "parentId": "251",
"id": "258"
},
"259": {
- "path": "/engineering/cursesetting",
- "parentId": "249",
+ "path": "/engineering/graduatedMatrix",
+ "parentId": "251",
"id": "259"
},
"260": {
- "path": "/engineering/courseMatrix",
- "parentId": "249",
+ "path": "/engineering/courseList",
+ "parentId": "251",
"id": "260"
},
"261": {
- "path": "/engineering/navigation",
- "parentId": "249",
+ "path": "/engineering/cursesetting",
+ "parentId": "251",
"id": "261"
},
"262": {
- "path": "/engineering/evaluate/course",
- "parentId": "249",
+ "path": "/engineering/courseMatrix",
+ "parentId": "251",
"id": "262"
},
"263": {
- "path": "/engineering/evaluate/course/:ec_year_id/:id",
- "parentId": "249",
+ "path": "/engineering/navigation",
+ "parentId": "251",
"id": "263"
},
"264": {
- "path": "/engineering/evaluate/norm",
- "parentId": "249",
+ "path": "/engineering/evaluate/course",
+ "parentId": "251",
"id": "264"
},
"265": {
- "path": "/engineering/evaluate/document",
- "parentId": "249",
+ "path": "/engineering/evaluate/course/:ec_year_id/:id",
+ "parentId": "251",
"id": "265"
},
"266": {
- "path": "/engineering/evaluate/norm/:ec_year_id/:id",
- "parentId": "249",
+ "path": "/engineering/evaluate/norm",
+ "parentId": "251",
"id": "266"
},
"267": {
- "path": "/engineering/*",
- "redirect": "/404",
- "parentId": "249",
+ "path": "/engineering/evaluate/document",
+ "parentId": "251",
"id": "267"
},
"268": {
- "path": "/vspaces",
- "parentId": "1",
+ "path": "/engineering/evaluate/norm/:ec_year_id/:id",
+ "parentId": "251",
"id": "268"
},
"269": {
- "path": "/vspaces",
- "exact": true,
- "parentId": "268",
+ "path": "/engineering/*",
+ "redirect": "/404",
+ "parentId": "251",
"id": "269"
},
"270": {
- "path": "/vspaces/:virtual_spacesId/syllabuses/add",
- "exact": true,
- "parentId": "268",
+ "path": "/vspaces",
+ "parentId": "1",
"id": "270"
},
"271": {
- "path": "/vspaces/:virtual_spacesId/syllabuses/:id/edit",
+ "path": "/vspaces",
"exact": true,
- "parentId": "268",
+ "parentId": "270",
"id": "271"
},
"272": {
- "path": "/vspaces/:virtual_spacesId/",
- "parentId": "268",
+ "path": "/vspaces/:virtual_spacesId/syllabuses/add",
+ "exact": true,
+ "parentId": "270",
"id": "272"
},
"273": {
- "path": "/vspaces/:virtual_spacesId/syllabuses",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/syllabuses/:id/edit",
+ "exact": true,
+ "parentId": "270",
"id": "273"
},
"274": {
- "path": "/vspaces/:virtual_spacesId/syllabuses/:id/detail",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/",
+ "parentId": "270",
"id": "274"
},
"275": {
- "path": "/vspaces/:virtual_spacesId/courses",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/syllabuses",
+ "parentId": "274",
"id": "275"
},
"276": {
- "path": "/vspaces/:virtual_spacesId/shixuns",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/syllabuses/:id/detail",
+ "parentId": "274",
"id": "276"
},
"277": {
- "path": "/vspaces/:virtual_spacesId/videos",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/courses",
+ "parentId": "274",
"id": "277"
},
"278": {
- "path": "/vspaces/:virtual_spacesId/videos/:username/upload",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/shixuns",
+ "parentId": "274",
"id": "278"
},
"279": {
- "path": "/vspaces/:virtual_spacesId/members",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/videos",
+ "parentId": "274",
"id": "279"
},
"280": {
- "path": "/vspaces/:virtual_spacesId/notices",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/videos/:username/upload",
+ "parentId": "274",
"id": "280"
},
"281": {
- "path": "/vspaces/:virtual_spacesId/managements",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/members",
+ "parentId": "274",
"id": "281"
},
"282": {
- "path": "/vspaces/:virtual_spacesId/graphs",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/notices",
+ "parentId": "274",
"id": "282"
},
"283": {
- "path": "/vspaces/:virtual_spacesId/*",
- "parentId": "272",
+ "path": "/vspaces/:virtual_spacesId/managements",
+ "parentId": "274",
"id": "283"
},
"284": {
- "path": "/innovation",
- "parentId": "1",
+ "path": "/vspaces/:virtual_spacesId/graphs",
+ "parentId": "274",
"id": "284"
},
"285": {
- "path": "/innovation/tasks/:taskId",
- "parentId": "284",
+ "path": "/vspaces/:virtual_spacesId/*",
+ "parentId": "274",
"id": "285"
},
"286": {
"path": "/innovation",
- "parentId": "284",
+ "parentId": "1",
"id": "286"
},
"287": {
- "path": "/innovation/project",
+ "path": "/innovation/tasks/:taskId",
"parentId": "286",
"id": "287"
},
"288": {
- "path": "/innovation/dataset",
+ "path": "/innovation",
"parentId": "286",
"id": "288"
},
"289": {
- "path": "/innovation/mirror",
- "parentId": "286",
+ "path": "/innovation/project",
+ "parentId": "288",
"id": "289"
},
"290": {
- "path": "/innovation/my-project",
- "parentId": "286",
+ "path": "/innovation/dataset",
+ "parentId": "288",
"id": "290"
},
"291": {
- "path": "/innovation/my-dataset",
- "parentId": "286",
+ "path": "/innovation/mirror",
+ "parentId": "288",
"id": "291"
},
"292": {
- "path": "/innovation/my-mirror",
- "parentId": "286",
+ "path": "/innovation/my-project",
+ "parentId": "288",
"id": "292"
},
"293": {
- "path": "/innovation/project/create",
- "parentId": "286",
+ "path": "/innovation/my-dataset",
+ "parentId": "288",
"id": "293"
},
"294": {
- "path": "/innovation/project/edit/:id",
- "parentId": "286",
+ "path": "/innovation/my-mirror",
+ "parentId": "288",
"id": "294"
},
"295": {
- "path": "/innovation/project/detail/:taskId",
- "parentId": "286",
+ "path": "/innovation/project/create",
+ "parentId": "288",
"id": "295"
},
"296": {
- "path": "/tasks",
- "parentId": "1",
+ "path": "/innovation/project/edit/:id",
+ "parentId": "288",
"id": "296"
},
"297": {
- "path": "/tasks/:taskId",
- "exact": true,
- "parentId": "296",
+ "path": "/innovation/project/detail/:taskId",
+ "parentId": "288",
"id": "297"
},
"298": {
- "path": "/tasks/:identifier/jupyter/",
- "exact": true,
- "parentId": "296",
+ "path": "/tasks",
+ "parentId": "1",
"id": "298"
},
"299": {
- "path": "/tasks/:courseId/:homeworkId/:taskId",
+ "path": "/tasks/:taskId",
"exact": true,
- "parentId": "296",
+ "parentId": "298",
"id": "299"
},
"300": {
- "path": "/tasks/jupyter/:courseId/:homeworkId/:identifier",
+ "path": "/tasks/:identifier/jupyter/",
"exact": true,
- "parentId": "296",
+ "parentId": "298",
"id": "300"
},
"301": {
- "path": "/tasks/:courseId/:exerciseId/:taskId/exercise",
+ "path": "/tasks/:courseId/:homeworkId/:taskId",
"exact": true,
- "parentId": "296",
+ "parentId": "298",
"id": "301"
},
"302": {
- "path": "/myproblems",
- "parentId": "1",
+ "path": "/tasks/jupyter/:courseId/:homeworkId/:identifier",
+ "exact": true,
+ "parentId": "298",
"id": "302"
},
"303": {
- "path": "/myproblems/:id/record-detail/:submitId",
+ "path": "/tasks/:courseId/:exerciseId/:taskId/exercise",
"exact": true,
- "parentId": "302",
+ "parentId": "298",
"id": "303"
},
"304": {
- "path": "/myproblems/:id",
- "exact": true,
- "parentId": "302",
+ "path": "/myproblems",
+ "parentId": "1",
"id": "304"
},
"305": {
- "path": "/account",
- "parentId": "1",
+ "path": "/myproblems/:id/record-detail/:submitId",
+ "exact": true,
+ "parentId": "304",
"id": "305"
},
"306": {
- "path": "/account",
- "parentId": "305",
+ "path": "/myproblems/:id",
+ "exact": true,
+ "parentId": "304",
"id": "306"
},
"307": {
- "path": "/account/profile",
- "parentId": "306",
+ "path": "/account",
+ "parentId": "1",
"id": "307"
},
"308": {
- "path": "/account/profile/edit",
- "parentId": "306",
+ "path": "/account",
+ "parentId": "307",
"id": "308"
},
"309": {
- "path": "/account/certification",
- "parentId": "306",
+ "path": "/account/profile",
+ "parentId": "308",
"id": "309"
},
"310": {
- "path": "/account/secure",
- "parentId": "306",
+ "path": "/account/profile/edit",
+ "parentId": "308",
"id": "310"
},
"311": {
- "path": "/account/binding",
- "parentId": "306",
+ "path": "/account/certification",
+ "parentId": "308",
"id": "311"
},
"312": {
- "path": "/account/Results",
- "parentId": "306",
+ "path": "/account/secure",
+ "parentId": "308",
"id": "312"
},
"313": {
- "path": "/ch",
- "parentId": "1",
+ "path": "/account/binding",
+ "parentId": "308",
"id": "313"
},
"314": {
- "path": "/ch/rest/edit/:categoryId/:id",
- "exact": true,
- "parentId": "313",
+ "path": "/account/Results",
+ "parentId": "308",
"id": "314"
},
"315": {
- "path": "/ch/rest/",
- "exact": true,
- "parentId": "313",
+ "path": "/ch",
+ "parentId": "1",
"id": "315"
},
"316": {
- "path": "/ch/rest/:id",
+ "path": "/ch/rest/edit/:categoryId/:id",
"exact": true,
- "parentId": "313",
+ "parentId": "315",
"id": "316"
},
"317": {
- "path": "/order",
- "parentId": "1",
+ "path": "/ch/rest/",
+ "exact": true,
+ "parentId": "315",
"id": "317"
},
"318": {
- "path": "/order",
- "parentId": "317",
+ "path": "/ch/rest/:id",
+ "exact": true,
+ "parentId": "315",
"id": "318"
},
"319": {
- "path": "/order/:courseId/information",
- "parentId": "317",
+ "path": "/order",
+ "parentId": "1",
"id": "319"
},
"320": {
- "path": "/order/:courseId/pay",
- "parentId": "317",
+ "path": "/order",
+ "parentId": "319",
"id": "320"
},
"321": {
- "path": "/order/:orderNum/result",
- "parentId": "317",
+ "path": "/order/:courseId/information",
+ "parentId": "319",
"id": "321"
},
"322": {
- "path": "/messages",
- "parentId": "1",
+ "path": "/order/:courseId/pay",
+ "parentId": "319",
"id": "322"
},
"323": {
- "path": "/messages/:userId/user_tidings",
- "parentId": "322",
+ "path": "/order/:orderNum/result",
+ "parentId": "319",
"id": "323"
},
"324": {
- "path": "/messages/:userId/private_messages",
- "parentId": "322",
+ "path": "/messages",
+ "parentId": "1",
"id": "324"
},
"325": {
- "path": "/messages/:userId/message_detail",
- "parentId": "322",
+ "path": "/messages/:userId/user_tidings",
+ "parentId": "324",
"id": "325"
},
"326": {
- "path": "/vtrs",
- "parentId": "1",
+ "path": "/messages/:userId/private_messages",
+ "parentId": "324",
"id": "326"
},
"327": {
- "path": "/vtrs/:virtual_spacesId",
- "parentId": "326",
+ "path": "/messages/:userId/message_detail",
+ "parentId": "324",
"id": "327"
},
"328": {
- "path": "/vtrs/:virtual_spacesId/experiment",
- "parentId": "327",
+ "path": "/vtrs",
+ "parentId": "1",
"id": "328"
},
"329": {
- "path": "/vtrs/:virtual_spacesId/announcement",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId",
+ "parentId": "328",
"id": "329"
},
"330": {
- "path": "/vtrs/:virtual_spacesId/announcement/add",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/experiment",
+ "parentId": "329",
"id": "330"
},
"331": {
- "path": "/vtrs/:virtual_spacesId/announcement/:id/edit",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/announcement",
+ "parentId": "329",
"id": "331"
},
"332": {
- "path": "/vtrs/:virtual_spacesId/announcement/:id/detail",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/announcement/add",
+ "parentId": "329",
"id": "332"
},
"333": {
- "path": "/vtrs/:virtual_spacesId/survey",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/announcement/:id/edit",
+ "parentId": "329",
"id": "333"
},
"334": {
- "path": "/vtrs/:virtual_spacesId/survey/:id/detail",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/announcement/:id/detail",
+ "parentId": "329",
"id": "334"
},
"335": {
- "path": "/vtrs/:virtual_spacesId/knowledge",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/survey",
+ "parentId": "329",
"id": "335"
},
"336": {
- "path": "/vtrs/:virtual_spacesId/knowledge/add",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/survey/:id/detail",
+ "parentId": "329",
"id": "336"
},
"337": {
- "path": "/vtrs/:virtual_spacesId/knowledge/:id/edit",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/knowledge",
+ "parentId": "329",
"id": "337"
},
"338": {
- "path": "/vtrs/:virtual_spacesId/material",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/knowledge/add",
+ "parentId": "329",
"id": "338"
},
"339": {
- "path": "/vtrs/:virtual_spacesId/material/:id/detail",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/knowledge/:id/edit",
+ "parentId": "329",
"id": "339"
},
"340": {
- "path": "/vtrs/:virtual_spacesId/settings",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/material",
+ "parentId": "329",
"id": "340"
},
"341": {
- "path": "/vtrs/:virtual_spacesId/resources",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/material/:id/detail",
+ "parentId": "329",
"id": "341"
},
"342": {
- "path": "/vtrs/:virtual_spacesId/resources/:id/detail",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/settings",
+ "parentId": "329",
"id": "342"
},
"343": {
- "path": "/vtrs/:virtual_spacesId/Plan",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/resources",
+ "parentId": "329",
"id": "343"
},
"344": {
- "path": "/vtrs/:virtual_spacesId/plan/:id/detail",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/resources/:id/detail",
+ "parentId": "329",
"id": "344"
},
"345": {
- "path": "/vtrs/:virtual_spacesId/homepage",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/Plan",
+ "parentId": "329",
"id": "345"
},
"346": {
- "path": "/vtrs/:virtual_spacesId/*",
- "parentId": "327",
+ "path": "/vtrs/:virtual_spacesId/plan/:id/detail",
+ "parentId": "329",
"id": "346"
},
"347": {
- "path": "/101",
- "parentId": "1",
+ "path": "/vtrs/:virtual_spacesId/homepage",
+ "parentId": "329",
"id": "347"
},
"348": {
- "path": "/101/:virtual_spacesId",
- "parentId": "347",
+ "path": "/vtrs/:virtual_spacesId/*",
+ "parentId": "329",
"id": "348"
},
"349": {
- "path": "/101/:virtual_spacesId/experiment",
- "parentId": "348",
+ "path": "/101",
+ "parentId": "1",
"id": "349"
},
"350": {
- "path": "/101/:virtual_spacesId/announcement",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId",
+ "parentId": "349",
"id": "350"
},
"351": {
- "path": "/101/:virtual_spacesId/announcement/add",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/experiment",
+ "parentId": "350",
"id": "351"
},
"352": {
- "path": "/101/:virtual_spacesId/announcement/:id/edit",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/announcement",
+ "parentId": "350",
"id": "352"
},
"353": {
- "path": "/101/:virtual_spacesId/announcement/:id/detail",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/announcement/add",
+ "parentId": "350",
"id": "353"
},
"354": {
- "path": "/101/:virtual_spacesId/survey",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/announcement/:id/edit",
+ "parentId": "350",
"id": "354"
},
"355": {
- "path": "/101/:virtual_spacesId/survey/:id/detail",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/announcement/:id/detail",
+ "parentId": "350",
"id": "355"
},
"356": {
- "path": "/101/:virtual_spacesId/knowledge",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/survey",
+ "parentId": "350",
"id": "356"
},
"357": {
- "path": "/101/:virtual_spacesId/knowledge/add",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/survey/:id/detail",
+ "parentId": "350",
"id": "357"
},
"358": {
- "path": "/101/:virtual_spacesId/knowledge/:id/edit",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/knowledge",
+ "parentId": "350",
"id": "358"
},
"359": {
- "path": "/101/:virtual_spacesId/material",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/knowledge/add",
+ "parentId": "350",
"id": "359"
},
"360": {
- "path": "/101/:virtual_spacesId/material/:id/detail",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/knowledge/:id/edit",
+ "parentId": "350",
"id": "360"
},
"361": {
- "path": "/101/:virtual_spacesId/settings",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/material",
+ "parentId": "350",
"id": "361"
},
"362": {
- "path": "/101/:virtual_spacesId/resources",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/material/:id/detail",
+ "parentId": "350",
"id": "362"
},
"363": {
- "path": "/101/:virtual_spacesId/resources/:id/detail",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/settings",
+ "parentId": "350",
"id": "363"
},
"364": {
- "path": "/101/:virtual_spacesId/Plan",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/resources",
+ "parentId": "350",
"id": "364"
},
"365": {
- "path": "/101/:virtual_spacesId/plan/:id/detail",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/resources/:id/detail",
+ "parentId": "350",
"id": "365"
},
"366": {
- "path": "/101/:virtual_spacesId/homepage",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/Plan",
+ "parentId": "350",
"id": "366"
},
"367": {
- "path": "/101/:virtual_spacesId/*",
- "parentId": "348",
+ "path": "/101/:virtual_spacesId/plan/:id/detail",
+ "parentId": "350",
"id": "367"
},
"368": {
- "path": "/educoder-demo",
- "exact": true,
- "parentId": "1",
+ "path": "/101/:virtual_spacesId/homepage",
+ "parentId": "350",
"id": "368"
},
"369": {
- "path": "/training",
- "parentId": "1",
+ "path": "/101/:virtual_spacesId/*",
+ "parentId": "350",
"id": "369"
},
"370": {
- "name": "精培课程",
- "path": "/training",
- "parentId": "369",
+ "path": "/educoder-demo",
+ "exact": true,
+ "parentId": "1",
"id": "370"
},
"371": {
- "path": "/otherlogin",
- "exact": true,
+ "path": "/training",
"parentId": "1",
"id": "371"
},
"372": {
- "path": "/otherloginqq",
- "exact": true,
- "parentId": "1",
+ "name": "精培课程",
+ "path": "/training",
+ "parentId": "371",
"id": "372"
},
"373": {
- "path": "/otherloginstart",
+ "path": "/otherlogin",
"exact": true,
"parentId": "1",
"id": "373"
},
"374": {
- "path": "/login",
+ "path": "/otherloginqq",
+ "exact": true,
"parentId": "1",
"id": "374"
},
"375": {
- "path": "/login",
- "parentId": "374",
+ "path": "/otherloginstart",
+ "exact": true,
+ "parentId": "1",
"id": "375"
},
"376": {
- "path": "/user",
+ "path": "/login",
"parentId": "1",
"id": "376"
},
"377": {
- "path": "/user/login",
+ "path": "/login",
"parentId": "376",
"id": "377"
},
"378": {
- "path": "/user/register",
- "parentId": "376",
+ "path": "/user",
+ "parentId": "1",
"id": "378"
},
"379": {
- "path": "/user/reset-password",
- "parentId": "376",
+ "path": "/user/login",
+ "parentId": "378",
"id": "379"
},
"380": {
- "path": "/colleges",
- "parentId": "1",
+ "path": "/user/register",
+ "parentId": "378",
"id": "380"
},
"381": {
- "path": "/colleges/:id/statistics",
- "parentId": "380",
+ "path": "/user/reset-password",
+ "parentId": "378",
"id": "381"
},
"382": {
- "path": "/help",
+ "path": "/colleges",
"parentId": "1",
"id": "382"
},
"383": {
- "path": "/help/:id",
+ "path": "/colleges/:id/statistics",
"parentId": "382",
"id": "383"
},
"384": {
- "path": "/video",
+ "path": "/help",
"parentId": "1",
"id": "384"
},
"385": {
- "path": "/video/:videoId",
+ "path": "/help/:id",
"parentId": "384",
"id": "385"
},
"386": {
- "path": "/terminal",
+ "path": "/video",
"parentId": "1",
"id": "386"
},
"387": {
- "path": "/report/:taskId/:game_report_id",
- "parentId": "1",
+ "path": "/video/:videoId",
+ "parentId": "386",
"id": "387"
},
"388": {
- "path": "/",
+ "path": "/terminal",
"parentId": "1",
"id": "388"
},
"389": {
- "path": "/",
- "exact": true,
- "parentId": "388",
+ "path": "/report/:taskId/:game_report_id",
+ "parentId": "1",
"id": "389"
},
"390": {
- "path": "/api/*",
- "exact": true,
- "parentId": "388",
+ "path": "/",
+ "parentId": "1",
"id": "390"
},
"391": {
- "path": "/search",
+ "path": "/",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "391"
},
"392": {
- "path": "/moop_cases",
+ "path": "/api/*",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "392"
},
"393": {
- "path": "/moop_cases/new",
+ "path": "/search",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "393"
},
"394": {
- "path": "/moop_cases/:caseId",
+ "path": "/moop_cases",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "394"
},
"395": {
- "path": "/moop_cases/:caseId/edit",
+ "path": "/moop_cases/new",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "395"
},
"396": {
- "path": "/moop_cases/:caseId/publish-success",
+ "path": "/moop_cases/:caseId",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "396"
},
"397": {
- "path": "/randompaper",
+ "path": "/moop_cases/:caseId/edit",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "397"
},
"398": {
- "path": "/randompaper/edit/:id",
+ "path": "/moop_cases/:caseId/publish-success",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "398"
},
"399": {
- "path": "/randompaper/detail/:id",
+ "path": "/randompaper",
"exact": true,
- "parentId": "388",
+ "parentId": "390",
"id": "399"
},
"400": {
- "path": "/403",
- "parentId": "388",
+ "path": "/randompaper/edit/:id",
+ "exact": true,
+ "parentId": "390",
"id": "400"
},
"401": {
- "path": "/500",
- "parentId": "388",
+ "path": "/randompaper/detail/:id",
+ "exact": true,
+ "parentId": "390",
"id": "401"
},
"402": {
- "path": "/404",
- "parentId": "388",
+ "path": "/403",
+ "parentId": "390",
"id": "402"
},
"403": {
- "path": "/iwce",
- "parentId": "388",
+ "path": "/500",
+ "parentId": "390",
"id": "403"
},
"404": {
- "path": "/Activities",
- "parentId": "388",
+ "path": "/404",
+ "parentId": "390",
"id": "404"
},
"405": {
- "path": "/iwce/:itemname",
- "parentId": "388",
+ "path": "/iwce",
+ "parentId": "390",
"id": "405"
},
"406": {
- "path": "/hpc-course",
- "parentId": "388",
+ "path": "/Activities",
+ "parentId": "390",
"id": "406"
},
"407": {
- "path": "/user_agents",
- "parentId": "388",
+ "path": "/iwce/:itemname",
+ "parentId": "390",
"id": "407"
},
"408": {
- "path": "/three",
- "parentId": "388",
+ "path": "/hpc-course",
+ "parentId": "390",
"id": "408"
},
"409": {
- "path": "/introduction",
- "parentId": "388",
+ "path": "/user_agents",
+ "parentId": "390",
"id": "409"
},
"410": {
- "path": "/chatgpt",
- "parentId": "388",
+ "path": "/three",
+ "parentId": "390",
"id": "410"
},
"411": {
- "path": "/*",
- "parentId": "388",
+ "path": "/introduction",
+ "parentId": "390",
"id": "411"
},
+ "412": {
+ "path": "/chatgpt",
+ "parentId": "390",
+ "id": "412"
+ },
+ "413": {
+ "path": "/*",
+ "parentId": "390",
+ "id": "413"
+ },
"@@/global-layout": {
"id": "@@/global-layout",
"path": "/",
@@ -123930,16 +124543,16 @@ function _getRoutes() {
return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
}),
'2': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'3': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Paperlibrary__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(36579), __webpack_require__.e(79256), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(60696), __webpack_require__.e(79086), __webpack_require__.e(54862)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/index.tsx */ 26127));
}),
'4': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Paperlibrary__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(93260)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Add/index.tsx */ 47606));
+ return Promise.all(/*! import() | p__Paperlibrary__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(93260)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Add/index.tsx */ 47606));
}),
'5': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Paperlibrary__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(93260)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Add/index.tsx */ 47606));
+ return Promise.all(/*! import() | p__Paperlibrary__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(93260)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Add/index.tsx */ 47606));
}),
'6': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Paperlibrary__See__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(36579), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(60696), __webpack_require__.e(79086), __webpack_require__.e(53247)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/See/index.tsx */ 7570));
@@ -123951,7 +124564,7 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Paperlibrary__Random__ExchangeFromProblemSet__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(92401), __webpack_require__.e(22842), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(12034), __webpack_require__.e(11545)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/ExchangeFromProblemSet/index.tsx */ 40945));
}),
'9': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'10': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Paths__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(20085), __webpack_require__.e(20812), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(86052)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paths/Index/index.tsx */ 18117));
@@ -123966,7 +124579,7 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Guidance__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(50869)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Guidance/index.tsx */ 62744));
}),
'14': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Paths__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(50976), __webpack_require__.e(78617), __webpack_require__.e(80599), __webpack_require__.e(89777), __webpack_require__.e(69548), __webpack_require__.e(3502), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(8348), __webpack_require__.e(23332)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paths/Detail/[id].tsx */ 86008));
+ return Promise.all(/*! import() | p__Paths__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(50976), __webpack_require__.e(78617), __webpack_require__.e(80599), __webpack_require__.e(89777), __webpack_require__.e(69548), __webpack_require__.e(3502), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(8348), __webpack_require__.e(23332)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paths/Detail/[id].tsx */ 86008));
}),
'15': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Paths__Detail__Statistics__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(50976), __webpack_require__.e(47501), __webpack_require__.e(4977), __webpack_require__.e(34601)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paths/Detail/Statistics/index.tsx */ 41046));
@@ -123975,7 +124588,7 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Paths__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(78617), __webpack_require__.e(93562), __webpack_require__.e(8280), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(12325), __webpack_require__.e(28982)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paths/New/index.tsx */ 81353));
}),
'17': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'18': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(56885), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(26685)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Index/index.tsx */ 22635));
@@ -124020,13 +124633,13 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(65814), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(71450)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ShixunHomeworks/Commitsummary/index.tsx */ 47765));
}),
'32': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__GroupHomework__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(48764), __webpack_require__.e(87939), __webpack_require__.e(70335), __webpack_require__.e(14074), __webpack_require__.e(8691), __webpack_require__.e(38448), __webpack_require__.e(10195)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/GroupHomework/Detail/index.tsx */ 82080));
+ return Promise.all(/*! import() | p__Classrooms__Lists__GroupHomework__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(48764), __webpack_require__.e(87939), __webpack_require__.e(70335), __webpack_require__.e(14074), __webpack_require__.e(8691), __webpack_require__.e(38448), __webpack_require__.e(10195)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/GroupHomework/Detail/index.tsx */ 82080));
}),
'33': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(48764), __webpack_require__.e(87939), __webpack_require__.e(70335), __webpack_require__.e(44851), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(38448), __webpack_require__.e(47015), __webpack_require__.e(93668)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/Detail/index.tsx */ 59212));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(48764), __webpack_require__.e(87939), __webpack_require__.e(70335), __webpack_require__.e(44851), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(38448), __webpack_require__.e(47015), __webpack_require__.e(93668)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/Detail/index.tsx */ 59212));
}),
'34': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__Review__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(70335), __webpack_require__.e(37807), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(41297), __webpack_require__.e(52338)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/Review/index.tsx */ 51330));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__Review__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(70335), __webpack_require__.e(37807), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(41297), __webpack_require__.e(52338)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/Review/index.tsx */ 51330));
}),
'35': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__GroupHomework__Review__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(70335), __webpack_require__.e(36183), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(41297), __webpack_require__.e(14662)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/GroupHomework/Review/index.tsx */ 38117));
@@ -124041,16 +124654,16 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Detail__components__DuplicateChecking__CheckDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(8691), __webpack_require__.e(85297)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Detail/components/DuplicateChecking/CheckDetail/index.tsx */ 51450));
}),
'39': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(50976), __webpack_require__.e(55806), __webpack_require__.e(66012), __webpack_require__.e(99160), __webpack_require__.e(42977), __webpack_require__.e(39437), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(38448), __webpack_require__.e(20139), __webpack_require__.e(37110), __webpack_require__.e(54164)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Detail/index.tsx */ 57661));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(50976), __webpack_require__.e(55806), __webpack_require__.e(66012), __webpack_require__.e(99160), __webpack_require__.e(42977), __webpack_require__.e(39437), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(38448), __webpack_require__.e(20139), __webpack_require__.e(37110), __webpack_require__.e(54164)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Detail/index.tsx */ 57661));
}),
'40': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Problemset__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(92401), __webpack_require__.e(22842), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(12034), __webpack_require__.e(14599)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/index.tsx */ 31283));
}),
'41': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__ImitateAnswer__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(55806), __webpack_require__.e(24192), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(78806), __webpack_require__.e(14889)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/ImitateAnswer/index.tsx */ 87746));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__ImitateAnswer__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(55806), __webpack_require__.e(24192), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(78806), __webpack_require__.e(14889)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/ImitateAnswer/index.tsx */ 87746));
}),
'42': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Answer__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(24192), __webpack_require__.e(79361), __webpack_require__.e(61193), __webpack_require__.e(13711), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(78806), __webpack_require__.e(14105)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Answer/index.tsx */ 97343));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Answer__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(24192), __webpack_require__.e(79361), __webpack_require__.e(61193), __webpack_require__.e(13711), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(78806), __webpack_require__.e(14105)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Answer/index.tsx */ 97343));
}),
'43': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Notice__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(30589), __webpack_require__.e(17482)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Notice/index.tsx */ 48073));
@@ -124062,25 +124675,25 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Paperlibrary__Random__PreviewEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(42977), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(20139), __webpack_require__.e(90337)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/PreviewEdit/index.tsx */ 96382));
}),
'46': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(292)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Add/index.tsx */ 22292));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(292)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Add/index.tsx */ 22292));
}),
'47': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(292)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Add/index.tsx */ 22292));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(78617), __webpack_require__.e(66012), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(97338), __webpack_require__.e(8691), __webpack_require__.e(292)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Add/index.tsx */ 22292));
}),
'48': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__ReviewGroup__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(24192), __webpack_require__.e(12059), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(45992)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/ReviewGroup/index.tsx */ 28927));
}),
'49': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Review__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(29730), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(78085)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Review/index.tsx */ 48634));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Review__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(29730), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(78085)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Review/index.tsx */ 48634));
}),
'50': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Review__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(29730), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(78085)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Review/index.tsx */ 48634));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Review__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(29730), __webpack_require__.e(8691), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(78085)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Review/index.tsx */ 48634));
}),
'51': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Export__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(88994), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(48431)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Export/index.tsx */ 45437));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Export__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(88994), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(48431)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Export/index.tsx */ 45437));
}),
'52': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Export__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(88994), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(48431)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Export/index.tsx */ 45437));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__Export__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(48764), __webpack_require__.e(80599), __webpack_require__.e(87939), __webpack_require__.e(88994), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(48431)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/Export/index.tsx */ 45437));
}),
'53': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Exercise__DetailedAnalysis__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(95125)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Exercise/DetailedAnalysis/index.tsx */ 35951));
@@ -124137,7 +124750,7 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Polls__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(8930), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(52546), __webpack_require__.e(28723)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Polls/Edit/index.tsx */ 52546));
}),
'71': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Polls__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(23805), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(12034), __webpack_require__.e(17622)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Polls/Detail/index.tsx */ 91405));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Polls__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(23805), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(12034), __webpack_require__.e(17622)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Polls/Detail/index.tsx */ 91405));
}),
'72': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Polls__Answer__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(24192), __webpack_require__.e(52137), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(65148)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Polls/Answer/index.tsx */ 15461));
@@ -124206,13 +124819,13 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(92785), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(15319)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ProgramHomework/Detail/answer/Detail/index.tsx */ 23462));
}),
'94': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__ShixunDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(66012), __webpack_require__.e(27703), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93282)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/ShixunDetail/index.tsx */ 1313));
+ return Promise.all(/*! import() | layouts__ShixunDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(66012), __webpack_require__.e(27703), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93282)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/ShixunDetail/index.tsx */ 1313));
}),
'95': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__ShixunHomeworks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(20549), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(38448), __webpack_require__.e(60696), __webpack_require__.e(66550), __webpack_require__.e(7852)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ShixunHomeworks/index.tsx */ 51198));
+ return Promise.all(/*! import() | p__Classrooms__Lists__ShixunHomeworks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(20549), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(38448), __webpack_require__.e(60696), __webpack_require__.e(66550), __webpack_require__.e(7852)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ShixunHomeworks/index.tsx */ 51198));
}),
'96': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__ShixunHomeworks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(20549), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(38448), __webpack_require__.e(60696), __webpack_require__.e(66550), __webpack_require__.e(7852)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ShixunHomeworks/index.tsx */ 51198));
+ return Promise.all(/*! import() | p__Classrooms__Lists__ShixunHomeworks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(20549), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(38448), __webpack_require__.e(60696), __webpack_require__.e(66550), __webpack_require__.e(7852)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ShixunHomeworks/index.tsx */ 51198));
}),
'97': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Graduation__Topics__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(64057), __webpack_require__.e(38057), __webpack_require__.e(4977), __webpack_require__.e(85048)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Graduation/Topics/index.tsx */ 27725));
@@ -124236,16 +124849,16 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Polls__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(42102), __webpack_require__.e(23805), __webpack_require__.e(31958), __webpack_require__.e(4977), __webpack_require__.e(13355)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Polls/index.tsx */ 64355));
}),
'104': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(38448), __webpack_require__.e(47015), __webpack_require__.e(49890)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/index.tsx */ 97380));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(38448), __webpack_require__.e(47015), __webpack_require__.e(49890)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/index.tsx */ 97380));
}),
'105': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(38448), __webpack_require__.e(47015), __webpack_require__.e(49890)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/index.tsx */ 97380));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CommonHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(38448), __webpack_require__.e(47015), __webpack_require__.e(49890)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CommonHomework/index.tsx */ 97380));
}),
'106': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__GroupHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(83935)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/GroupHomework/index.tsx */ 46978));
+ return Promise.all(/*! import() | p__Classrooms__Lists__GroupHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(83935)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/GroupHomework/index.tsx */ 46978));
}),
'107': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__GroupHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(83935)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/GroupHomework/index.tsx */ 46978));
+ return Promise.all(/*! import() | p__Classrooms__Lists__GroupHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(15395), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(83935)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/GroupHomework/index.tsx */ 46978));
}),
'108': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Teachers__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(2282), __webpack_require__.e(23607), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(68014)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Teachers/index.tsx */ 19456));
@@ -124257,22 +124870,22 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Assistant__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(2282), __webpack_require__.e(12034), __webpack_require__.e(33356)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Assistant/index.tsx */ 3453));
}),
'111': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__ProgramHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(3395), __webpack_require__.e(4977), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(6788)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ProgramHomework/index.tsx */ 94693));
+ return Promise.all(/*! import() | p__Classrooms__Lists__ProgramHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(3395), __webpack_require__.e(4977), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(6788)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ProgramHomework/index.tsx */ 94693));
}),
'112': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__ProgramHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(3395), __webpack_require__.e(4977), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(6788)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ProgramHomework/index.tsx */ 94693));
+ return Promise.all(/*! import() | p__Classrooms__Lists__ProgramHomework__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(53362), __webpack_require__.e(3502), __webpack_require__.e(4390), __webpack_require__.e(3395), __webpack_require__.e(4977), __webpack_require__.e(38448), __webpack_require__.e(66550), __webpack_require__.e(6788)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/ProgramHomework/index.tsx */ 94693));
}),
'113': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Engineering__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72693), __webpack_require__.e(31962)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Engineering/index.tsx */ 67325));
}),
'114': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Attendance__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(78397), __webpack_require__.e(50976), __webpack_require__.e(48764), __webpack_require__.e(93562), __webpack_require__.e(83520), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(12034), __webpack_require__.e(28435)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attendance/index.tsx */ 83522));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Attendance__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(78397), __webpack_require__.e(50976), __webpack_require__.e(48764), __webpack_require__.e(93562), __webpack_require__.e(83520), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(12034), __webpack_require__.e(28435)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attendance/index.tsx */ 83522));
}),
'115': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Attendance__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(78397), __webpack_require__.e(50976), __webpack_require__.e(48764), __webpack_require__.e(93562), __webpack_require__.e(83520), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(12034), __webpack_require__.e(28435)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attendance/index.tsx */ 83522));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Attendance__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(78397), __webpack_require__.e(50976), __webpack_require__.e(48764), __webpack_require__.e(93562), __webpack_require__.e(83520), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(12034), __webpack_require__.e(28435)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attendance/index.tsx */ 83522));
}),
'116': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Attendance__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(79361), __webpack_require__.e(4977), __webpack_require__.e(34093)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attendance/Detail/index.tsx */ 58297));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Attendance__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(79361), __webpack_require__.e(4977), __webpack_require__.e(34093)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attendance/Detail/index.tsx */ 58297));
}),
'117': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Announcement__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(68922), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(21265)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Announcement/index.tsx */ 91671));
@@ -124281,22 +124894,22 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Announcement__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(68922), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(21265)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Announcement/index.tsx */ 91671));
}),
'119': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__OnlineLearning__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(69548), __webpack_require__.e(66012), __webpack_require__.e(52424), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(68827)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/OnlineLearning/index.tsx */ 14665));
+ return Promise.all(/*! import() | p__Classrooms__Lists__OnlineLearning__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(69548), __webpack_require__.e(66012), __webpack_require__.e(52424), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(68827)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/OnlineLearning/index.tsx */ 14665));
}),
'120': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__OnlineLearning__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(69548), __webpack_require__.e(66012), __webpack_require__.e(52424), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(68827)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/OnlineLearning/index.tsx */ 14665));
+ return Promise.all(/*! import() | p__Classrooms__Lists__OnlineLearning__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(69548), __webpack_require__.e(66012), __webpack_require__.e(52424), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(68827)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/OnlineLearning/index.tsx */ 14665));
}),
'121': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Attachment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(42102), __webpack_require__.e(46981), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(6758)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attachment/index.tsx */ 40915));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Attachment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(42102), __webpack_require__.e(46981), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(6758)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attachment/index.tsx */ 40915));
}),
'122': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Attachment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(42102), __webpack_require__.e(46981), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(6758)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attachment/index.tsx */ 40915));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Attachment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(42102), __webpack_require__.e(46981), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(6758)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Attachment/index.tsx */ 40915));
}),
'123': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Video__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(64398), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(20959), __webpack_require__.e(4977), __webpack_require__.e(8423), __webpack_require__.e(54836), __webpack_require__.e(75463), __webpack_require__.e(39332)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Video/index.tsx */ 25127));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Video__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(64398), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(20959), __webpack_require__.e(4977), __webpack_require__.e(8423), __webpack_require__.e(54836), __webpack_require__.e(75463), __webpack_require__.e(39332)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Video/index.tsx */ 25127));
}),
'124': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__Video__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(64398), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(20959), __webpack_require__.e(4977), __webpack_require__.e(8423), __webpack_require__.e(54836), __webpack_require__.e(75463), __webpack_require__.e(39332)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Video/index.tsx */ 25127));
+ return Promise.all(/*! import() | p__Classrooms__Lists__Video__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(64398), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(20959), __webpack_require__.e(4977), __webpack_require__.e(8423), __webpack_require__.e(54836), __webpack_require__.e(75463), __webpack_require__.e(39332)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Video/index.tsx */ 25127));
}),
'125': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Video__Statistics__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(62404), __webpack_require__.e(12034), __webpack_require__.e(64217)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Video/Statistics/index.tsx */ 86099));
@@ -124308,10 +124921,10 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Video__Statistics__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(60533)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Video/Statistics/Detail/index.tsx */ 88276));
}),
'128': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__LiveVideo__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(47054), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(67878)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/LiveVideo/index.tsx */ 75089));
+ return Promise.all(/*! import() | p__Classrooms__Lists__LiveVideo__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(47054), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(67878)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/LiveVideo/index.tsx */ 75089));
}),
'129': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__LiveVideo__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(47054), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(67878)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/LiveVideo/index.tsx */ 75089));
+ return Promise.all(/*! import() | p__Classrooms__Lists__LiveVideo__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(47054), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(67878)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/LiveVideo/index.tsx */ 75089));
}),
'130': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Video__Statistics__StudentDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(69944)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Video/Statistics/StudentDetail/index.tsx */ 2438));
@@ -124323,19 +124936,19 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Board__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(42102), __webpack_require__.e(12819), __webpack_require__.e(21104), __webpack_require__.e(4977), __webpack_require__.e(18302)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Board/index.tsx */ 1284));
}),
'133': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(87075), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(38634)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/List/index.tsx */ 30440));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(87075), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(38634)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/List/index.tsx */ 30440));
}),
'134': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(87075), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(38634)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/List/index.tsx */ 30440));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78397), __webpack_require__.e(93562), __webpack_require__.e(87075), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(38634)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/List/index.tsx */ 30440));
}),
'135': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(4977), __webpack_require__.e(87922)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/Detail/index.tsx */ 33344));
}),
'136': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__NotList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(93562), __webpack_require__.e(35449), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(61727)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/NotList/index.tsx */ 63919));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__NotList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(93562), __webpack_require__.e(35449), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(61727)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/NotList/index.tsx */ 63919));
}),
'137': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__NotList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(93562), __webpack_require__.e(35449), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(61727)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/NotList/index.tsx */ 63919));
+ return Promise.all(/*! import() | p__Classrooms__Lists__CourseGroup__NotList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(93562), __webpack_require__.e(35449), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(61727)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/CourseGroup/NotList/index.tsx */ 63919));
}),
'138': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Classrooms__Lists__Statistics__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(66422), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(31427)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Statistics/index.tsx */ 5809));
@@ -124368,28 +124981,28 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Classrooms__Lists__Template__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(34510), __webpack_require__.e(4977), __webpack_require__.e(15148)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Classrooms/Lists/Template/index.tsx */ 65123));
}),
'148': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'149': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Competitions__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(84685), __webpack_require__.e(12030), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(12034), __webpack_require__.e(30707), __webpack_require__.e(26883)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Index/index.tsx */ 92272));
+ return Promise.all(/*! import() | p__Competitions__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(80583), __webpack_require__.e(53585), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(12034), __webpack_require__.e(30707), __webpack_require__.e(26883)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Index/index.tsx */ 9353));
}),
'150': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Competitions__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(84685), __webpack_require__.e(12030), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(12034), __webpack_require__.e(30707), __webpack_require__.e(26883)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Index/index.tsx */ 92272));
+ return Promise.all(/*! import() | p__Competitions__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(80583), __webpack_require__.e(53585), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(12034), __webpack_require__.e(30707), __webpack_require__.e(26883)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Index/index.tsx */ 9353));
}),
'151': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Competitions__Exports__index */[__webpack_require__.e(80599), __webpack_require__.e(44449)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Exports/index.tsx */ 38429));
}),
'152': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Competitions__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(84685), __webpack_require__.e(12030), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(12034), __webpack_require__.e(30707), __webpack_require__.e(26883)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Index/index.tsx */ 92272));
+ return Promise.all(/*! import() | p__Competitions__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(80583), __webpack_require__.e(53585), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(12034), __webpack_require__.e(30707), __webpack_require__.e(26883)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Index/index.tsx */ 9353));
}),
'153': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Competitions__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(48764), __webpack_require__.e(40542), __webpack_require__.e(64398), __webpack_require__.e(87939), __webpack_require__.e(20085), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55693), __webpack_require__.e(72570)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Detail/index.tsx */ 11940));
+ return Promise.all(/*! import() | p__Competitions__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(48764), __webpack_require__.e(40542), __webpack_require__.e(64398), __webpack_require__.e(87939), __webpack_require__.e(20085), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55693), __webpack_require__.e(72570)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Detail/index.tsx */ 86434));
}),
'154': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Competitions__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(48764), __webpack_require__.e(40542), __webpack_require__.e(64398), __webpack_require__.e(87939), __webpack_require__.e(20085), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55693), __webpack_require__.e(72570)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Detail/index.tsx */ 11940));
+ return Promise.all(/*! import() | p__Competitions__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78617), __webpack_require__.e(48764), __webpack_require__.e(40542), __webpack_require__.e(64398), __webpack_require__.e(87939), __webpack_require__.e(20085), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55693), __webpack_require__.e(72570)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Detail/index.tsx */ 86434));
}),
'155': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Competitions__Entered__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(84567), __webpack_require__.e(30707), __webpack_require__.e(8787)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Entered/index.tsx */ 14997));
+ return Promise.all(/*! import() | p__Competitions__Entered__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(48106), __webpack_require__.e(30707), __webpack_require__.e(8787)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Entered/index.tsx */ 14997));
}),
'156': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Competitions__Update__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(67851), __webpack_require__.e(45650)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Update/index.tsx */ 88306));
@@ -124398,658 +125011,658 @@ function _getRoutes() {
return Promise.all(/*! import() | p__Competitions__Entered__Assembly__TeamDateil */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(36483), __webpack_require__.e(81799)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Entered/Assembly/TeamDateil.tsx */ 26491));
}),
'158': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__Competitions__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(67851), __webpack_require__.e(4525), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(55693), __webpack_require__.e(38797)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Competitions/Edit/index.tsx */ 19174));
}),
'159': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__Forums__Index__redirect */ 28639).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/Index/redirect.tsx */ 81577));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'160': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Forums__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(97073), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92983)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/Index/index.tsx */ 25113));
+ return __webpack_require__.e(/*! import() | p__Forums__Index__redirect */ 28639).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/Index/redirect.tsx */ 81577));
}),
'161': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Forums__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(88975), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(74264)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/New/index.tsx */ 40266));
+ return Promise.all(/*! import() | p__Forums__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(97073), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92983)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/Index/index.tsx */ 25113));
}),
'162': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Forums__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(88975), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(74264)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/New/index.tsx */ 40266));
}),
'163': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Forums__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(51326), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(80508)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/Detail/[id].tsx */ 49190));
+ return Promise.all(/*! import() | p__Forums__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(88975), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(74264)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/New/index.tsx */ 40266));
}),
'164': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__Forums__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(51326), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(80508)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Forums/Detail/[id].tsx */ 49190));
}),
'165': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problemset__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(92401), __webpack_require__.e(22842), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(12034), __webpack_require__.e(14599)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/index.tsx */ 31283));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'166': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problemset__NewItem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(78617), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(90465), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(41953)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/NewItem/index.tsx */ 177));
+ return Promise.all(/*! import() | p__Problemset__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(92401), __webpack_require__.e(22842), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(12034), __webpack_require__.e(14599)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/index.tsx */ 31283));
}),
'167': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problemset__NewItem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(78617), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(90465), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(41953)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/NewItem/index.tsx */ 177));
+ return Promise.all(/*! import() | p__Problemset__NewItem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(78617), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(90465), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(41953)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/NewItem/index.tsx */ 177));
}),
'168': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problemset__Preview__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(66012), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(11581)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/Preview/index.tsx */ 99953));
+ return Promise.all(/*! import() | p__Problemset__NewItem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(78617), __webpack_require__.e(12524), __webpack_require__.e(62055), __webpack_require__.e(90465), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(41953)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/NewItem/index.tsx */ 177));
}),
'169': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problemset__Preview__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(51370), __webpack_require__.e(78617), __webpack_require__.e(64144)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/Preview/New/index.tsx */ 16915));
+ return Promise.all(/*! import() | p__Problemset__Preview__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(66012), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(11581)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/Preview/index.tsx */ 99953));
}),
'170': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problemset__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(92401), __webpack_require__.e(22842), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(12034), __webpack_require__.e(14599)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/index.tsx */ 31283));
+ return Promise.all(/*! import() | p__Problemset__Preview__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(51370), __webpack_require__.e(78617), __webpack_require__.e(64144)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/Preview/New/index.tsx */ 16915));
}),
'171': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__Problemset__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(92401), __webpack_require__.e(22842), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(12034), __webpack_require__.e(14599)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problemset/index.tsx */ 31283));
}),
'172': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(5506), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(28782)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Index/index.tsx */ 30258));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'173': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Exports__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(80599), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(7884)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Exports/index.tsx */ 25601));
+ return Promise.all(/*! import() | p__Shixuns__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(5506), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(28782)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Index/index.tsx */ 30258));
}),
'174': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(67921), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(36723), __webpack_require__.e(97008)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/New/index.tsx */ 19088));
+ return Promise.all(/*! import() | p__Shixuns__Exports__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(80599), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(7884)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Exports/index.tsx */ 25601));
}),
'175': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__New__CreateImg__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(55806), __webpack_require__.e(65549)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/New/CreateImg/index.tsx */ 74734));
+ return Promise.all(/*! import() | p__Shixuns__New__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(67921), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(36723), __webpack_require__.e(97008)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/New/index.tsx */ 19088));
}),
'176': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__New__ImagePreview__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(55806), __webpack_require__.e(28510), __webpack_require__.e(31794), __webpack_require__.e(39430), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(99674)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/New/ImagePreview/index.tsx */ 29285));
+ return Promise.all(/*! import() | p__Shixuns__New__CreateImg__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(55806), __webpack_require__.e(65549)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/New/CreateImg/index.tsx */ 74734));
}),
'177': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Merge__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(29254), __webpack_require__.e(4977), __webpack_require__.e(55573)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Merge/index.tsx */ 39753));
+ return Promise.all(/*! import() | p__Shixuns__New__ImagePreview__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(55806), __webpack_require__.e(28510), __webpack_require__.e(31794), __webpack_require__.e(39430), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(99674)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/New/ImagePreview/index.tsx */ 29285));
}),
'178': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(66012), __webpack_require__.e(10226), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(18710), __webpack_require__.e(35643), __webpack_require__.e(56277)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/index.tsx */ 66518));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Merge__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(29254), __webpack_require__.e(4977), __webpack_require__.e(55573)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Merge/index.tsx */ 39753));
}),
'179': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Warehouse__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(72465), __webpack_require__.e(27277), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(18710), __webpack_require__.e(16328)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Warehouse/index.tsx */ 18710));
+ return Promise.all(/*! import() | p__Shixuns__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(66012), __webpack_require__.e(10226), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(18710), __webpack_require__.e(35643), __webpack_require__.e(56277)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/index.tsx */ 66518));
}),
'180': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(34180), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(77857)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/NewQuestion/index.tsx */ 75966));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Warehouse__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(72465), __webpack_require__.e(27277), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(18710), __webpack_require__.e(16328)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Warehouse/index.tsx */ 18710));
}),
'181': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(34180), __webpack_require__.e(49971), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(41657)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditQuestion/index.tsx */ 13856));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(34180), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(77857)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/NewQuestion/index.tsx */ 75966));
}),
'182': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(34180), __webpack_require__.e(49971), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(41657)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditQuestion/index.tsx */ 13856));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(34180), __webpack_require__.e(49971), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(41657)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditQuestion/index.tsx */ 13856));
}),
'183': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__NewPractice__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(34180), __webpack_require__.e(78895), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(94498)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/NewPractice/index.tsx */ 77218));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(34180), __webpack_require__.e(49971), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(41657)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditQuestion/index.tsx */ 13856));
}),
'184': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__NewPractice__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(34180), __webpack_require__.e(78895), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(94498)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/NewPractice/index.tsx */ 77218));
}),
'185': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(40542), __webpack_require__.e(34180), __webpack_require__.e(61905), __webpack_require__.e(8691), __webpack_require__.e(35574), __webpack_require__.e(49205)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditPracticeSetting/index.tsx */ 97976));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__NewPractice__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(34180), __webpack_require__.e(78895), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(94498)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/NewPractice/index.tsx */ 77218));
}),
'186': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(34180), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(21423)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditPracticeAnswer/index.tsx */ 36599));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(40542), __webpack_require__.e(34180), __webpack_require__.e(61905), __webpack_require__.e(8691), __webpack_require__.e(35574), __webpack_require__.e(49205)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditPracticeSetting/index.tsx */ 97976));
}),
'187': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(34180), __webpack_require__.e(71896), __webpack_require__.e(57614)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/RankingSetting/index.tsx */ 14317));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(34180), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(21423)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/EditPracticeAnswer/index.tsx */ 36599));
}),
'188': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(78617), __webpack_require__.e(26444), __webpack_require__.e(3482), __webpack_require__.e(60696), __webpack_require__.e(52875)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/[id].tsx */ 20142));
+ return Promise.all(/*! import() | p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(34180), __webpack_require__.e(71896), __webpack_require__.e(57614)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Edit/body/Level/Challenges/RankingSetting/index.tsx */ 14317));
}),
'189': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Challenges__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(50976), __webpack_require__.e(55806), __webpack_require__.e(53362), __webpack_require__.e(89777), __webpack_require__.e(26621), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(59133)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Challenges/index.tsx */ 61282));
+ return Promise.all(/*! import() | p__Shixuns__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(78617), __webpack_require__.e(26444), __webpack_require__.e(3482), __webpack_require__.e(60696), __webpack_require__.e(52875)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/[id].tsx */ 20142));
}),
'190': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Challenges__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(50976), __webpack_require__.e(55806), __webpack_require__.e(53362), __webpack_require__.e(89777), __webpack_require__.e(26621), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(59133)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Challenges/index.tsx */ 61282));
}),
'191': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
}),
'192': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Collaborators__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(77566), __webpack_require__.e(54285), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(93601), __webpack_require__.e(35643), __webpack_require__.e(25470)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Collaborators/index.tsx */ 83390));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
}),
'193': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Dataset__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(50976), __webpack_require__.e(40542), __webpack_require__.e(89777), __webpack_require__.e(23916), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(86541)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Dataset/index.tsx */ 97938));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Collaborators__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(72465), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(77566), __webpack_require__.e(54285), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(93601), __webpack_require__.e(35643), __webpack_require__.e(25470)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Collaborators/index.tsx */ 83390));
}),
'194': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Discuss__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4656), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(32925), __webpack_require__.e(22254)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Discuss/index.tsx */ 69638));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Dataset__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(50976), __webpack_require__.e(40542), __webpack_require__.e(89777), __webpack_require__.e(23916), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(86541)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Dataset/index.tsx */ 97938));
}),
'195': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__RankingList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(6685)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/RankingList/index.tsx */ 97513));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Discuss__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4656), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(32925), __webpack_require__.e(22254)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Discuss/index.tsx */ 69638));
}),
'196': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Settings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(67921), __webpack_require__.e(89106), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(16845)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Settings/index.tsx */ 90418));
+ return Promise.all(/*! import() | p__Shixuns__Detail__RankingList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(6685)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/RankingList/index.tsx */ 97513));
}),
'197': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__Commit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(4884)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/Commit/index.tsx */ 92041));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Settings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(78397), __webpack_require__.e(67921), __webpack_require__.e(89106), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(16845)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Settings/index.tsx */ 90418));
}),
'198': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__Commit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(4884)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/Commit/index.tsx */ 92041));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__Commit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(4884)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/Commit/index.tsx */ 92041));
}),
'199': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__UploadFile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(81148)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/UploadFile/index.tsx */ 91802));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__Commit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(4884)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/Commit/index.tsx */ 92041));
}),
'200': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Shixuns__Detail__Repository__UploadFile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(81148)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/UploadFile/index.tsx */ 91802));
}),
'201': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__AddFile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(43915), __webpack_require__.e(97046)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/AddFile/index.tsx */ 95479));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__UploadFile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(81148)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/UploadFile/index.tsx */ 91802));
}),
'202': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__Shixuns__Detail__Repository__AddFile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(43915), __webpack_require__.e(97046)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/AddFile/index.tsx */ 95479));
}),
'203': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__AddFile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(43915), __webpack_require__.e(97046)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/AddFile/index.tsx */ 95479));
}),
'204': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
}),
'205': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__AuditSituation__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4967), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(93601), __webpack_require__.e(45096)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/AuditSituation/index.tsx */ 97367));
+ return Promise.all(/*! import() | p__Shixuns__Detail__Repository__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(28119), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(98688)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/Repository/index.tsx */ 23074));
}),
'206': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Shixuns__Detail__ForkList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(19215)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/ForkList/index.tsx */ 69422));
+ return Promise.all(/*! import() | p__Shixuns__Detail__AuditSituation__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(99836), __webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4967), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(93601), __webpack_require__.e(45096)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/AuditSituation/index.tsx */ 97367));
}),
'207': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__Shixuns__Detail__ForkList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(19215)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Shixuns/Detail/ForkList/index.tsx */ 69422));
}),
'208': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Videos__Protocol__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(95176)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/Protocol/index.tsx */ 50360));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'209': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Videos__Success__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(19891)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/Success/index.tsx */ 33218));
+ return Promise.all(/*! import() | p__User__Detail__Videos__Protocol__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(95176)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/Protocol/index.tsx */ 50360));
}),
'210': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topicbank__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(53267), __webpack_require__.e(4977), __webpack_require__.e(98062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topicbank/index.tsx */ 1858));
+ return Promise.all(/*! import() | p__User__Detail__Videos__Success__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(19891)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/Success/index.tsx */ 33218));
}),
'211': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(72465), __webpack_require__.e(71514), __webpack_require__.e(93291), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(15402)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Detail/index.tsx */ 71683));
+ return Promise.all(/*! import() | p__User__Detail__Topicbank__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(53267), __webpack_require__.e(4977), __webpack_require__.e(98062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topicbank/index.tsx */ 1858));
}),
'212': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__User__Detail__Topics__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(72465), __webpack_require__.e(71514), __webpack_require__.e(93291), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(15402)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Detail/index.tsx */ 71683));
}),
'213': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__Normal__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(88092), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(86820)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Normal/index.tsx */ 28282));
+ return Promise.all(/*! import() | p__User__Detail__Topics__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(72465), __webpack_require__.e(71514), __webpack_require__.e(93291), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(15402)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Detail/index.tsx */ 71683));
}),
'214': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__Group__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(6812), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(88517)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Group/index.tsx */ 6247));
+ return Promise.all(/*! import() | p__User__Detail__Topics__Normal__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(88092), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(86820)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Normal/index.tsx */ 28282));
}),
'215': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__Exercise__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(31418), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(7043)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Exercise/Edit/index.tsx */ 69744));
+ return Promise.all(/*! import() | p__User__Detail__Topics__Group__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(6812), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(88517)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Group/index.tsx */ 6247));
}),
'216': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__Exercise__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(71514), __webpack_require__.e(3633), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(52806)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Exercise/Detail/index.tsx */ 40216));
+ return Promise.all(/*! import() | p__User__Detail__Topics__Exercise__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(31418), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(7043)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Exercise/Edit/index.tsx */ 69744));
}),
'217': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__Poll__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(75014), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(75043)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Poll/Edit/index.tsx */ 37286));
+ return Promise.all(/*! import() | p__User__Detail__Topics__Exercise__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(71514), __webpack_require__.e(3633), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(52806)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Exercise/Detail/index.tsx */ 40216));
}),
'218': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__Poll__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(72465), __webpack_require__.e(71514), __webpack_require__.e(14506), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(10799)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Poll/Detail/index.tsx */ 81711));
+ return Promise.all(/*! import() | p__User__Detail__Topics__Poll__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(75014), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(75043)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Poll/Edit/index.tsx */ 37286));
}),
'219': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(72529)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/[id].tsx */ 79296));
+ return Promise.all(/*! import() | p__User__Detail__Topics__Poll__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(72465), __webpack_require__.e(71514), __webpack_require__.e(14506), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(10799)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/Poll/Detail/index.tsx */ 81711));
}),
'220': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Classrooms__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(66582), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(66583)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Classrooms/index.tsx */ 74303));
+ return Promise.all(/*! import() | p__User__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(72529)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/[id].tsx */ 79296));
}),
'221': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Classrooms__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(66582), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(66583)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Classrooms/index.tsx */ 74303));
+ return Promise.all(/*! import() | p__User__Detail__Classrooms__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(66582), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(66583)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Classrooms/index.tsx */ 74303));
}),
'222': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Shixuns__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(43778), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(18307)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Shixuns/index.tsx */ 48358));
+ return Promise.all(/*! import() | p__User__Detail__Classrooms__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(66582), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(66583)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Classrooms/index.tsx */ 74303));
}),
'223': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__UserPortrait__index */[__webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(2659)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/UserPortrait/index.tsx */ 51819));
+ return Promise.all(/*! import() | p__User__Detail__Shixuns__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(43778), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(18307)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Shixuns/index.tsx */ 48358));
}),
'224': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__LearningPath__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(3482), __webpack_require__.e(14610)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/LearningPath/index.tsx */ 62891));
+ return Promise.all(/*! import() | p__User__Detail__UserPortrait__index */[__webpack_require__.e(50976), __webpack_require__.e(89777), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(2659)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/UserPortrait/index.tsx */ 51819));
}),
'225': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__TeachGroup__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(77566), __webpack_require__.e(80670), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(79590)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/TeachGroup/index.tsx */ 27217));
+ return Promise.all(/*! import() | p__User__Detail__LearningPath__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(3482), __webpack_require__.e(14610)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/LearningPath/index.tsx */ 62891));
}),
'226': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__ExperImentImg__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(75800), __webpack_require__.e(55806), __webpack_require__.e(40018), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(94849)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/ExperImentImg/index.tsx */ 73301));
+ return Promise.all(/*! import() | p__User__Detail__TeachGroup__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(77566), __webpack_require__.e(80670), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(79590)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/TeachGroup/index.tsx */ 27217));
}),
'227': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__ExperImentImg__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(310)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/ExperImentImg/Detail/index.tsx */ 90157));
+ return Promise.all(/*! import() | p__User__Detail__Competitions__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(84635), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(12076)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Competitions/index.tsx */ 92507));
}),
'228': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Certificate__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(55806), __webpack_require__.e(80599), __webpack_require__.e(63543), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(8348), __webpack_require__.e(65191)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Certificate/index.tsx */ 22246));
+ return Promise.all(/*! import() | p__User__Detail__ExperImentImg__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(75800), __webpack_require__.e(55806), __webpack_require__.e(40018), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(94849)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/ExperImentImg/index.tsx */ 73301));
}),
'229': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__OtherResources__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(48896), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(93496)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/OtherResources/index.tsx */ 65571));
+ return Promise.all(/*! import() | p__User__Detail__ExperImentImg__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(310)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/ExperImentImg/Detail/index.tsx */ 90157));
}),
'230': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Paths__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(98991), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(94662)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Paths/index.tsx */ 91805));
+ return Promise.all(/*! import() | p__User__Detail__Certificate__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(55806), __webpack_require__.e(80599), __webpack_require__.e(63543), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(8348), __webpack_require__.e(65191)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Certificate/index.tsx */ 22246));
}),
'231': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Projects__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(53440), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(4736)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Projects/index.tsx */ 2187));
+ return Promise.all(/*! import() | p__User__Detail__OtherResources__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(48896), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(93496)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/OtherResources/index.tsx */ 65571));
}),
'232': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Videos__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(99160), __webpack_require__.e(71514), __webpack_require__.e(20959), __webpack_require__.e(22562), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(8423), __webpack_require__.e(75463), __webpack_require__.e(12412)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/index.tsx */ 85077));
+ return Promise.all(/*! import() | p__User__Detail__Paths__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(98991), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(94662)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Paths/index.tsx */ 91805));
}),
'233': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Videos__Upload__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(69548), __webpack_require__.e(39146), __webpack_require__.e(42240)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/Upload/index.tsx */ 13198));
+ return Promise.all(/*! import() | p__User__Detail__Projects__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(53440), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(4736)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Projects/index.tsx */ 2187));
}),
'234': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Topics__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(71514), __webpack_require__.e(53267), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(90265)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/index.tsx */ 12569));
+ return Promise.all(/*! import() | p__User__Detail__Videos__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(99160), __webpack_require__.e(71514), __webpack_require__.e(20959), __webpack_require__.e(22562), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(8423), __webpack_require__.e(75463), __webpack_require__.e(12412)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/index.tsx */ 85077));
}),
'235': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__virtualSpaces__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(37099), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(97642), __webpack_require__.e(36723), __webpack_require__.e(19360)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/virtualSpaces/index.tsx */ 82862));
+ return Promise.all(/*! import() | p__User__Detail__Videos__Upload__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(69548), __webpack_require__.e(39146), __webpack_require__.e(42240)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Videos/Upload/index.tsx */ 13198));
}),
'236': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
+ return Promise.all(/*! import() | p__User__Detail__Topics__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(71514), __webpack_require__.e(53267), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(90265)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Topics/index.tsx */ 12569));
}),
'237': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__User__Detail__virtualSpaces__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(37099), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(97642), __webpack_require__.e(36723), __webpack_require__.e(19360)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/virtualSpaces/index.tsx */ 82862));
}),
'238': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Question__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(20085), __webpack_require__.e(3446), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(29647)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/Index/index.tsx */ 83453));
+ return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
}),
'239': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Question__AddOrEdit__BatchAdd__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(10485)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/AddOrEdit/BatchAdd/index.tsx */ 78298));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'240': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problems__OjForm__NewEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(6968), __webpack_require__.e(46430), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34741)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/NewEdit/index.tsx */ 6981));
+ return Promise.all(/*! import() | p__Question__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(20085), __webpack_require__.e(3446), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(29647)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/Index/index.tsx */ 83453));
}),
'241': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problems__OjForm__NewEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(6968), __webpack_require__.e(46430), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34741)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/NewEdit/index.tsx */ 6981));
+ return Promise.all(/*! import() | p__Question__AddOrEdit__BatchAdd__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(10485)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/AddOrEdit/BatchAdd/index.tsx */ 78298));
}),
'242': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problems__OjForm__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(92401), __webpack_require__.e(6968), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34994)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/index.tsx */ 74658));
+ return Promise.all(/*! import() | p__Problems__OjForm__NewEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(6968), __webpack_require__.e(46430), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34741)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/NewEdit/index.tsx */ 6981));
}),
'243': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Problems__OjForm__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(92401), __webpack_require__.e(6968), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34994)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/index.tsx */ 74658));
+ return Promise.all(/*! import() | p__Problems__OjForm__NewEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(6968), __webpack_require__.e(46430), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34741)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/NewEdit/index.tsx */ 6981));
}),
'244': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Question__OjProblem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(75153), __webpack_require__.e(36433), __webpack_require__.e(13215), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(69060), __webpack_require__.e(77460)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/OjProblem/index.tsx */ 98968));
+ return Promise.all(/*! import() | p__Problems__OjForm__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(92401), __webpack_require__.e(6968), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34994)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/index.tsx */ 74658));
}),
'245': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Question__OjProblem__RecordDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(49716)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/OjProblem/RecordDetail/index.tsx */ 41721));
+ return Promise.all(/*! import() | p__Problems__OjForm__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(78617), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(12524), __webpack_require__.e(92401), __webpack_require__.e(6968), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(35574), __webpack_require__.e(34994)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Problems/OjForm/index.tsx */ 74658));
}),
'246': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Question__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(39961), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(35574), __webpack_require__.e(86913)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/AddOrEdit/index.tsx */ 16347));
+ return Promise.all(/*! import() | p__Question__OjProblem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(75153), __webpack_require__.e(36433), __webpack_require__.e(13215), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(69060), __webpack_require__.e(77460)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/OjProblem/index.tsx */ 98968));
}),
'247': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Question__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(39961), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(35574), __webpack_require__.e(86913)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/AddOrEdit/index.tsx */ 16347));
+ return Promise.all(/*! import() | p__Question__OjProblem__RecordDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(49716)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/OjProblem/RecordDetail/index.tsx */ 41721));
}),
'248': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__Question__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(39961), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(35574), __webpack_require__.e(86913)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/AddOrEdit/index.tsx */ 16347));
}),
'249': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(13006)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/index.tsx */ 46305));
+ return Promise.all(/*! import() | p__Question__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(40542), __webpack_require__.e(75153), __webpack_require__.e(39961), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(35574), __webpack_require__.e(86913)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Question/AddOrEdit/index.tsx */ 16347));
}),
'250': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__TeacherList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(2082), __webpack_require__.e(92045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TeacherList/index.tsx */ 3369));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'251': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__StudentList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(2082), __webpack_require__.e(11520)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/StudentList/index.tsx */ 45721));
+ return Promise.all(/*! import() | p__Engineering__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(13006)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/index.tsx */ 46305));
}),
'252': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__TrainingProgram__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(8691), __webpack_require__.e(12034), __webpack_require__.e(59649)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingProgram/index.tsx */ 75200));
+ return Promise.all(/*! import() | p__Engineering__Lists__TeacherList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(2082), __webpack_require__.e(92045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TeacherList/index.tsx */ 3369));
}),
'253': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__TrainingProgram__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(84546)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingProgram/Add/index.tsx */ 21785));
+ return Promise.all(/*! import() | p__Engineering__Lists__StudentList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(2082), __webpack_require__.e(11520)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/StudentList/index.tsx */ 45721));
}),
'254': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__TrainingProgram__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(75357)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingProgram/Edit/index.tsx */ 63879));
+ return Promise.all(/*! import() | p__Engineering__Lists__TrainingProgram__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(8691), __webpack_require__.e(12034), __webpack_require__.e(59649)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingProgram/index.tsx */ 75200));
}),
'255': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__TrainingObjectives__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43025), __webpack_require__.e(12034), __webpack_require__.e(68665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingObjectives/index.tsx */ 64517));
+ return Promise.all(/*! import() | p__Engineering__Lists__TrainingProgram__Add__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(84546)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingProgram/Add/index.tsx */ 21785));
}),
'256': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__GraduationIndex__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(68369), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(73183)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/GraduationIndex/index.tsx */ 45331));
+ return Promise.all(/*! import() | p__Engineering__Lists__TrainingProgram__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(75357)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingProgram/Edit/index.tsx */ 63879));
}),
'257': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__GraduatedMatrix__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(72465), __webpack_require__.e(64742), __webpack_require__.e(34800)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/GraduatedMatrix/index.tsx */ 70309));
+ return Promise.all(/*! import() | p__Engineering__Lists__TrainingObjectives__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43025), __webpack_require__.e(12034), __webpack_require__.e(68665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/TrainingObjectives/index.tsx */ 64517));
}),
'258': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__CourseList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(12034), __webpack_require__.e(79489)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/CourseList/index.tsx */ 73816));
+ return Promise.all(/*! import() | p__Engineering__Lists__GraduationIndex__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(68369), __webpack_require__.e(4977), __webpack_require__.e(12034), __webpack_require__.e(73183)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/GraduationIndex/index.tsx */ 45331));
}),
'259': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__CurseSetting__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(94220), __webpack_require__.e(87234), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(39391)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/CurseSetting/index.tsx */ 15613));
+ return Promise.all(/*! import() | p__Engineering__Lists__GraduatedMatrix__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(72465), __webpack_require__.e(64742), __webpack_require__.e(34800)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/GraduatedMatrix/index.tsx */ 70309));
}),
'260': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__CourseMatrix__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(95335)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/CourseMatrix/index.tsx */ 99438));
+ return Promise.all(/*! import() | p__Engineering__Lists__CourseList__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(12034), __webpack_require__.e(79489)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/CourseList/index.tsx */ 73816));
}),
'261': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Navigation__Home__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(92823)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Navigation/Home/index.tsx */ 12653));
+ return Promise.all(/*! import() | p__Engineering__Lists__CurseSetting__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(94220), __webpack_require__.e(87234), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(39391)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/CurseSetting/index.tsx */ 15613));
}),
'262': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Evaluate__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(53362), __webpack_require__.e(4973)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Evaluate/List/index.tsx */ 35272));
+ return Promise.all(/*! import() | p__Engineering__Lists__CourseMatrix__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(95335)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/CourseMatrix/index.tsx */ 99438));
}),
'263': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Evaluate__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(50976), __webpack_require__.e(66651)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Evaluate/Detail/index.tsx */ 14057));
+ return Promise.all(/*! import() | p__Engineering__Navigation__Home__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(92823)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Navigation/Home/index.tsx */ 12653));
}),
'264': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Norm__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(26741)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Norm/List/index.tsx */ 12758));
+ return Promise.all(/*! import() | p__Engineering__Evaluate__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(53362), __webpack_require__.e(4973)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Evaluate/List/index.tsx */ 35272));
}),
'265': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Engineering__Lists__Document__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(8691), __webpack_require__.e(12034), __webpack_require__.e(45775)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/Document/index.tsx */ 31659));
+ return Promise.all(/*! import() | p__Engineering__Evaluate__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(50976), __webpack_require__.e(66651)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Evaluate/Detail/index.tsx */ 14057));
}),
'266': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__Engineering__Norm__Detail__index */ 62548).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Norm/Detail/index.tsx */ 79222));
+ return Promise.all(/*! import() | p__Engineering__Norm__List__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(26741)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Norm/List/index.tsx */ 12758));
}),
'267': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
+ return Promise.all(/*! import() | p__Engineering__Lists__Document__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(8691), __webpack_require__.e(12034), __webpack_require__.e(45775)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Lists/Document/index.tsx */ 31659));
}),
'268': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return __webpack_require__.e(/*! import() | p__Engineering__Norm__Detail__index */ 62548).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Engineering/Norm/Detail/index.tsx */ 79222));
}),
'269': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(61655), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(36723), __webpack_require__.e(34608)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Index/index.tsx */ 23468));
+ return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
}),
'270': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(26184), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(44510)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/AddOrEdit/index.tsx */ 78816));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'271': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(26184), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(44510)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/AddOrEdit/index.tsx */ 78816));
+ return Promise.all(/*! import() | p__virtualSpaces__Index__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(61655), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(36723), __webpack_require__.e(34608)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Index/index.tsx */ 23468));
}),
'272': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__virtualDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(82375), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(66012), __webpack_require__.e(25578), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(40559)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/virtualDetail/index.tsx */ 96073));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(26184), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(44510)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/AddOrEdit/index.tsx */ 78816));
}),
'273': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(44666), __webpack_require__.e(4977), __webpack_require__.e(71218)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/index.tsx */ 95307));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__AddOrEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(26184), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(44510)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/AddOrEdit/index.tsx */ 78816));
}),
'274': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(25896)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/Detail/index.tsx */ 30769));
+ return Promise.all(/*! import() | layouts__virtualDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(82375), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(66012), __webpack_require__.e(25578), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(40559)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/virtualDetail/index.tsx */ 96073));
}),
'275': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Course__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(64398), __webpack_require__.e(78843), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(35588)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Course/index.tsx */ 78342));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(44666), __webpack_require__.e(4977), __webpack_require__.e(71218)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/index.tsx */ 95307));
}),
'276': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Shixuns__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(87261), __webpack_require__.e(59295), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(59267), __webpack_require__.e(91487)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Shixuns/index.tsx */ 87563));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Syllabuses__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(25896)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Syllabuses/Detail/index.tsx */ 30769));
}),
'277': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Video__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(64398), __webpack_require__.e(99160), __webpack_require__.e(20959), __webpack_require__.e(15109), __webpack_require__.e(4977), __webpack_require__.e(8423), __webpack_require__.e(54836), __webpack_require__.e(4639)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Video/index.tsx */ 57418));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Course__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(64398), __webpack_require__.e(78843), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(35588)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Course/index.tsx */ 78342));
}),
'278': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Video__Upload__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(69548), __webpack_require__.e(19428), __webpack_require__.e(5348)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Video/Upload/index.tsx */ 97257));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Shixuns__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(87261), __webpack_require__.e(59295), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(59267), __webpack_require__.e(91487)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Shixuns/index.tsx */ 87563));
}),
'279': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Member__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(81425), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(43465)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Member/index.tsx */ 52606));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Video__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(93562), __webpack_require__.e(64398), __webpack_require__.e(99160), __webpack_require__.e(20959), __webpack_require__.e(15109), __webpack_require__.e(4977), __webpack_require__.e(8423), __webpack_require__.e(54836), __webpack_require__.e(4639)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Video/index.tsx */ 57418));
}),
'280': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Notices__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(17379), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(54472)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Notices/index.tsx */ 3968));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Video__Upload__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(69548), __webpack_require__.e(19428), __webpack_require__.e(5348)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Video/Upload/index.tsx */ 97257));
}),
'281': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Managements__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(64339), __webpack_require__.e(97642), __webpack_require__.e(13414)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Managements/index.tsx */ 11365));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Member__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(81425), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(43465)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Member/index.tsx */ 52606));
}),
'282': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Graphs__index */ 29080).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Graphs/index.tsx */ 98776));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Notices__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(17379), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(54472)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Notices/index.tsx */ 3968));
}),
'283': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Construction__index */ 25705).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Construction/index.tsx */ 4492));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Managements__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(64339), __webpack_require__.e(97642), __webpack_require__.e(13414)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Managements/index.tsx */ 11365));
}),
'284': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Graphs__index */ 29080).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Graphs/index.tsx */ 98776));
}),
'285': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__Tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(28510), __webpack_require__.e(31794), __webpack_require__.e(77566), __webpack_require__.e(2206), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(78806), __webpack_require__.e(70992), __webpack_require__.e(86634)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Tasks/index.jsx */ 11198));
+ return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Construction__index */ 25705).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Construction/index.tsx */ 4492));
}),
'286': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(20680)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/index.tsx */ 78148));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'287': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__PublicProject__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(33692), __webpack_require__.e(4977), __webpack_require__.e(26366)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/PublicProject/index.tsx */ 62218));
+ return Promise.all(/*! import() | p__Innovation__Tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(28510), __webpack_require__.e(31794), __webpack_require__.e(77566), __webpack_require__.e(2206), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(78806), __webpack_require__.e(70992), __webpack_require__.e(86634)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Tasks/index.jsx */ 11198));
}),
'288': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__PublicDataSet__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(28338), __webpack_require__.e(86452)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/PublicDataSet/index.tsx */ 11884));
+ return Promise.all(/*! import() | p__Innovation__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(20680)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/index.tsx */ 78148));
}),
'289': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__PublicMirror__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(11070)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/PublicMirror/index.tsx */ 65142));
+ return Promise.all(/*! import() | p__Innovation__PublicProject__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(33692), __webpack_require__.e(4977), __webpack_require__.e(26366)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/PublicProject/index.tsx */ 62218));
}),
'290': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__MyProject__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(46041), __webpack_require__.e(4977), __webpack_require__.e(67242)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/MyProject/index.tsx */ 18263));
+ return Promise.all(/*! import() | p__Innovation__PublicDataSet__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(28338), __webpack_require__.e(86452)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/PublicDataSet/index.tsx */ 11884));
}),
'291': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__MyDataSet__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(28338), __webpack_require__.e(22707)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/MyDataSet/index.tsx */ 98160));
+ return Promise.all(/*! import() | p__Innovation__PublicMirror__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(11070)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/PublicMirror/index.tsx */ 65142));
}),
'292': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__MyMirror__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(28338), __webpack_require__.e(12865)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/MyMirror/index.tsx */ 72746));
+ return Promise.all(/*! import() | p__Innovation__MyProject__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(46041), __webpack_require__.e(4977), __webpack_require__.e(67242)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/MyProject/index.tsx */ 18263));
}),
'293': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(28338), __webpack_require__.e(36784)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Edit/index.tsx */ 5480));
+ return Promise.all(/*! import() | p__Innovation__MyDataSet__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(28338), __webpack_require__.e(22707)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/MyDataSet/index.tsx */ 98160));
}),
'294': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(28338), __webpack_require__.e(36784)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Edit/index.tsx */ 5480));
+ return Promise.all(/*! import() | p__Innovation__MyMirror__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(28338), __webpack_require__.e(12865)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/MyMirror/index.tsx */ 72746));
}),
'295': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Innovation__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(77566), __webpack_require__.e(4900), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(70992), __webpack_require__.e(83141)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Detail/index.tsx */ 93175));
+ return Promise.all(/*! import() | p__Innovation__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(28338), __webpack_require__.e(36784)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Edit/index.tsx */ 5480));
}),
'296': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
+ return Promise.all(/*! import() | p__Innovation__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(28338), __webpack_require__.e(36784)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Edit/index.tsx */ 5480));
}),
'297': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(31794), __webpack_require__.e(61193), __webpack_require__.e(1988), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(78806), __webpack_require__.e(32925), __webpack_require__.e(73718), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 83015));
+ return Promise.all(/*! import() | p__Innovation__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(72465), __webpack_require__.e(53362), __webpack_require__.e(77566), __webpack_require__.e(4900), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(70992), __webpack_require__.e(83141)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Innovation/Detail/index.tsx */ 93175));
}),
'298': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__tasks__Jupyter__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(1988), __webpack_require__.e(32827), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(20700)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/Jupyter/index.tsx */ 80133));
+ return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
}),
'299': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(31794), __webpack_require__.e(61193), __webpack_require__.e(1988), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(78806), __webpack_require__.e(32925), __webpack_require__.e(73718), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 83015));
+ return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(31794), __webpack_require__.e(61193), __webpack_require__.e(1988), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(78806), __webpack_require__.e(32925), __webpack_require__.e(73718), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 83015));
}),
'300': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__tasks__Jupyter__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(1988), __webpack_require__.e(32827), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(20700)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/Jupyter/index.tsx */ 80133));
+ return Promise.all(/*! import() | p__tasks__Jupyter__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(1988), __webpack_require__.e(32827), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(20700)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/Jupyter/index.tsx */ 80133));
}),
'301': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(31794), __webpack_require__.e(61193), __webpack_require__.e(1988), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(78806), __webpack_require__.e(32925), __webpack_require__.e(73718), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 83015));
+ return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(31794), __webpack_require__.e(61193), __webpack_require__.e(1988), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(78806), __webpack_require__.e(32925), __webpack_require__.e(73718), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 83015));
}),
'302': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
+ return Promise.all(/*! import() | p__tasks__Jupyter__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(1988), __webpack_require__.e(32827), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(20700)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/Jupyter/index.tsx */ 80133));
}),
'303': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__MyProblem__RecordDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(28510), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(17527)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MyProblem/RecordDetail/index.tsx */ 33010));
+ return Promise.all(/*! import() | p__tasks__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(72465), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(40542), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(31794), __webpack_require__.e(61193), __webpack_require__.e(1988), __webpack_require__.e(8691), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(78806), __webpack_require__.e(32925), __webpack_require__.e(73718), __webpack_require__.e(93665)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/tasks/index.jsx */ 83015));
}),
'304': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__MyProblem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(36433), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(78806), __webpack_require__.e(69060), __webpack_require__.e(36270)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MyProblem/index.tsx */ 99971));
+ return __webpack_require__.e(/*! import() */ 96390).then(__webpack_require__.bind(__webpack_require__, /*! ./EmptyRoute */ 96390));
}),
'305': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__MyProblem__RecordDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(28510), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(17527)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MyProblem/RecordDetail/index.tsx */ 33010));
}),
'306': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Account__index */[__webpack_require__.e(67851), __webpack_require__.e(60547)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/index.tsx */ 34120));
+ return Promise.all(/*! import() | p__MyProblem__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87261), __webpack_require__.e(55806), __webpack_require__.e(28510), __webpack_require__.e(75153), __webpack_require__.e(36433), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(78806), __webpack_require__.e(69060), __webpack_require__.e(36270)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MyProblem/index.tsx */ 99971));
}),
'307': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Account__Profile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78617), __webpack_require__.e(46059), __webpack_require__.e(12325), __webpack_require__.e(44838), __webpack_require__.e(59788)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Profile/index.tsx */ 91830));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'308': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Account__Profile__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78617), __webpack_require__.e(46059), __webpack_require__.e(12325), __webpack_require__.e(44838), __webpack_require__.e(20576)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Profile/Edit/index.tsx */ 28744));
+ return Promise.all(/*! import() | p__Account__index */[__webpack_require__.e(67851), __webpack_require__.e(60547)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/index.tsx */ 34120));
}),
'309': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Account__Certification__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78617), __webpack_require__.e(46059), __webpack_require__.e(12325), __webpack_require__.e(55693), __webpack_require__.e(87260)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Certification/index.tsx */ 24464));
+ return Promise.all(/*! import() | p__Account__Profile__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78617), __webpack_require__.e(46059), __webpack_require__.e(12325), __webpack_require__.e(44838), __webpack_require__.e(59788)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Profile/index.tsx */ 91830));
}),
'310': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Account__Secure__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(64520)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Secure/index.tsx */ 29051));
+ return Promise.all(/*! import() | p__Account__Profile__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78617), __webpack_require__.e(46059), __webpack_require__.e(12325), __webpack_require__.e(44838), __webpack_require__.e(20576)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Profile/Edit/index.tsx */ 28744));
}),
'311': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__Account__Binding__index */ 89076).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Binding/index.tsx */ 55291));
+ return Promise.all(/*! import() | p__Account__Certification__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(67390), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(78617), __webpack_require__.e(46059), __webpack_require__.e(12325), __webpack_require__.e(55693), __webpack_require__.e(87260)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Certification/index.tsx */ 24464));
}),
'312': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Account__Results__index */[__webpack_require__.e(21649), __webpack_require__.e(1226), __webpack_require__.e(14514)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Results/index.tsx */ 55487));
+ return Promise.all(/*! import() | p__Account__Secure__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(64520)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Secure/index.tsx */ 29051));
}),
'313': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return __webpack_require__.e(/*! import() | p__Account__Binding__index */ 89076).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Binding/index.tsx */ 55291));
}),
'314': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__RestFul__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(79779), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(70928)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/RestFul/Edit/index.tsx */ 37513));
+ return Promise.all(/*! import() | p__Account__Results__index */[__webpack_require__.e(21649), __webpack_require__.e(1226), __webpack_require__.e(14514)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Account/Results/index.tsx */ 55487));
}),
'315': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__RestFul__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(93562), __webpack_require__.e(43295), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(31006)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/RestFul/index.tsx */ 23632));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'316': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__RestFul__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(93562), __webpack_require__.e(43295), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(31006)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/RestFul/index.tsx */ 23632));
+ return Promise.all(/*! import() | p__RestFul__Edit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(79779), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(70928)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/RestFul/Edit/index.tsx */ 37513));
}),
'317': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__RestFul__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(93562), __webpack_require__.e(43295), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(31006)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/RestFul/index.tsx */ 23632));
}),
'318': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Order__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(21939)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/index.tsx */ 21101));
+ return Promise.all(/*! import() | p__RestFul__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(93562), __webpack_require__.e(43295), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(31006)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/RestFul/index.tsx */ 23632));
}),
'319': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__User__Detail__Order__pages__orderInformation__index */ 85111).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/pages/orderInformation/index.tsx */ 76638));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'320': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Order__pages__orderPay__index */[__webpack_require__.e(79361), __webpack_require__.e(30264)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/pages/orderPay/index.tsx */ 97244));
+ return Promise.all(/*! import() | p__User__Detail__Order__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(64057), __webpack_require__.e(72465), __webpack_require__.e(21939)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/index.tsx */ 21101));
}),
'321': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Detail__Order__pages__result__index */[__webpack_require__.e(53114), __webpack_require__.e(44259)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/pages/result/index.tsx */ 51972));
+ return __webpack_require__.e(/*! import() | p__User__Detail__Order__pages__orderInformation__index */ 85111).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/pages/orderInformation/index.tsx */ 76638));
}),
'322': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__User__Detail__Order__pages__orderPay__index */[__webpack_require__.e(79361), __webpack_require__.e(30264)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/pages/orderPay/index.tsx */ 97244));
}),
'323': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Messages__Tidings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(64057), __webpack_require__.e(94078)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Messages/Tidings/index.tsx */ 20315));
+ return Promise.all(/*! import() | p__User__Detail__Order__pages__result__index */[__webpack_require__.e(53114), __webpack_require__.e(44259)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/pages/result/index.tsx */ 51972));
}),
'324': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Messages__Private__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(11525), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(52829)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Messages/Private/index.tsx */ 22845));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'325': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Messages__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(8774), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(45359)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Messages/Detail/index.tsx */ 82949));
+ return Promise.all(/*! import() | p__Messages__Tidings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(64057), __webpack_require__.e(94078)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Messages/Tidings/index.tsx */ 20315));
}),
'326': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__Messages__Private__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(11525), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(52829)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Messages/Private/index.tsx */ 22845));
}),
'327': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__virtualDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(82375), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(66012), __webpack_require__.e(25578), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(40559)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/virtualDetail/index.tsx */ 96073));
+ return Promise.all(/*! import() | p__Messages__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(8774), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(45359)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Messages/Detail/index.tsx */ 82949));
}),
'328': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Experiment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(87261), __webpack_require__.e(59295), __webpack_require__.e(28020), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(59267), __webpack_require__.e(71783)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Experiment/index.tsx */ 45335));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'329': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(32415), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 5563));
+ return Promise.all(/*! import() | layouts__virtualDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(82375), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(66012), __webpack_require__.e(25578), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(40559)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/virtualDetail/index.tsx */ 96073));
}),
'330': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Experiment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(87261), __webpack_require__.e(59295), __webpack_require__.e(28020), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(59267), __webpack_require__.e(71783)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Experiment/index.tsx */ 45335));
}),
'331': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(32415), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 5563));
}),
'332': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(89626), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(46796)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/Detail/index.tsx */ 22619));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
}),
'333': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(47638), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(24504)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/index.tsx */ 57041));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
}),
'334': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(79713), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(87058)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/Detail/index.tsx */ 95888));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(89626), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(46796)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/Detail/index.tsx */ 22619));
}),
'335': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(52182), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(38447)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/index.tsx */ 47447));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(47638), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(24504)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/index.tsx */ 57041));
}),
'336': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(79713), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(87058)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/Detail/index.tsx */ 95888));
}),
'337': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(52182), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(38447)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/index.tsx */ 47447));
}),
'338': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87561), __webpack_require__.e(49666), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(35238)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/index.tsx */ 64909));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
}),
'339': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87561), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(94715)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/Detail/index.tsx */ 56035));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
}),
'340': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Settings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(49960), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(61713)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Settings/index.tsx */ 32826));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87561), __webpack_require__.e(49666), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(35238)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/index.tsx */ 64909));
}),
'341': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(794), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(85891)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/index.tsx */ 2306));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87561), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(94715)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/Detail/index.tsx */ 56035));
}),
'342': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(58269), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(98398)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/Detail/index.tsx */ 7285));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Settings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(49960), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(61713)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Settings/index.tsx */ 32826));
}),
'343': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(99532), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(18241)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/index.tsx */ 4262));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(794), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(85891)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/index.tsx */ 2306));
}),
'344': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(95870), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(82339)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/Detail/index.tsx */ 70190));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(58269), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(98398)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/Detail/index.tsx */ 7285));
}),
'345': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Homepage__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(80747), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(33747)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Homepage/index.tsx */ 18335));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(99532), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(18241)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/index.tsx */ 4262));
}),
'346': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Construction__index */ 25705).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Construction/index.tsx */ 4492));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(95870), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(82339)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/Detail/index.tsx */ 70190));
}),
'347': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Homepage__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(80747), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(33747)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Homepage/index.tsx */ 18335));
}),
'348': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__virtualDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(82375), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(66012), __webpack_require__.e(25578), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(40559)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/virtualDetail/index.tsx */ 96073));
+ return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Construction__index */ 25705).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Construction/index.tsx */ 4492));
}),
'349': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Experiment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(87261), __webpack_require__.e(59295), __webpack_require__.e(28020), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(59267), __webpack_require__.e(71783)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Experiment/index.tsx */ 45335));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'350': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(32415), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 5563));
+ return Promise.all(/*! import() | layouts__virtualDetail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(82375), __webpack_require__.e(59013), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(66012), __webpack_require__.e(25578), __webpack_require__.e(3482), __webpack_require__.e(97642), __webpack_require__.e(40559)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/virtualDetail/index.tsx */ 96073));
}),
'351': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Experiment__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(87261), __webpack_require__.e(59295), __webpack_require__.e(28020), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(85343), __webpack_require__.e(59267), __webpack_require__.e(71783)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Experiment/index.tsx */ 45335));
}),
'352': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(32415), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 5563));
}),
'353': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(89626), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(46796)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/Detail/index.tsx */ 22619));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
}),
'354': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(47638), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(24504)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/index.tsx */ 57041));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(12614), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 31853));
}),
'355': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(79713), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(87058)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/Detail/index.tsx */ 95888));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(89626), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(46796)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/Detail/index.tsx */ 22619));
}),
'356': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(52182), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(38447)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/index.tsx */ 47447));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(47638), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(24504)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/index.tsx */ 57041));
}),
'357': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Survey__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(79713), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(87058)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Survey/Detail/index.tsx */ 95888));
}),
'358': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(52182), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(38447)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/index.tsx */ 47447));
}),
'359': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87561), __webpack_require__.e(49666), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(35238)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/index.tsx */ 64909));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
}),
'360': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87561), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(94715)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/Detail/index.tsx */ 56035));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Knowledge__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(15026), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(91045)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Knowledge/AddAndEdit/index.tsx */ 15649));
}),
'361': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Settings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(49960), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(61713)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Settings/index.tsx */ 32826));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(87561), __webpack_require__.e(49666), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(85343), __webpack_require__.e(35238)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/index.tsx */ 64909));
}),
'362': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(75800), __webpack_require__.e(15428), __webpack_require__.e(794), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(85891)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/index.tsx */ 2306));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Material__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(87561), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(94715)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Material/Detail/index.tsx */ 56035));
}),
'363': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(58269), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(98398)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/Detail/index.tsx */ 7285));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Settings__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(49960), __webpack_require__.e(4977), __webpack_require__.e(55351), __webpack_require__.e(85343), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(61713)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Settings/index.tsx */ 32826));
}),
'364': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(99532), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(18241)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/index.tsx */ 4262));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(794), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(85891)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/index.tsx */ 2306));
}),
'365': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(95870), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(82339)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/Detail/index.tsx */ 70190));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Resources__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(58269), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(98398)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Resources/Detail/index.tsx */ 7285));
}),
'366': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__virtualSpaces__Lists__Homepage__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(80747), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(33747)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Homepage/index.tsx */ 18335));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(99532), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(18241)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/index.tsx */ 4262));
}),
'367': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Construction__index */ 25705).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Construction/index.tsx */ 4492));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Plan__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(95870), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(85343), __webpack_require__.e(82339)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Plan/Detail/index.tsx */ 70190));
}),
'368': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Demo__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(72465), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(14058)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Demo/index.tsx */ 64161));
+ return Promise.all(/*! import() | p__virtualSpaces__Lists__Homepage__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(80747), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(85343), __webpack_require__.e(33747)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Homepage/index.tsx */ 18335));
}),
'369': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return __webpack_require__.e(/*! import() | p__virtualSpaces__Lists__Construction__index */ 25705).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Construction/index.tsx */ 4492));
}),
'370': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__IntrainCourse__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(20085), __webpack_require__.e(80280), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(54056)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/IntrainCourse/index.tsx */ 33654));
+ return Promise.all(/*! import() | p__Demo__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(72465), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(14058)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Demo/index.tsx */ 64161));
}),
'371': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__OtherLogin__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(2246), __webpack_require__.e(61437), __webpack_require__.e(53270), __webpack_require__.e(65294)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/OtherLogin/index.tsx */ 7304));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'372': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__User__QQLogin__index */ 1660).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/QQLogin/index.tsx */ 97944));
+ return Promise.all(/*! import() | p__IntrainCourse__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(20085), __webpack_require__.e(80280), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(54056)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/IntrainCourse/index.tsx */ 33654));
}),
'373': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__User__WechatLogin__index */ 27333).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/WechatLogin/index.tsx */ 128));
+ return Promise.all(/*! import() | p__User__OtherLogin__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(2246), __webpack_require__.e(61437), __webpack_require__.e(53270), __webpack_require__.e(65294)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/OtherLogin/index.tsx */ 7304));
}),
'374': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__LoginAndRegister__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(75786)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/LoginAndRegister/index.tsx */ 34306));
+ return __webpack_require__.e(/*! import() | p__User__QQLogin__index */ 1660).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/QQLogin/index.tsx */ 97944));
}),
'375': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Login__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(16827), __webpack_require__.e(49366)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Login/index.tsx */ 34907));
+ return __webpack_require__.e(/*! import() | p__User__WechatLogin__index */ 27333).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/WechatLogin/index.tsx */ 128));
}),
'376': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | layouts__LoginAndRegister__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(75786)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/LoginAndRegister/index.tsx */ 34306));
@@ -125058,109 +125671,115 @@ function _getRoutes() {
return Promise.all(/*! import() | p__User__Login__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(16827), __webpack_require__.e(49366)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Login/index.tsx */ 34907));
}),
'378': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__Register__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(2246), __webpack_require__.e(61437), __webpack_require__.e(53270), __webpack_require__.e(91470)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Register/index.tsx */ 48028));
+ return Promise.all(/*! import() | layouts__LoginAndRegister__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(75786)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/LoginAndRegister/index.tsx */ 34306));
}),
'379': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__User__ResetPassword__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(2246), __webpack_require__.e(27182)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/ResetPassword/index.tsx */ 63100));
+ return Promise.all(/*! import() | p__User__Login__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(16827), __webpack_require__.e(49366)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Login/index.tsx */ 34907));
}),
'380': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__User__Register__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(2246), __webpack_require__.e(61437), __webpack_require__.e(53270), __webpack_require__.e(91470)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Register/index.tsx */ 48028));
}),
'381': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Colleges__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(50976), __webpack_require__.e(4977), __webpack_require__.e(12476)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Colleges/index.tsx */ 94490));
+ return Promise.all(/*! import() | p__User__ResetPassword__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(59013), __webpack_require__.e(2246), __webpack_require__.e(27182)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/ResetPassword/index.tsx */ 63100));
}),
'382': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'383': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Help__Index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(34131), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(35729)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Help/Index.tsx */ 68996));
+ return Promise.all(/*! import() | p__Colleges__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(50976), __webpack_require__.e(4977), __webpack_require__.e(12476)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Colleges/index.tsx */ 94490));
}),
'384': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'385': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Video__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(96967), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(8423), __webpack_require__.e(96444)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Video/Detail/[id].tsx */ 9893));
+ return Promise.all(/*! import() | p__Help__Index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(34131), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(35729)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Help/Index.tsx */ 68996));
}),
'386': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Terminal__index */[__webpack_require__.e(21649), __webpack_require__.e(1226), __webpack_require__.e(99836), __webpack_require__.e(28510), __webpack_require__.e(31794), __webpack_require__.e(73718), __webpack_require__.e(65111)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Terminal/index.tsx */ 52510));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'387': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__Report__index */ 22307).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Report/index.tsx */ 6584));
+ return Promise.all(/*! import() | p__Video__Detail__id */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(69548), __webpack_require__.e(99160), __webpack_require__.e(96967), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(8423), __webpack_require__.e(96444)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Video/Detail/[id].tsx */ 9893));
}),
'388': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(76563), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
+ return Promise.all(/*! import() | p__Terminal__index */[__webpack_require__.e(21649), __webpack_require__.e(1226), __webpack_require__.e(99836), __webpack_require__.e(28510), __webpack_require__.e(31794), __webpack_require__.e(73718), __webpack_require__.e(65111)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Terminal/index.tsx */ 52510));
}),
'389': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(99160), __webpack_require__.e(20085), __webpack_require__.e(20959), __webpack_require__.e(94220), __webpack_require__.e(43525), __webpack_require__.e(66813), __webpack_require__.e(84685), __webpack_require__.e(36204), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(88866)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/index.tsx */ 60145));
+ return __webpack_require__.e(/*! import() | p__Report__index */ 22307).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Report/index.tsx */ 6584));
}),
'390': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__Api__index */ 62300).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Api/index.tsx */ 56541));
+ return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(20085), __webpack_require__.e(43525), __webpack_require__.e(54051), __webpack_require__.e(81762), __webpack_require__.e(10015), __webpack_require__.e(8691), __webpack_require__.e(4977), __webpack_require__.e(12768), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 51432));
}),
'391': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Search__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(42268), __webpack_require__.e(92501)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Search/index.tsx */ 60269));
+ return Promise.all(/*! import() | p__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67631), __webpack_require__.e(99836), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(99160), __webpack_require__.e(20085), __webpack_require__.e(20959), __webpack_require__.e(94220), __webpack_require__.e(43525), __webpack_require__.e(66813), __webpack_require__.e(81762), __webpack_require__.e(80583), __webpack_require__.e(18976), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(88866)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/index.tsx */ 60145));
}),
'392': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__MoopCases__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(83212)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/index.tsx */ 56514));
+ return __webpack_require__.e(/*! import() | p__Api__index */ 62300).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Api/index.tsx */ 56541));
}),
'393': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__MoopCases__FormPanel__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(3065), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(76904)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/FormPanel/index.tsx */ 93592));
+ return Promise.all(/*! import() | p__Search__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(42268), __webpack_require__.e(92501)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Search/index.tsx */ 60269));
}),
'394': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__MoopCases__InfoPanel__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(51855)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/InfoPanel/index.tsx */ 66867));
+ return Promise.all(/*! import() | p__MoopCases__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(83212)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/index.tsx */ 56514));
}),
'395': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__MoopCases__FormPanel__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(3065), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(76904)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/FormPanel/index.tsx */ 93592));
}),
'396': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__MoopCases__Success__index */ 51276).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/Success/index.tsx */ 10968));
+ return Promise.all(/*! import() | p__MoopCases__InfoPanel__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(51855)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/InfoPanel/index.tsx */ 66867));
}),
'397': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Paperlibrary__Random__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(42977), __webpack_require__.e(7713), __webpack_require__.e(62629), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(20139), __webpack_require__.e(70368), __webpack_require__.e(22257)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/AddAndEdit/index.tsx */ 1931));
+ return Promise.all(/*! import() | p__MoopCases__FormPanel__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(3065), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(76904)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/FormPanel/index.tsx */ 93592));
}),
'398': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Paperlibrary__Random__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(42977), __webpack_require__.e(7713), __webpack_require__.e(62629), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(20139), __webpack_require__.e(70368), __webpack_require__.e(22257)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/AddAndEdit/index.tsx */ 1931));
+ return __webpack_require__.e(/*! import() | p__MoopCases__Success__index */ 51276).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/MoopCases/Success/index.tsx */ 10968));
}),
'399': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Paperlibrary__Random__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(36579), __webpack_require__.e(60696), __webpack_require__.e(79086), __webpack_require__.e(33784)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/Detail/index.tsx */ 20032));
+ return Promise.all(/*! import() | p__Paperlibrary__Random__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(42977), __webpack_require__.e(7713), __webpack_require__.e(62629), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(20139), __webpack_require__.e(70368), __webpack_require__.e(22257)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/AddAndEdit/index.tsx */ 1931));
}),
'400': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__HttpStatus__403 */ 43862).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/403.tsx */ 34247));
+ return Promise.all(/*! import() | p__Paperlibrary__Random__AddAndEdit__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(38603), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(42977), __webpack_require__.e(7713), __webpack_require__.e(62629), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(20139), __webpack_require__.e(70368), __webpack_require__.e(22257)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/AddAndEdit/index.tsx */ 1931));
}),
'401': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__HttpStatus__500 */ 44565).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/500.tsx */ 51601));
+ return Promise.all(/*! import() | p__Paperlibrary__Random__Detail__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(51370), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(64398), __webpack_require__.e(36579), __webpack_require__.e(60696), __webpack_require__.e(79086), __webpack_require__.e(33784)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Paperlibrary/Random/Detail/index.tsx */ 20032));
}),
'402': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__HttpStatus__404 */ 66531).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/404.tsx */ 70876));
+ return __webpack_require__.e(/*! import() | p__HttpStatus__403 */ 43862).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/403.tsx */ 34247));
}),
'403': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__HttpStatus__HpcCourse */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(25619), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(64496)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/HpcCourse.tsx */ 94736));
+ return __webpack_require__.e(/*! import() | p__HttpStatus__500 */ 44565).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/500.tsx */ 51601));
}),
'404': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__HttpStatus__SixActivities */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(24192), __webpack_require__.e(54051), __webpack_require__.e(3509)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/SixActivities.tsx */ 65226));
+ return __webpack_require__.e(/*! import() | p__HttpStatus__404 */ 66531).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/404.tsx */ 70876));
}),
'405': /*#__PURE__*/react.lazy(function () {
return Promise.all(/*! import() | p__HttpStatus__HpcCourse */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(25619), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(64496)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/HpcCourse.tsx */ 94736));
}),
'406': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__HttpStatus__HpcCourse */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(25619), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(64496)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/HpcCourse.tsx */ 94736));
+ return Promise.all(/*! import() | p__HttpStatus__SixActivities */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(24192), __webpack_require__.e(54051), __webpack_require__.e(3509)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/SixActivities.tsx */ 65226));
}),
'407': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__HttpStatus__UserAgents */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(66034)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/UserAgents.tsx */ 86441));
+ return Promise.all(/*! import() | p__HttpStatus__HpcCourse */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(25619), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(64496)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/HpcCourse.tsx */ 94736));
}),
'408': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Three__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(20390), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(8999)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Three/index.tsx */ 2868));
+ return Promise.all(/*! import() | p__HttpStatus__HpcCourse */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(25619), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(64496)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/HpcCourse.tsx */ 94736));
}),
'409': /*#__PURE__*/react.lazy(function () {
- return __webpack_require__.e(/*! import() | p__HttpStatus__introduction */ 53910).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/introduction.tsx */ 16249));
+ return Promise.all(/*! import() | p__HttpStatus__UserAgents */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(64057), __webpack_require__.e(66034)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/UserAgents.tsx */ 86441));
}),
'410': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | p__Message__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(42255), __webpack_require__.e(30067)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Message/index.tsx */ 49929));
+ return Promise.all(/*! import() | p__Three__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(59013), __webpack_require__.e(38603), __webpack_require__.e(67631), __webpack_require__.e(85410), __webpack_require__.e(51370), __webpack_require__.e(99836), __webpack_require__.e(15428), __webpack_require__.e(43915), __webpack_require__.e(40477), __webpack_require__.e(20390), __webpack_require__.e(8691), __webpack_require__.e(12768), __webpack_require__.e(67570), __webpack_require__.e(8999)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Three/index.tsx */ 2868));
}),
'411': /*#__PURE__*/react.lazy(function () {
+ return __webpack_require__.e(/*! import() | p__HttpStatus__introduction */ 53910).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/introduction.tsx */ 16249));
+ }),
+ '412': /*#__PURE__*/react.lazy(function () {
+ return Promise.all(/*! import() | p__Message__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(42255), __webpack_require__.e(30067)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/Message/index.tsx */ 49929));
+ }),
+ '413': /*#__PURE__*/react.lazy(function () {
return __webpack_require__.e(/*! import() | p__HttpStatus__404 */ 66531).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/HttpStatus/404.tsx */ 70876));
}),
'@@/global-layout': /*#__PURE__*/react.lazy(function () {
- return Promise.all(/*! import() | layouts__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(43525), __webpack_require__.e(16827), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(66728), __webpack_require__.e(92026), __webpack_require__.e(41717)]).then(__webpack_require__.bind(__webpack_require__, /*! ./src/layouts/index.tsx */ 58310));
+ return Promise.all(/*! import() | layouts__index */[__webpack_require__.e(21649), __webpack_require__.e(81263), __webpack_require__.e(1226), __webpack_require__.e(73453), __webpack_require__.e(65491), __webpack_require__.e(8571), __webpack_require__.e(82375), __webpack_require__.e(66516), __webpack_require__.e(18562), __webpack_require__.e(59013), __webpack_require__.e(64057), __webpack_require__.e(67390), __webpack_require__.e(33479), __webpack_require__.e(75800), __webpack_require__.e(72465), __webpack_require__.e(43525), __webpack_require__.e(16827), __webpack_require__.e(4977), __webpack_require__.e(3482), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(4476), __webpack_require__.e(92026), __webpack_require__.e(41717)]).then(__webpack_require__.bind(__webpack_require__, /*! ./src/layouts/index.tsx */ 58310));
})
}
});