diff --git a/21733.a99b7575.async.js b/21733.7b0c078c.async.js similarity index 99% rename from 21733.a99b7575.async.js rename to 21733.7b0c078c.async.js index 4aa2cfe8de..c8debb9002 100644 --- a/21733.a99b7575.async.js +++ b/21733.7b0c078c.async.js @@ -150,7 +150,7 @@ var _default = exports["default"] = RefIcon; /***/ }), -/***/ 13305: +/***/ 82141: /*!***************************************************************************************************************!*\ !*** ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/BaseForm/createField.js + 4 modules ***! \***************************************************************************************************************/ @@ -194,12 +194,12 @@ function pickProFormItemProps(props) { }); return attrs; } -// EXTERNAL MODULE: ./node_modules/_safe-stable-stringify@2.4.3@safe-stable-stringify/index.js -var _safe_stable_stringify_2_4_3_safe_stable_stringify = __webpack_require__(15894); -;// CONCATENATED MODULE: ./node_modules/_safe-stable-stringify@2.4.3@safe-stable-stringify/esm/wrapper.js +// EXTERNAL MODULE: ./node_modules/_safe-stable-stringify@2.5.0@safe-stable-stringify/index.js +var _safe_stable_stringify_2_5_0_safe_stable_stringify = __webpack_require__(53680); +;// CONCATENATED MODULE: ./node_modules/_safe-stable-stringify@2.5.0@safe-stable-stringify/esm/wrapper.js -const configure = _safe_stable_stringify_2_4_3_safe_stable_stringify.configure +const configure = _safe_stable_stringify_2_5_0_safe_stable_stringify.configure const stringify = (/* unused pure expression or super */ null && (cjsModule)) /* harmony default export */ var wrapper = ((/* unused pure expression or super */ null && (cjsModule))); @@ -600,7 +600,7 @@ function createField(Field, config) { /* harmony import */ var _ant_design_pro_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @ant-design/pro-utils */ 22102); /* harmony import */ var antd__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! antd */ 24905); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 59301); -/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 13305); +/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 82141); /* harmony import */ var _Field__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Field */ 40647); /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 37712); @@ -14389,7 +14389,7 @@ var isDeepEqualReact = __webpack_require__(91517); // EXTERNAL MODULE: ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/BaseForm/EditOrReadOnlyContext.js var EditOrReadOnlyContext = __webpack_require__(5774); // EXTERNAL MODULE: ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/BaseForm/createField.js + 4 modules -var createField = __webpack_require__(13305); +var createField = __webpack_require__(82141); ;// CONCATENATED MODULE: ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/components/Field/index.js @@ -15201,7 +15201,7 @@ var ProFormItem = function ProFormItem(props) { /* harmony import */ var _ant_design_pro_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @ant-design/pro-utils */ 22102); /* harmony import */ var antd__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! antd */ 5112); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 59301); -/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 13305); +/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 82141); /* harmony import */ var _Field__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Field */ 40647); /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 37712); @@ -23411,9 +23411,9 @@ exports["default"] = mergeClasses; /***/ }), -/***/ 15894: +/***/ 53680: /*!**********************************************************************************!*\ - !*** ./node_modules/_safe-stable-stringify@2.4.3@safe-stable-stringify/index.js ***! + !*** ./node_modules/_safe-stable-stringify@2.5.0@safe-stable-stringify/index.js ***! \**********************************************************************************/ /***/ (function(module, exports) { @@ -23440,7 +23440,7 @@ exports.configure = configure module.exports = stringify // eslint-disable-next-line no-control-regex -const strEscapeSequencesRegExp = /[\u0000-\u001f\u0022\u005c\ud800-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?:[^\ud800-\udbff]|^)[\udc00-\udfff]/ +const strEscapeSequencesRegExp = /[\u0000-\u001f\u0022\u005c\ud800-\udfff]/ // Escape C0 control characters, double quotes, the backslash and every code // unit with a numeric value in the inclusive range 0xD800 to 0xDFFF. @@ -23452,11 +23452,11 @@ function strEscape (str) { return JSON.stringify(str) } -function insertSort (array) { - // Insertion sort is very efficient for small input sizes but it has a bad +function sort (array, comparator) { + // Insertion sort is very efficient for small input sizes, but it has a bad // worst case complexity. Thus, use native array sort for bigger values. - if (array.length > 2e2) { - return array.sort() + if (array.length > 2e2 || comparator) { + return array.sort(comparator) } for (let i = 1; i < array.length; i++) { const currentValue = array[i] @@ -23517,6 +23517,17 @@ function getCircularValueOption (options) { return '"[Circular]"' } +function getDeterministicOption (options) { + let value + if (hasOwnProperty.call(options, 'deterministic')) { + value = options.deterministic + if (typeof value !== 'boolean' && typeof value !== 'function') { + throw new TypeError('The "deterministic" argument must be of type boolean or comparator function') + } + } + return value === undefined ? true : value +} + function getBooleanOption (options, key) { let value if (hasOwnProperty.call(options, key)) { @@ -23591,7 +23602,8 @@ function configure (options) { } const circularValue = getCircularValueOption(options) const bigint = getBooleanOption(options, 'bigint') - const deterministic = getBooleanOption(options, 'deterministic') + const deterministic = getDeterministicOption(options) + const comparator = typeof deterministic === 'function' ? deterministic : undefined const maximumDepth = getPositiveIntegerOption(options, 'maximumDepth') const maximumBreadth = getPositiveIntegerOption(options, 'maximumBreadth') @@ -23668,7 +23680,7 @@ function configure (options) { } const maximumPropertiesToStringify = Math.min(keyLength, maximumBreadth) if (deterministic && !isTypedArrayWithEntries(value)) { - keys = insertSort(keys) + keys = sort(keys, comparator) } stack.push(value) for (let i = 0; i < maximumPropertiesToStringify; i++) { @@ -23867,7 +23879,7 @@ function configure (options) { separator = join } if (deterministic) { - keys = insertSort(keys) + keys = sort(keys, comparator) } stack.push(value) for (let i = 0; i < maximumPropertiesToStringify; i++) { @@ -23929,7 +23941,8 @@ function configure (options) { let res = '' - if (Array.isArray(value)) { + const hasLength = value.length !== undefined + if (hasLength && Array.isArray(value)) { if (value.length === 0) { return '[]' } @@ -23964,14 +23977,14 @@ function configure (options) { } let separator = '' let maximumPropertiesToStringify = Math.min(keyLength, maximumBreadth) - if (isTypedArrayWithEntries(value)) { + if (hasLength && isTypedArrayWithEntries(value)) { res += stringifyTypedArray(value, ',', maximumBreadth) keys = keys.slice(value.length) maximumPropertiesToStringify -= value.length separator = ',' } if (deterministic) { - keys = insertSort(keys) + keys = sort(keys, comparator) } stack.push(value) for (let i = 0; i < maximumPropertiesToStringify; i++) { diff --git a/85016.412f2dbd.async.js b/85016.4be0f177.async.js similarity index 99% rename from 85016.412f2dbd.async.js rename to 85016.4be0f177.async.js index 1fc93ef624..7c31f7e387 100644 --- a/85016.412f2dbd.async.js +++ b/85016.4be0f177.async.js @@ -2190,9 +2190,6 @@ var HeaderComponents = function HeaderComponents(_ref) { src: logoUrl || logo }) }), location.pathname == '/' && /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - width: '300px' - }, children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", { src: __webpack_require__(/*! @/assets/images/home/schoollogo.png */ 32229), width: 252 diff --git a/index.html b/index.html index 858d696c0d..b5a1ce968c 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@ 头歌实践教学平台 - + @@ -27,7 +27,7 @@ display: block !important; } - + \ No newline at end of file diff --git a/p__Equipment__BookingManage__index.3b295f4e.async.js b/p__Equipment__BookingManage__index.64f881d6.async.js similarity index 99% rename from p__Equipment__BookingManage__index.3b295f4e.async.js rename to p__Equipment__BookingManage__index.64f881d6.async.js index 75bd932d92..0bb016de56 100644 --- a/p__Equipment__BookingManage__index.3b295f4e.async.js +++ b/p__Equipment__BookingManage__index.64f881d6.async.js @@ -432,10 +432,10 @@ function _reservation_today_data() { } // EXTERNAL MODULE: ./src/styles/table_botton.less var table_botton = __webpack_require__(78289); -// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules -var env = __webpack_require__(88499); // EXTERNAL MODULE: ./src/utils/util.tsx var util = __webpack_require__(80348); +// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules +var env = __webpack_require__(88499); // EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/input/index.js + 3 modules var input = __webpack_require__(92832); // EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/dropdown/index.js + 1 modules @@ -1518,7 +1518,7 @@ var Details = function Details(_ref) { onClick: function onClick() { var _info$date; var info = form.getFieldsValue(); - (0,util/* downLoadLink */.Nd)('', "".concat(env/* default */.Z.PROXY_SERVER, "/api/zz_classrooms/reservations.xlsx?keyword=").concat((info === null || info === void 0 ? void 0 : info.keyword) || '', "&date=").concat(info !== null && info !== void 0 && info.date ? dayjs_min_default()(info === null || info === void 0 || (_info$date = info.date) === null || _info$date === void 0 ? void 0 : _info$date.$d).format('YYYY-MM-DD') : '', "&device_id=").concat((info === null || info === void 0 ? void 0 : info.device_id) || '', "&role=").concat((info === null || info === void 0 ? void 0 : info.role) || '', "&shixun_id=").concat((info === null || info === void 0 ? void 0 : info.shixun_id) || '', "&status=").concat((info === null || info === void 0 ? void 0 : info.status) || '', "&type=1")); + (0,util/* downLoadLink */.Nd)('', "".concat(env/* default */.Z.API_SERVER, "/api/zz_classrooms/reservations.xlsx?keyword=").concat((info === null || info === void 0 ? void 0 : info.keyword) || '', "&date=").concat(info !== null && info !== void 0 && info.date ? dayjs_min_default()(info === null || info === void 0 || (_info$date = info.date) === null || _info$date === void 0 ? void 0 : _info$date.$d).format('YYYY-MM-DD') : '', "&device_id=").concat((info === null || info === void 0 ? void 0 : info.device_id) || '', "&role=").concat((info === null || info === void 0 ? void 0 : info.role) || '', "&shixun_id=").concat((info === null || info === void 0 ? void 0 : info.shixun_id) || '', "&status=").concat((info === null || info === void 0 ? void 0 : info.status) || '', "&type=1")); }, children: "\u5BFC\u51FA" }) diff --git a/p__Equipment__Index__index.6cb09f05.async.js b/p__Equipment__Index__index.040ccfeb.async.js similarity index 95% rename from p__Equipment__Index__index.6cb09f05.async.js rename to p__Equipment__Index__index.040ccfeb.async.js index 571e4491a9..e4e3a28e17 100644 --- a/p__Equipment__Index__index.6cb09f05.async.js +++ b/p__Equipment__Index__index.040ccfeb.async.js @@ -44,7 +44,8 @@ var SubMenu = menu/* default */.Z.SubMenu; var Engineering = function Engineering(_ref) { var user = _ref.user, globalSetting = _ref.globalSetting, - engineering = _ref.engineering; + engineering = _ref.engineering, + dispatch = _ref.dispatch; var location = (0,_umi_production_exports.useLocation)(); var _useState = (0,_react_17_0_2_react.useState)(1), _useState2 = slicedToArray_default()(_useState, 2), @@ -58,6 +59,18 @@ var Engineering = function Engineering(_ref) { return e + 1; }); }, [location.pathname]); + (0,_react_17_0_2_react.useEffect)(function () { + dispatch({ + type: 'globalSetting/footerToggle', + payload: false + }); + return function () { + dispatch({ + type: 'globalSetting/footerToggle', + payload: true + }); + }; + }, []); function getItem(label, key, icon, children, type) { return { key: key, @@ -132,11 +145,13 @@ var Engineering = function Engineering(_ref) { /* harmony default export */ var Index = ((0,_umi_production_exports.connect)(function (_ref2) { var globalSetting = _ref2.globalSetting, user = _ref2.user, - engineering = _ref2.engineering; + engineering = _ref2.engineering, + dispatch = _ref2.dispatch; return { user: user, globalSetting: globalSetting, - engineering: engineering + engineering: engineering, + dispatch: dispatch }; })(Engineering)); diff --git a/p__Equipment__Information__index.9d8aa087.async.js b/p__Equipment__Information__index.0dc18879.async.js similarity index 99% rename from p__Equipment__Information__index.9d8aa087.async.js rename to p__Equipment__Information__index.0dc18879.async.js index 7177813a05..b165cba7c8 100644 --- a/p__Equipment__Information__index.9d8aa087.async.js +++ b/p__Equipment__Information__index.0dc18879.async.js @@ -41,8 +41,6 @@ var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerat var onlinedevice = __webpack_require__(26367); // EXTERNAL MODULE: ./src/styles/table_botton.less var table_botton = __webpack_require__(78289); -// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules -var env = __webpack_require__(88499); // EXTERNAL MODULE: ./src/utils/util.tsx var util = __webpack_require__(80348); // EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/form/index.js + 19 modules @@ -367,6 +365,8 @@ var GLDevicesDialog = function GLDevicesDialog(_ref) { ;// CONCATENATED MODULE: ./src/pages/Equipment/Information/InfoList/index.less?modules // extracted by mini-css-extract-plugin /* harmony default export */ var InfoListmodules = ({"search_params":"search_params___qdp66","search":"search___wEG7n","searchIcon":"searchIcon___orerQ","clear_Data":"clear_Data___M2GZV"}); +// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules +var env = __webpack_require__(88499); ;// CONCATENATED MODULE: ./src/pages/Equipment/Information/InfoList/index.tsx @@ -948,7 +948,7 @@ var InfoList = function InfoList(_ref) { }, onClick: function onClick() { var info = form.getFieldsValue(); - (0,util/* downLoadLink */.Nd)('', "".concat(env/* default */.Z.PROXY_SERVER, "/api/zz_classrooms/devices.xlsx?keyword=").concat((info === null || info === void 0 ? void 0 : info.keyword) || '', "&classroom_id=").concat((info === null || info === void 0 ? void 0 : info.classroom_id) || '', "&tag_id=").concat((info === null || info === void 0 ? void 0 : info.tag_id) || '', "&reservation_status=").concat((info === null || info === void 0 ? void 0 : info.reservation_status) || '', "&type_id=").concat((info === null || info === void 0 ? void 0 : info.type_id) || '', "&use_status=").concat((info === null || info === void 0 ? void 0 : info.use_status) || '', "&status=").concat((info === null || info === void 0 ? void 0 : info.status) || '', "&scrapped=0")); + (0,util/* downLoadLink */.Nd)('', "".concat(env/* default */.Z.API_SERVER, "/api/zz_classrooms/devices.xlsx?keyword=").concat((info === null || info === void 0 ? void 0 : info.keyword) || '', "&classroom_id=").concat((info === null || info === void 0 ? void 0 : info.classroom_id) || '', "&tag_id=").concat((info === null || info === void 0 ? void 0 : info.tag_id) || '', "&reservation_status=").concat((info === null || info === void 0 ? void 0 : info.reservation_status) || '', "&type_id=").concat((info === null || info === void 0 ? void 0 : info.type_id) || '', "&use_status=").concat((info === null || info === void 0 ? void 0 : info.use_status) || '', "&status=").concat((info === null || info === void 0 ? void 0 : info.status) || '', "&scrapped=0")); }, children: "\u5BFC\u51FA" }) diff --git a/p__Equipment__MessageCenterManage__index.9f9a6456.async.js b/p__Equipment__MessageCenterManage__index.dcce7e55.async.js similarity index 99% rename from p__Equipment__MessageCenterManage__index.9f9a6456.async.js rename to p__Equipment__MessageCenterManage__index.dcce7e55.async.js index 9fe345929b..213b07963d 100644 --- a/p__Equipment__MessageCenterManage__index.9f9a6456.async.js +++ b/p__Equipment__MessageCenterManage__index.dcce7e55.async.js @@ -427,8 +427,6 @@ function _message_table_delete() { } // EXTERNAL MODULE: ./src/styles/table_botton.less var table_botton = __webpack_require__(78289); -// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules -var env = __webpack_require__(88499); // EXTERNAL MODULE: ./src/utils/util.tsx var util = __webpack_require__(80348); // EXTERNAL MODULE: ./src/.umi-production/exports.ts @@ -446,6 +444,8 @@ var _react_17_0_2_react = __webpack_require__(59301); ;// CONCATENATED MODULE: ./src/pages/Equipment/MessageCenterManage/index.less?modules // extracted by mini-css-extract-plugin /* harmony default export */ var MessageCenterManagemodules = ({"superiorTabs":"superiorTabs___UlZKK","messageCon":"messageCon___f3Dn7","messageCon_tabs":"messageCon_tabs___FEWpz","tab_item":"tab_item___HXDlP","active_tab_item":"active_tab_item___Cyi7k","wd_message_item":"wd_message_item___oTo2f","message_item":"message_item___l2I0M","message_item_warp":"message_item_warp___kvnzh","left_con":"left_con___RMKoq","wd_drop":"wd_drop___og2ZN","item_name":"item_name___OsAV1","item_time":"item_time___W2zGf","item_info":"item_info___rOlXj","item_info_warning":"item_info_warning___l5iv_","btn":"btn___Oodq4","messageCon_page":"messageCon_page___O2djX"}); +// EXTERNAL MODULE: ./src/utils/env.ts + 1 modules +var env = __webpack_require__(88499); // EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/jsx-runtime.js var jsx_runtime = __webpack_require__(37712); ;// CONCATENATED MODULE: ./src/pages/Equipment/MessageCenterManage/index.tsx @@ -603,7 +603,7 @@ var DeviceInfoPage = function DeviceInfoPage(_ref) { }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.ZP, { type: "primary", onClick: function onClick() { - (0,util/* downLoadLink */.Nd)('', "".concat(env/* default */.Z.PROXY_SERVER, "/api/zz_classrooms/message_centers.xlsx?msg_type=").concat(activeKey || '', "&is_read=").concat(activeKey1 || '')); + (0,util/* downLoadLink */.Nd)('', "".concat(env/* default */.Z.API_SERVER, "/api/zz_classrooms/message_centers.xlsx?msg_type=").concat(activeKey || '', "&is_read=").concat(activeKey1 || '')); }, children: "\u5BFC\u51FA" })] diff --git a/p__Homepage__index.1e9c2ddd.async.js b/p__Homepage__index.bde26c58.async.js similarity index 99% rename from p__Homepage__index.1e9c2ddd.async.js rename to p__Homepage__index.bde26c58.async.js index 60403a8440..af9ea767d5 100644 --- a/p__Homepage__index.1e9c2ddd.async.js +++ b/p__Homepage__index.bde26c58.async.js @@ -77,7 +77,7 @@ var rightImg_namespaceObject = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAv var A = "/react/build/videos/20821c44-1775248f8e1.mp4"; var B = "/react/build/videos/28357c10-1775907ad78.mp4"; var C = "/react/build/videos/4fdca3e8-17752499adf.mp4"; -var D = "/react/build/videos5490aa0d-17759081e1d.mp4"; +var D = "/react/build/videos/5490aa0d-17759081e1d.mp4"; var E = "/react/build/videos/3fcef362-17759076bd9.mp4"; // const B = "http://192.168.31.236:8080/c.mp4" @@ -630,7 +630,7 @@ var AccountPage = function AccountPage(_ref) { className: "".concat(Homepagemodules.pic2, " ").concat(fade ? '' : Homepagemodules.fade), children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { style: { - opacity: 0.1 + opacity: 0.3 }, children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", { src: currentNewsIndex + 1 < newsList.length ? newsList !== null && newsList !== void 0 && (_newsList = newsList[currentNewsIndex + 1]) !== null && _newsList !== void 0 && _newsList.isPushed ? "".concat(newsList === null || newsList === void 0 || (_newsList2 = newsList[currentNewsIndex + 1]) === null || _newsList2 === void 0 || (_newsList2 = _newsList2.attachment) === null || _newsList2 === void 0 ? void 0 : _newsList2.url) : "".concat(env/* default */.Z.IMG_SERVER) + "".concat(newsList === null || newsList === void 0 || (_newsList3 = newsList[currentNewsIndex + 1]) === null || _newsList3 === void 0 || (_newsList3 = _newsList3.attachment) === null || _newsList3 === void 0 ? void 0 : _newsList3.url) : "".concat(env/* default */.Z.IMG_SERVER) + "".concat(newsList === null || newsList === void 0 || (_newsList$ = newsList[0]) === null || _newsList$ === void 0 || (_newsList$ = _newsList$.attachment) === null || _newsList$ === void 0 ? void 0 : _newsList$.url), diff --git a/p__IOT__DeviceManage__index.3f944ca4.async.js b/p__IOT__DeviceManage__index.283c7917.async.js similarity index 57% rename from p__IOT__DeviceManage__index.3f944ca4.async.js rename to p__IOT__DeviceManage__index.283c7917.async.js index 01f174b2b0..2ddb8407dc 100644 --- a/p__IOT__DeviceManage__index.3f944ca4.async.js +++ b/p__IOT__DeviceManage__index.283c7917.async.js @@ -514,625 +514,630 @@ var DeviceManage = function DeviceManage(_ref) { return DeviceManagemodules.maleRow; } }; - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { style: { - margin: '0 100px' + background: "#fff" }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: DeviceManagemodules.header_div, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: DeviceManagemodules.header_title, - children: "\u5B9E\u9A8C\u5BA4\u7535\u6E90\u8FDC\u7A0B\u63A7\u5236\u7CFB\u7EDF" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z.Search, { - style: { - marginLeft: 'auto' - }, - placeholder: "\u8BF7\u8F93\u5165\u540D\u79F0/\u8BBE\u5907\u7F16\u53F7", - size: "large", - className: DeviceManagemodules.search, - value: keyword, - onChange: function onChange(e) { - setkeyword(e.target.value); - }, - onSearch: function onSearch(value) { - setkeyword(value); - }, - suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont icon-sousuo9 font14 ".concat(DeviceManagemodules.searchIcon), - onClick: function onClick() { - setkeyword(keyword); - getData(true); - } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: DeviceManagemodules.clear_Data, - onClick: function onClick() { - setRowData(null); - setRooms2([]); - setOpenAddModal(true); - }, - children: "\u5173\u8054\u8BBE\u5907" - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: DeviceManagemodules.header_div, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { style: { - margin: '20px 0px 6px 0px' + margin: '0 100px' }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { - size: "large", + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: DeviceManagemodules.header_div, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: DeviceManagemodules.header_title, + children: "\u5B9E\u9A8C\u5BA4\u7535\u6E90\u8FDC\u7A0B\u63A7\u5236\u7CFB\u7EDF" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z.Search, { style: { - width: 140 + marginLeft: 'auto' }, - defaultValue: sys, - value: sys, + placeholder: "\u8BF7\u8F93\u5165\u540D\u79F0/\u8BBE\u5907\u7F16\u53F7", + size: "large", + className: DeviceManagemodules.search, + value: keyword, onChange: function onChange(e) { - setSys(e); - //实验室房间 - (0,laboratory/* classroom_rooms_query */.jd)({ - page: 1, - limit: 10000, - classroom_id: e - }).then(function (res) { - var _res$data7; - setRooms(toConsumableArray_default()(res === null || res === void 0 || (_res$data7 = res.data) === null || _res$data7 === void 0 ? void 0 : _res$data7.list)); - }); + setkeyword(e.target.value); + }, + onSearch: function onSearch(value) { + setkeyword(value); }, - children: (_ref3 = [{ - id: '', - title: '全部' - }].concat(toConsumableArray_default()(laboratorys))) === null || _ref3 === void 0 ? void 0 : _ref3.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); + suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-sousuo9 font14 ".concat(DeviceManagemodules.searchIcon), + onClick: function onClick() { + setkeyword(keyword); + getData(true); + } }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4\u623F\u95F4", + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: DeviceManagemodules.clear_Data, + onClick: function onClick() { + setRowData(null); + setRooms2([]); + setOpenAddModal(true); + }, + children: "\u5173\u8054\u8BBE\u5907" + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: DeviceManagemodules.header_div, style: { - marginLeft: '20px' + margin: '20px 0px 6px 0px' }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { - size: "large", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + size: "large", + style: { + width: 140 + }, + defaultValue: sys, + value: sys, + onChange: function onChange(e) { + setSys(e); + //实验室房间 + (0,laboratory/* classroom_rooms_query */.jd)({ + page: 1, + limit: 10000, + classroom_id: e + }).then(function (res) { + var _res$data7; + setRooms(toConsumableArray_default()(res === null || res === void 0 || (_res$data7 = res.data) === null || _res$data7 === void 0 ? void 0 : _res$data7.list)); + }); + }, + children: (_ref3 = [{ + id: '', + title: '全部' + }].concat(toConsumableArray_default()(laboratorys))) === null || _ref3 === void 0 ? void 0 : _ref3.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4\u623F\u95F4", style: { - width: 140 - }, - defaultValue: sysRoom, - value: sysRoom, - onChange: function onChange(e) { - setSysRoom(e); + marginLeft: '20px' }, - children: (_ref4 = [{ - id: '', - title: '全部' - }].concat(toConsumableArray_default()(rooms))) === null || _ref4 === void 0 ? void 0 : _ref4.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + size: "large", + style: { + width: 140 + }, + defaultValue: sysRoom, + value: sysRoom, + onChange: function onChange(e) { + setSysRoom(e); + }, + children: (_ref4 = [{ + id: '', + title: '全部' + }].concat(toConsumableArray_default()(rooms))) === null || _ref4 === void 0 ? void 0 : _ref4.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u8BBE\u5907\u72B6\u6001", - style: { - marginLeft: '20px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select["default"], { + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u8BBE\u5907\u72B6\u6001", style: { - width: 140 - }, - defaultValue: deviceStatus, - value: deviceStatus, - onChange: function onChange(e) { - setDeviceStatus(e); + marginLeft: '20px' }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: "", - children: "\u5168\u90E8" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: "2", - children: "\u901A\u7535\u4E2D" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: "1", - children: "\u65AD\u7535\u4E2D" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: "3", - children: "\u5F02\u5E38" - })] - }) - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, { - // rowSelection={{ - // type: 'checkbox', - // ...rowSelection, - // }} - loading: tableLoading, - pagination: false, - dataSource: tableData, - columns: columns, - rowClassName: rowClassName - }, refresh), /*#__PURE__*/(0,jsx_runtime.jsx)("aside", { - children: total > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - padding: '10px 7px 20px 7px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select["default"], { style: { - color: '#656F87' + width: 140 + }, + defaultValue: deviceStatus, + value: deviceStatus, + onChange: function onChange(e) { + setDeviceStatus(e); }, - children: ["\u5171", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "c-light-primary", - children: total - }), "\u6761\u6570\u636E"] + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: "", + children: "\u5168\u90E8" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: "2", + children: "\u901A\u7535\u4E2D" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: "1", + children: "\u65AD\u7535\u4E2D" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: "3", + children: "\u5F02\u5E38" + })] }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, { - showSizeChanger: true, - showQuickJumper: true, - onChange: onShowSizeChange, - defaultCurrent: 1, - pageSizeOptions: ['10', '20', '50', '100'], - current: page || 1, - pageSize: limit || 10, - defaultPageSize: 10, - total: total })] - }) : '' - }), !!(selectIds !== null && selectIds !== void 0 && selectIds.length) && /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: DeviceManagemodules.batch, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("aside", { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { + }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, { + // rowSelection={{ + // type: 'checkbox', + // ...rowSelection, + // }} + loading: tableLoading, + pagination: false, + dataSource: tableData, + columns: columns, + rowClassName: rowClassName + }, refresh), /*#__PURE__*/(0,jsx_runtime.jsx)("aside", { + children: total > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { style: { - flexShrink: 0, - marginRight: 20 + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + padding: '10px 7px 20px 7px' }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#656F87' + }, + children: ["\u5171", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "c-light-primary", + children: total + }), "\u6761\u6570\u636E"] + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, { + showSizeChanger: true, + showQuickJumper: true, + onChange: onShowSizeChange, + defaultCurrent: 1, + pageSizeOptions: ['10', '20', '50', '100'], + current: page || 1, + pageSize: limit || 10, + defaultPageSize: 10, + total: total + })] + }) : '' + }), !!(selectIds !== null && selectIds !== void 0 && selectIds.length) && /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: DeviceManagemodules.batch, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("aside", { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { style: { - color: '#999', - fontSize: 14 + flexShrink: 0, + marginRight: 20 }, - children: ["\u5DF2\u9009(", selectIds === null || selectIds === void 0 ? void 0 : selectIds.length, ")"] - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: DeviceManagemodules.btns, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: DeviceManagemodules.btn, - onClick: function onClick() { - modal/* default */.Z.confirm({ - centered: true, - okText: '确定', - cancelText: '取消', - icon: null, - title: "提示", - content: "\u60A8\u9009\u4E2D\u7684\u8BBE\u5907\uFF08".concat(selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { - return item.name; - }).join('、'), "\uFF09\u5C06\u4F1A\u88AB\u6279\u91CF\u5F00\u673A, \u8BF7\u60A8\u786E\u8BA4!"), - onOk: function () { - var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { - return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { - while (1) switch (_context2.prev = _context2.next) { - case 0: - (0,iot/* lot_up */.zh)({ - device_ids: selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { - return item === null || item === void 0 ? void 0 : item.id; - }) - }).then(function (res) { - if (res.status === 0) { - message/* default */.ZP.success('开机成功'); - getData(true); - } - }); - case 1: - case "end": - return _context2.stop(); - } - }, _callee2); - })); - function onOk() { - return _onOk.apply(this, arguments); - } - return onOk; - }() - }); - }, - children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)(icons_CheckCircleOutlined, { + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { style: { - marginRight: 5 - } - }), "\u6279\u91CF\u5F00\u673A"] + color: '#999', + fontSize: 14 + }, + children: ["\u5DF2\u9009(", selectIds === null || selectIds === void 0 ? void 0 : selectIds.length, ")"] + }) }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: DeviceManagemodules.btn, - onClick: function onClick() { - var obj = []; - selectIds === null || selectIds === void 0 || selectIds.map(function (item) { - if (item !== null && item !== void 0 && item.has_reservation) { - obj.push(item === null || item === void 0 ? void 0 : item.title); + className: DeviceManagemodules.btns, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: DeviceManagemodules.btn, + onClick: function onClick() { + modal/* default */.Z.confirm({ + centered: true, + okText: '确定', + cancelText: '取消', + icon: null, + title: "提示", + content: "\u60A8\u9009\u4E2D\u7684\u8BBE\u5907\uFF08".concat(selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { + return item.name; + }).join('、'), "\uFF09\u5C06\u4F1A\u88AB\u6279\u91CF\u5F00\u673A, \u8BF7\u60A8\u786E\u8BA4!"), + onOk: function () { + var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee2() { + return regeneratorRuntime_default()().wrap(function _callee2$(_context2) { + while (1) switch (_context2.prev = _context2.next) { + case 0: + (0,iot/* lot_up */.zh)({ + device_ids: selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { + return item === null || item === void 0 ? void 0 : item.id; + }) + }).then(function (res) { + if (res.status === 0) { + message/* default */.ZP.success('开机成功'); + getData(true); + } + }); + case 1: + case "end": + return _context2.stop(); + } + }, _callee2); + })); + function onOk() { + return _onOk.apply(this, arguments); + } + return onOk; + }() + }); + }, + children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)(icons_CheckCircleOutlined, { + style: { + marginRight: 5 } - }); - modal/* default */.Z.confirm({ - centered: true, - okText: '确定', - cancelText: '取消', - icon: null, - title: "提示", - content: "\u60A8\u9009\u4E2D\u7684\u8BBE\u5907\uFF08".concat(selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { - return item.name; - }).join('、'), "\uFF09\u5C06\u4F1A\u88AB\u6279\u91CF\u5173\u673A, \u8BF7\u60A8\u786E\u8BA4!"), - onOk: function () { - var _onOk2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() { - return regeneratorRuntime_default()().wrap(function _callee3$(_context3) { - while (1) switch (_context3.prev = _context3.next) { - case 0: - (0,iot/* lot_down */.hQ)({ - device_ids: selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { - return item === null || item === void 0 ? void 0 : item.id; - }) - }).then(function (res) { - if (res.status === 0) { - message/* default */.ZP.success('禁用成功'); - getData(true); - } - }); - case 1: - case "end": - return _context3.stop(); - } - }, _callee3); - })); - function onOk() { - return _onOk2.apply(this, arguments); - } - return onOk; - }() - }); - }, - children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)(PoweroffOutlined/* default */.Z, { - style: { - marginRight: 5 - } - }), "\u6279\u91CF\u5173\u673A"] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - onClick: function onClick() { - setSelectIds([]); - setRefresh(new Date()); - }, - style: { - marginLeft: 'auto' - }, - className: DeviceManagemodules.btn, - children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont icon-piliangcaozuoicon2" - }), "\u53D6\u6D88\u64CD\u4F5C"] - })] - })] - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { - maskClosable: false, - centered: true, - keyboard: false, - destroyOnClose: true, - className: DeviceManagemodules.my_modal, - open: openAddModal, - title: "".concat(rowData ? '编辑关联设备' : '关联设备'), - width: "948px", - 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: - _context4.next = 2; - return myForm.validateFields(); - case 2: - if (rowData) { - (0,iot/* editIOTDevices */.Tk)({ - device: objectSpread2_default()({}, myForm.getFieldsValue()) - }, rowData === null || rowData === void 0 ? void 0 : rowData.id).then(function (res) { - if ((res === null || res === void 0 ? void 0 : res.status) == 0) { - message/* default */.ZP.success('编辑成功'); - setOpenAddModal(false); - myForm.resetFields(); - getData(true); + }), "\u6279\u91CF\u5F00\u673A"] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: DeviceManagemodules.btn, + onClick: function onClick() { + var obj = []; + selectIds === null || selectIds === void 0 || selectIds.map(function (item) { + if (item !== null && item !== void 0 && item.has_reservation) { + obj.push(item === null || item === void 0 ? void 0 : item.title); } }); - } else { - (0,iot/* addIOTDevices */["if"])({ - device: objectSpread2_default()(objectSpread2_default()({}, myForm.getFieldsValue()), {}, { - genre: 'smart_switch', - category: 1 - }) - }).then(function (res) { - if ((res === null || res === void 0 ? void 0 : res.status) == 0) { - message/* default */.ZP.success('关联成功'); - setOpenAddModal(false); - myForm.resetFields(); - getData(true); - } + modal/* default */.Z.confirm({ + centered: true, + okText: '确定', + cancelText: '取消', + icon: null, + title: "提示", + content: "\u60A8\u9009\u4E2D\u7684\u8BBE\u5907\uFF08".concat(selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { + return item.name; + }).join('、'), "\uFF09\u5C06\u4F1A\u88AB\u6279\u91CF\u5173\u673A, \u8BF7\u60A8\u786E\u8BA4!"), + onOk: function () { + var _onOk2 = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee3() { + return regeneratorRuntime_default()().wrap(function _callee3$(_context3) { + while (1) switch (_context3.prev = _context3.next) { + case 0: + (0,iot/* lot_down */.hQ)({ + device_ids: selectIds === null || selectIds === void 0 ? void 0 : selectIds.map(function (item) { + return item === null || item === void 0 ? void 0 : item.id; + }) + }).then(function (res) { + if (res.status === 0) { + message/* default */.ZP.success('禁用成功'); + getData(true); + } + }); + case 1: + case "end": + return _context3.stop(); + } + }, _callee3); + })); + function onOk() { + return _onOk2.apply(this, arguments); + } + return onOk; + }() }); - } - case 3: - case "end": - return _context4.stop(); - } - }, _callee4); - })), - onCancel: function onCancel() { - setOpenAddModal(false); - myForm.resetFields(); - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { - form: myForm, - wrapperCol: { - span: 19 - }, - style: { - maxHeight: "550px", - overflowY: 'auto' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u8BBE\u5907\u7F16\u53F7", - name: "number", - rules: [{ - required: true - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u7F16\u53F7", - showCount: true, - maxLength: 10, - onChange: function onChange(e) { - var _e$target; - myForm.setFieldValue('number', e === null || e === void 0 || (_e$target = e.target) === null || _e$target === void 0 || (_e$target = _e$target.value) === null || _e$target === void 0 ? void 0 : _e$target.trim()); - } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u8BBE\u5907\u540D\u79F0", - name: "name", - rules: [{ - required: true - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u540D\u79F0", - showCount: true, - maxLength: 30, - onChange: function onChange(e) { - var _e$target2; - myForm.setFieldValue('name', e === null || e === void 0 || (_e$target2 = e.target) === null || _e$target2 === void 0 || (_e$target2 = _e$target2.value) === null || _e$target2 === void 0 ? void 0 : _e$target2.trim()); - } - }) - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u8BBE\u5907\u578B\u53F7", - name: "model", - rules: [{ - required: true - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u578B\u53F7", - showCount: true, - maxLength: 30, - onChange: function onChange(e) { - var _e$target3; - myForm.setFieldValue('model', e === null || e === void 0 || (_e$target3 = e.target) === null || _e$target3 === void 0 || (_e$target3 = _e$target3.value) === null || _e$target3 === void 0 ? void 0 : _e$target3.trim()); - } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u8BBE\u5907IP", - name: "ip", - rules: [{ - required: true, - message: '请输入设备IP' - }, { - validator: validateIPAddress - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907IP", - onChange: function onChange(e) { - var _e$target4; - myForm.setFieldValue('ip', e === null || e === void 0 || (_e$target4 = e.target) === null || _e$target4 === void 0 || (_e$target4 = _e$target4.value) === null || _e$target4 === void 0 ? void 0 : _e$target4.trim()); - } - }) + }, + children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)(PoweroffOutlined/* default */.Z, { + style: { + marginRight: 5 + } + }), "\u6279\u91CF\u5173\u673A"] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + onClick: function onClick() { + setSelectIds([]); + setRefresh(new Date()); + }, + style: { + marginLeft: 'auto' + }, + className: DeviceManagemodules.btn, + children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-piliangcaozuoicon2" + }), "\u53D6\u6D88\u64CD\u4F5C"] + })] })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(row/* default */.Z, { - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u7AEF\u53E3", - name: "port", - rules: [{ - required: true, - message: "请输入端口号" - }, { - validator: function validator(_, value) { - return /^([0-9]|[1-9]\d|[1-9]\d{2}|[1-9]\d{3}|[1-5]\d{4}|6[0-4]\d{3}|65[0-4]\d{2}|655[0-2]\d|6553[0-5])$/.test(value) || !value ? Promise.resolve() : Promise.reject(new Error('端口输入范围(0-65535)')); - } - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - size: "large", - placeholder: "\u8BF7\u8F93\u5165\u7AEF\u53E3", - onChange: function onChange(e) { - var _e$target5; - myForm.setFieldValue('port', e === null || e === void 0 || (_e$target5 = e.target) === null || _e$target5 === void 0 || (_e$target5 = _e$target5.value) === null || _e$target5 === void 0 ? void 0 : _e$target5.trim()); - } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { + maskClosable: false, + centered: true, + keyboard: false, + destroyOnClose: true, + className: DeviceManagemodules.my_modal, + open: openAddModal, + title: "".concat(rowData ? '编辑关联设备' : '关联设备'), + width: "948px", + 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: + _context4.next = 2; + return myForm.validateFields(); + case 2: + if (rowData) { + (0,iot/* editIOTDevices */.Tk)({ + device: objectSpread2_default()({}, myForm.getFieldsValue()) + }, rowData === null || rowData === void 0 ? void 0 : rowData.id).then(function (res) { + if ((res === null || res === void 0 ? void 0 : res.status) == 0) { + message/* default */.ZP.success('编辑成功'); + setOpenAddModal(false); + myForm.resetFields(); + getData(true); + } + }); + } else { + (0,iot/* addIOTDevices */["if"])({ + device: objectSpread2_default()(objectSpread2_default()({}, myForm.getFieldsValue()), {}, { + genre: 'smart_switch', + category: 1 + }) + }).then(function (res) { + if ((res === null || res === void 0 ? void 0 : res.status) == 0) { + message/* default */.ZP.success('关联成功'); + setOpenAddModal(false); + myForm.resetFields(); + getData(true); + } + }); + } + case 3: + case "end": + return _context4.stop(); + } + }, _callee4); + })), + onCancel: function onCancel() { + setOpenAddModal(false); + myForm.resetFields(); + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { + form: myForm, + wrapperCol: { + span: 19 + }, + style: { + maxHeight: "550px", + overflowY: 'auto' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u8BBE\u5907\u7F16\u53F7", + name: "number", + rules: [{ + required: true + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u7F16\u53F7", + showCount: true, + maxLength: 10, + onChange: function onChange(e) { + var _e$target; + myForm.setFieldValue('number', e === null || e === void 0 || (_e$target = e.target) === null || _e$target === void 0 || (_e$target = _e$target.value) === null || _e$target === void 0 ? void 0 : _e$target.trim()); + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u8BBE\u5907\u540D\u79F0", + name: "name", + rules: [{ + required: true + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u540D\u79F0", + showCount: true, + maxLength: 30, + onChange: function onChange(e) { + var _e$target2; + myForm.setFieldValue('name', e === null || e === void 0 || (_e$target2 = e.target) === null || _e$target2 === void 0 || (_e$target2 = _e$target2.value) === null || _e$target2 === void 0 ? void 0 : _e$target2.trim()); + } + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u8BBE\u5907\u578B\u53F7", + name: "model", + rules: [{ + required: true + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u578B\u53F7", + showCount: true, + maxLength: 30, + onChange: function onChange(e) { + var _e$target3; + myForm.setFieldValue('model', e === null || e === void 0 || (_e$target3 = e.target) === null || _e$target3 === void 0 || (_e$target3 = _e$target3.value) === null || _e$target3 === void 0 ? void 0 : _e$target3.trim()); + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u8BBE\u5907IP", + name: "ip", + rules: [{ + required: true, + message: '请输入设备IP' + }, { + validator: validateIPAddress + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907IP", + onChange: function onChange(e) { + var _e$target4; + myForm.setFieldValue('ip', e === null || e === void 0 || (_e$target4 = e.target) === null || _e$target4 === void 0 || (_e$target4 = _e$target4.value) === null || _e$target4 === void 0 ? void 0 : _e$target4.trim()); + } + }) + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(row/* default */.Z, { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u7AEF\u53E3", + name: "port", + rules: [{ + required: true, + message: "请输入端口号" + }, { + validator: function validator(_, value) { + return /^([0-9]|[1-9]\d|[1-9]\d{2}|[1-9]\d{3}|[1-5]\d{4}|6[0-4]\d{3}|65[0-4]\d{2}|655[0-2]\d|6553[0-5])$/.test(value) || !value ? Promise.resolve() : Promise.reject(new Error('端口输入范围(0-65535)')); + } + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u7AEF\u53E3", + onChange: function onChange(e) { + var _e$target5; + myForm.setFieldValue('port', e === null || e === void 0 || (_e$target5 = e.target) === null || _e$target5 === void 0 || (_e$target5 = _e$target5.value) === null || _e$target5 === void 0 ? void 0 : _e$target5.trim()); + } + }) }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u5173\u8054\u5730\u70B9", - name: "classroom_id", - rules: [{ - required: true, - message: '请选择实验室' - }], - style: { - width: '60%' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { - size: "large", - placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4", - onChange: function onChange(e) { - myForm.setFieldValue('classroom_room_id', null); - //实验室房间 - (0,laboratory/* classroom_rooms_query */.jd)({ - page: 1, - limit: 10000, - classroom_id: e - }).then(function (res) { - var _res$data8; - setRooms2(toConsumableArray_default()(res === null || res === void 0 || (_res$data8 = res.data) === null || _res$data8 === void 0 ? void 0 : _res$data8.list)); - }); + }), /*#__PURE__*/(0,jsx_runtime.jsxs)(row/* default */.Z, { + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u5173\u8054\u5730\u70B9", + name: "classroom_id", + rules: [{ + required: true, + message: '请选择实验室' + }], + style: { + width: '60%' }, - children: laboratorys === null || laboratorys === void 0 ? void 0 : laboratorys.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + size: "large", + placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4", + onChange: function onChange(e) { + myForm.setFieldValue('classroom_room_id', null); + //实验室房间 + (0,laboratory/* classroom_rooms_query */.jd)({ + page: 1, + limit: 10000, + classroom_id: e + }).then(function (res) { + var _res$data8; + setRooms2(toConsumableArray_default()(res === null || res === void 0 || (_res$data8 = res.data) === null || _res$data8 === void 0 ? void 0 : _res$data8.list)); + }); + }, + children: laboratorys === null || laboratorys === void 0 ? void 0 : laboratorys.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "", - name: "classroom_room_id", - style: { - width: '40%' - }, - rules: [{ - required: true, - message: '请选择实验室房间' - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { - size: "large", - placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4\u623F\u95F4", + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "", + name: "classroom_room_id", style: { - width: '300px !important' + width: '40%' }, - children: rooms2 === null || rooms2 === void 0 ? void 0 : rooms2.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); + rules: [{ + required: true, + message: '请选择实验室房间' + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + size: "large", + placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4\u623F\u95F4", + style: { + width: '300px !important' + }, + children: rooms2 === null || rooms2 === void 0 ? void 0 : rooms2.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) }) - }) + })] })] - })] - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { - maskClosable: false, - centered: true, - keyboard: false, - destroyOnClose: true, - open: controlModal, - title: "\u5F53\u524D\u63A7\u5236\u7684\u4E3A (".concat(rowData === null || rowData === void 0 ? void 0 : rowData.classroom_title, ")\u2014(").concat(rowData === null || rowData === void 0 ? void 0 : rowData.classroom_room_title, ")\u603B\u7535\u6E90"), - width: "600px", - footer: null, - onCancel: function onCancel() { - setControlModal(false); - }, - children: !isSpin ? /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - width: '100%', - height: '265px', - display: 'flex', - alignItems: 'center', - justifyContent: 'center' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, { - tip: "\u83B7\u53D6\u6700\u65B0\u72B6\u6001\u4E2D...", - delay: 500 }) - }) : /*#__PURE__*/(0,jsx_runtime.jsx)(config_provider/* default */.ZP, { - theme: { - components: { - Spin: { - colorBgContainer: 'rgba(0, 0, 0, .4)' - } - } + }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { + maskClosable: false, + centered: true, + keyboard: false, + destroyOnClose: true, + open: controlModal, + title: "\u5F53\u524D\u63A7\u5236\u7684\u4E3A (".concat(rowData === null || rowData === void 0 ? void 0 : rowData.classroom_title, ")\u2014(").concat(rowData === null || rowData === void 0 ? void 0 : rowData.classroom_room_title, ")\u603B\u7535\u6E90"), + width: "600px", + footer: null, + onCancel: function onCancel() { + setControlModal(false); }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(spin/* default */.Z, { - className: DeviceManagemodules.is_spin, - delay: 500, - spinning: !isLoading, - tip: (rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart' ? '断电中' : '通电中', + children: !isSpin ? /*#__PURE__*/(0,jsx_runtime.jsx)("div", { style: { - paddingTop: 20 + width: '100%', + height: '265px', + display: 'flex', + alignItems: 'center', + justifyContent: 'center' }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: "pt20" - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: DeviceManagemodules.kg_btn, - style: { - background: "".concat((rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart' ? '#20A639' : '#FF0000') - }, - onClick: function onClick() { - setIsLoading(false); - if ((rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart') { - (0,iot/* lot_up */.zh)({ - device_ids: [rowData === null || rowData === void 0 ? void 0 : rowData.id] - }).then(function (res) { - if ((res === null || res === void 0 ? void 0 : res.status) == 0) { - message/* default */.ZP.success('通电成功'); - getData(false); - } - setIsLoading(true); - setControlModal(false); - }); - } - if ((rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'running') { - (0,iot/* lot_down */.hQ)({ - device_ids: [rowData === null || rowData === void 0 ? void 0 : rowData.id] - }).then(function (res) { - if ((res === null || res === void 0 ? void 0 : res.status) == 0) { - message/* default */.ZP.success('断电成功'); - getData(false); - } - setIsLoading(true); - setControlModal(false); - }); - } - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(PoweroffOutlined/* default */.Z, { - style: { - color: '#fff' + children: /*#__PURE__*/(0,jsx_runtime.jsx)(spin/* default */.Z, { + tip: "\u83B7\u53D6\u6700\u65B0\u72B6\u6001\u4E2D...", + delay: 500 + }) + }) : /*#__PURE__*/(0,jsx_runtime.jsx)(config_provider/* default */.ZP, { + theme: { + components: { + Spin: { + colorBgContainer: 'rgba(0, 0, 0, .4)' } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: DeviceManagemodules.kg_stutas, - children: (rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart' ? '通电' : '断电' - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: "pb20", + } + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(spin/* default */.Z, { + className: DeviceManagemodules.is_spin, + delay: 500, + spinning: !isLoading, + tip: (rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart' ? '断电中' : '通电中', style: { - width: '100%', - display: 'flex', - justifyContent: 'center' + paddingTop: 20 }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.ZP, { - type: "primary", - className: DeviceManagemodules.cancel_btn, - size: "large", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: "pt20" + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: DeviceManagemodules.kg_btn, + style: { + background: "".concat((rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart' ? '#20A639' : '#FF0000') + }, onClick: function onClick() { - setControlModal(false); + setIsLoading(false); + if ((rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart') { + (0,iot/* lot_up */.zh)({ + device_ids: [rowData === null || rowData === void 0 ? void 0 : rowData.id] + }).then(function (res) { + if ((res === null || res === void 0 ? void 0 : res.status) == 0) { + message/* default */.ZP.success('通电成功'); + getData(false); + } + setIsLoading(true); + setControlModal(false); + }); + } + if ((rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'running') { + (0,iot/* lot_down */.hQ)({ + device_ids: [rowData === null || rowData === void 0 ? void 0 : rowData.id] + }).then(function (res) { + if ((res === null || res === void 0 ? void 0 : res.status) == 0) { + message/* default */.ZP.success('断电成功'); + getData(false); + } + setIsLoading(true); + setControlModal(false); + }); + } }, - children: "\u53D6\u6D88" - }) - })] + children: /*#__PURE__*/(0,jsx_runtime.jsx)(PoweroffOutlined/* default */.Z, { + style: { + color: '#fff' + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: DeviceManagemodules.kg_stutas, + children: (rowData === null || rowData === void 0 ? void 0 : rowData.use_status) == 'unstart' ? '通电' : '断电' + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: "pb20", + style: { + width: '100%', + display: 'flex', + justifyContent: 'center' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.ZP, { + type: "primary", + className: DeviceManagemodules.cancel_btn, + size: "large", + onClick: function onClick() { + setControlModal(false); + }, + children: "\u53D6\u6D88" + }) + })] + }) }) - }) - })] + })] + }) }); }; /* harmony default export */ var IOT_DeviceManage = ((0,_umi_production_exports.connect)(function (_ref6) { diff --git a/p__IOT__ElectronBPManage__index.2f1d80a5.async.js b/p__IOT__ElectronBPManage__index.0c6fac8a.async.js similarity index 66% rename from p__IOT__ElectronBPManage__index.2f1d80a5.async.js rename to p__IOT__ElectronBPManage__index.0c6fac8a.async.js index 7b54f5ecd4..631b0b9ba9 100644 --- a/p__IOT__ElectronBPManage__index.2f1d80a5.async.js +++ b/p__IOT__ElectronBPManage__index.0c6fac8a.async.js @@ -360,342 +360,347 @@ var ElectronBPManage = function ElectronBPManage(_ref) { } return Promise.resolve(); }; - return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + return /*#__PURE__*/(0,jsx_runtime.jsx)("div", { style: { - margin: '0 100px' + background: '#fff' }, - children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: ElectronBPManagemodules.header_div, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: ElectronBPManagemodules.header_title, - children: "\u667A\u6167\u73ED\u724C\u7CFB\u7EDF" - }), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z.Search, { - style: { - marginLeft: 'auto' - }, - placeholder: "\u8BF7\u8F93\u5165\u540D\u79F0/\u8BBE\u5907\u7F16\u53F7", - size: "large", - className: ElectronBPManagemodules.search, - value: keyword, - onChange: function onChange(e) { - setkeyword(e.target.value); - }, - onSearch: function onSearch(value) { - setkeyword(value); - }, - suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { - className: "iconfont icon-sousuo9 font14 ".concat(ElectronBPManagemodules.searchIcon), - onClick: function onClick() { - setkeyword(keyword); - getData(true); - } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - className: ElectronBPManagemodules.clear_Data, - onClick: function onClick() { - setRowData(null); - setRooms2([]); - setOpenAddModal(true); - }, - children: "\u5173\u8054\u8BBE\u5907" - })] - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - className: ElectronBPManagemodules.header_div, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { style: { - margin: '20px 0px 6px 0px' + margin: '0 100px' }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4", - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { - size: "large", + children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: ElectronBPManagemodules.header_div, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: ElectronBPManagemodules.header_title, + children: "\u667A\u6167\u73ED\u724C\u7CFB\u7EDF" + }), /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z.Search, { style: { - width: 140 + marginLeft: 'auto' }, - defaultValue: sys, - value: sys, - onChange: function onChange(e) { - setSys(e); - //实验室房间 - (0,laboratory/* classroom_rooms_query */.jd)({ - page: 1, - limit: 10000, - classroom_id: e - }).then(function (res) { - var _res$data6; - setRooms(toConsumableArray_default()(res === null || res === void 0 || (_res$data6 = res.data) === null || _res$data6 === void 0 ? void 0 : _res$data6.list)); - }); - }, - children: (_ref2 = [{ - id: '', - title: '全部' - }].concat(toConsumableArray_default()(laboratorys))) === null || _ref2 === void 0 ? void 0 : _ref2.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); - }) - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4\u623F\u95F4", - style: { - marginLeft: '20px' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + placeholder: "\u8BF7\u8F93\u5165\u540D\u79F0/\u8BBE\u5907\u7F16\u53F7", size: "large", - style: { - width: 140 - }, - defaultValue: sysRoom, - value: sysRoom, + className: ElectronBPManagemodules.search, + value: keyword, onChange: function onChange(e) { - setSysRoom(e); + setkeyword(e.target.value); }, - children: (_ref3 = [{ - id: '', - title: '全部' - }].concat(toConsumableArray_default()(rooms))) === null || _ref3 === void 0 ? void 0 : _ref3.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); - }) - }) - })] - }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, { - loading: isLoading, - pagination: false, - dataSource: tableData, - columns: columns - }, refresh), /*#__PURE__*/(0,jsx_runtime.jsx)("aside", { - children: total > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { - style: { - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - padding: '10px 7px 20px 7px' - }, - children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { - children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { - style: { - color: '#656F87' - }, - children: ["\u5171", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { - className: "c-light-primary", - children: total - }), "\u6761\u6570\u636E"] + onSearch: function onSearch(value) { + setkeyword(value); + }, + suffix: /*#__PURE__*/(0,jsx_runtime.jsx)("i", { + className: "iconfont icon-sousuo9 font14 ".concat(ElectronBPManagemodules.searchIcon), + onClick: function onClick() { + setkeyword(keyword); + getData(true); + } }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, { - showSizeChanger: true, - showQuickJumper: true, - onChange: onShowSizeChange, - defaultCurrent: 1, - pageSizeOptions: ['10', '20', '50', '100'], - current: page || 1, - pageSize: limit || 10, - defaultPageSize: 10, - total: total + }), /*#__PURE__*/(0,jsx_runtime.jsx)("div", { + className: ElectronBPManagemodules.clear_Data, + onClick: function onClick() { + setRowData(null); + setRooms2([]); + setOpenAddModal(true); + }, + children: "\u5173\u8054\u8BBE\u5907" })] - }) : '' - }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { - maskClosable: false, - centered: true, - keyboard: false, - destroyOnClose: true, - className: ElectronBPManagemodules.my_modal, - open: openAddModal, - title: "".concat(rowData ? '编辑关联设备' : '关联设备'), - width: "534px", - onOk: /*#__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: - _context.next = 2; - return myForm.validateFields(); - case 2: - if (rowData) { - (0,iot/* editIOTDevices */.Tk)({ - device: objectSpread2_default()({}, myForm.getFieldsValue()) - }, rowData === null || rowData === void 0 ? void 0 : rowData.id).then(function (res) { - if ((res === null || res === void 0 ? void 0 : res.status) == 0) { - message/* default */.ZP.success('编辑成功'); - setOpenAddModal(false); - myForm.resetFields(); - getData(true); - } - }); - } else { - (0,iot/* addIOTDevices */["if"])({ - device: objectSpread2_default()(objectSpread2_default()({}, myForm.getFieldsValue()), {}, { - genre: 'electronic_card', - category: 1 - }) - }).then(function (res) { - if ((res === null || res === void 0 ? void 0 : res.status) == 0) { - message/* default */.ZP.success('关联成功'); - setOpenAddModal(false); - myForm.resetFields(); - getData(true); - } - }); - } - case 3: - case "end": - return _context.stop(); - } - }, _callee); - })), - onCancel: function onCancel() { - setOpenAddModal(false); - myForm.resetFields(); - }, - children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { - form: myForm, - wrapperCol: { - span: 19 - }, + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + className: ElectronBPManagemodules.header_div, style: { - maxHeight: "550px", - overflowY: 'auto' + margin: '20px 0px 6px 0px' }, children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { colon: false, - label: "\u8BBE\u5907\u7F16\u53F7", - name: "number", - rules: [{ - required: true - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4", + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u7F16\u53F7", - showCount: true, - maxLength: 10, - onChange: function onChange(e) { - var _e$target; - myForm.setFieldValue('number', e === null || e === void 0 || (_e$target = e.target) === null || _e$target === void 0 || (_e$target = _e$target.value) === null || _e$target === void 0 ? void 0 : _e$target.trim()); - } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u8BBE\u5907\u540D\u79F0", - name: "name", - rules: [{ - required: true - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u540D\u79F0", - showCount: true, - maxLength: 30, + style: { + width: 140 + }, + defaultValue: sys, + value: sys, onChange: function onChange(e) { - var _e$target2; - myForm.setFieldValue('name', e === null || e === void 0 || (_e$target2 = e.target) === null || _e$target2 === void 0 || (_e$target2 = _e$target2.value) === null || _e$target2 === void 0 ? void 0 : _e$target2.trim()); - } + setSys(e); + //实验室房间 + (0,laboratory/* classroom_rooms_query */.jd)({ + page: 1, + limit: 10000, + classroom_id: e + }).then(function (res) { + var _res$data6; + setRooms(toConsumableArray_default()(res === null || res === void 0 || (_res$data6 = res.data) === null || _res$data6 === void 0 ? void 0 : _res$data6.list)); + }); + }, + children: (_ref2 = [{ + id: '', + title: '全部' + }].concat(toConsumableArray_default()(laboratorys))) === null || _ref2 === void 0 ? void 0 : _ref2.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) }) }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { colon: false, - label: "\u8BBE\u5907\u578B\u53F7", - name: "model", - rules: [{ - required: true - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + label: "\u6240\u5C5E\u5B9E\u9A8C\u5BA4\u623F\u95F4", + style: { + marginLeft: '20px' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u578B\u53F7", - showCount: true, - maxLength: 30, + style: { + width: 140 + }, + defaultValue: sysRoom, + value: sysRoom, onChange: function onChange(e) { - var _e$target3; - myForm.setFieldValue('model', e === null || e === void 0 || (_e$target3 = e.target) === null || _e$target3 === void 0 || (_e$target3 = _e$target3.value) === null || _e$target3 === void 0 ? void 0 : _e$target3.trim()); - } + setSysRoom(e); + }, + children: (_ref3 = [{ + id: '', + title: '全部' + }].concat(toConsumableArray_default()(rooms))) === null || _ref3 === void 0 ? void 0 : _ref3.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) }) - }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { - colon: false, - label: "\u8BBE\u5907IP", - name: "ip", - rules: [{ - required: true, - message: '请输入设备IP' - }, { - validator: validateIPAddress - }], - children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { - size: "large", - placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907IP", - onChange: function onChange(e) { - var _e$target4; - myForm.setFieldValue('ip', e === null || e === void 0 || (_e$target4 = e.target) === null || _e$target4 === void 0 || (_e$target4 = _e$target4.value) === null || _e$target4 === void 0 ? void 0 : _e$target4.trim()); + })] + }), /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, { + loading: isLoading, + pagination: false, + dataSource: tableData, + columns: columns + }, refresh), /*#__PURE__*/(0,jsx_runtime.jsx)("aside", { + children: total > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + style: { + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + padding: '10px 7px 20px 7px' + }, + children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { + children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", { + style: { + color: '#656F87' + }, + children: ["\u5171", /*#__PURE__*/(0,jsx_runtime.jsx)("span", { + className: "c-light-primary", + children: total + }), "\u6761\u6570\u636E"] + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, { + showSizeChanger: true, + showQuickJumper: true, + onChange: onShowSizeChange, + defaultCurrent: 1, + pageSizeOptions: ['10', '20', '50', '100'], + current: page || 1, + pageSize: limit || 10, + defaultPageSize: 10, + total: total + })] + }) : '' + }), /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, { + maskClosable: false, + centered: true, + keyboard: false, + destroyOnClose: true, + className: ElectronBPManagemodules.my_modal, + open: openAddModal, + title: "".concat(rowData ? '编辑关联设备' : '关联设备'), + width: "534px", + onOk: /*#__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: + _context.next = 2; + return myForm.validateFields(); + case 2: + if (rowData) { + (0,iot/* editIOTDevices */.Tk)({ + device: objectSpread2_default()({}, myForm.getFieldsValue()) + }, rowData === null || rowData === void 0 ? void 0 : rowData.id).then(function (res) { + if ((res === null || res === void 0 ? void 0 : res.status) == 0) { + message/* default */.ZP.success('编辑成功'); + setOpenAddModal(false); + myForm.resetFields(); + getData(true); + } + }); + } else { + (0,iot/* addIOTDevices */["if"])({ + device: objectSpread2_default()(objectSpread2_default()({}, myForm.getFieldsValue()), {}, { + genre: 'electronic_card', + category: 1 + }) + }).then(function (res) { + if ((res === null || res === void 0 ? void 0 : res.status) == 0) { + message/* default */.ZP.success('关联成功'); + setOpenAddModal(false); + myForm.resetFields(); + getData(true); + } + }); + } + case 3: + case "end": + return _context.stop(); } - }) - }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { + }, _callee); + })), + onCancel: function onCancel() { + setOpenAddModal(false); + myForm.resetFields(); + }, + children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_form/* default */.Z, { + form: myForm, + wrapperCol: { + span: 19 + }, style: { - display: 'flex' + maxHeight: "550px", + overflowY: 'auto' }, children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { colon: false, - label: "\u5173\u8054\u5730\u70B9", - name: "classroom_id", + label: "\u8BBE\u5907\u7F16\u53F7", + name: "number", rules: [{ - required: true, - message: '请选择实验室' + required: true }], - style: { - width: '50%' - }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { size: "large", - placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4", - style: { - width: '185px' - }, + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u7F16\u53F7", + showCount: true, + maxLength: 10, onChange: function onChange(e) { - myForm.setFieldValue('classroom_room_id', null); - //实验室房间 - (0,laboratory/* classroom_rooms_query */.jd)({ - page: 1, - limit: 10000, - classroom_id: e - }).then(function (res) { - var _res$data7; - setRooms2(toConsumableArray_default()(res === null || res === void 0 || (_res$data7 = res.data) === null || _res$data7 === void 0 ? void 0 : _res$data7.list)); - }); - }, - children: laboratorys === null || laboratorys === void 0 ? void 0 : laboratorys.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); - }) + var _e$target; + myForm.setFieldValue('number', e === null || e === void 0 || (_e$target = e.target) === null || _e$target === void 0 || (_e$target = _e$target.value) === null || _e$target === void 0 ? void 0 : _e$target.trim()); + } }) }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { colon: false, - label: "", - name: "classroom_room_id", + label: "\u8BBE\u5907\u540D\u79F0", + name: "name", + rules: [{ + required: true + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u540D\u79F0", + showCount: true, + maxLength: 30, + onChange: function onChange(e) { + var _e$target2; + myForm.setFieldValue('name', e === null || e === void 0 || (_e$target2 = e.target) === null || _e$target2 === void 0 || (_e$target2 = _e$target2.value) === null || _e$target2 === void 0 ? void 0 : _e$target2.trim()); + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u8BBE\u5907\u578B\u53F7", + name: "model", + rules: [{ + required: true + }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907\u578B\u53F7", + showCount: true, + maxLength: 30, + onChange: function onChange(e) { + var _e$target3; + myForm.setFieldValue('model', e === null || e === void 0 || (_e$target3 = e.target) === null || _e$target3 === void 0 || (_e$target3 = _e$target3.value) === null || _e$target3 === void 0 ? void 0 : _e$target3.trim()); + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u8BBE\u5907IP", + name: "ip", rules: [{ required: true, - message: '请选择实验室房间' + message: '请输入设备IP' + }, { + validator: validateIPAddress }], + children: /*#__PURE__*/(0,jsx_runtime.jsx)(input/* default */.Z, { + size: "large", + placeholder: "\u8BF7\u8F93\u5165\u8BBE\u5907IP", + onChange: function onChange(e) { + var _e$target4; + myForm.setFieldValue('ip', e === null || e === void 0 || (_e$target4 = e.target) === null || _e$target4 === void 0 || (_e$target4 = _e$target4.value) === null || _e$target4 === void 0 ? void 0 : _e$target4.trim()); + } + }) + }), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { style: { - width: '50%' + display: 'flex' }, - children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { - size: "large", - placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4\u623F\u95F4", + children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "\u5173\u8054\u5730\u70B9", + name: "classroom_id", + rules: [{ + required: true, + message: '请选择实验室' + }], style: { - width: '185px' + width: '50%' }, - children: rooms2 === null || rooms2 === void 0 ? void 0 : rooms2.map(function (item, index) { - return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { - value: item === null || item === void 0 ? void 0 : item.id, - children: item === null || item === void 0 ? void 0 : item.title - }, index); + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + size: "large", + placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4", + style: { + width: '185px' + }, + onChange: function onChange(e) { + myForm.setFieldValue('classroom_room_id', null); + //实验室房间 + (0,laboratory/* classroom_rooms_query */.jd)({ + page: 1, + limit: 10000, + classroom_id: e + }).then(function (res) { + var _res$data7; + setRooms2(toConsumableArray_default()(res === null || res === void 0 || (_res$data7 = res.data) === null || _res$data7 === void 0 ? void 0 : _res$data7.list)); + }); + }, + children: laboratorys === null || laboratorys === void 0 ? void 0 : laboratorys.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) }) - }) + }), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, { + colon: false, + label: "", + name: "classroom_room_id", + rules: [{ + required: true, + message: '请选择实验室房间' + }], + style: { + width: '50%' + }, + children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], { + size: "large", + placeholder: "\u8BF7\u9009\u62E9\u5B9E\u9A8C\u5BA4\u623F\u95F4", + style: { + width: '185px' + }, + children: rooms2 === null || rooms2 === void 0 ? void 0 : rooms2.map(function (item, index) { + return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, { + value: item === null || item === void 0 ? void 0 : item.id, + children: item === null || item === void 0 ? void 0 : item.title + }, index); + }) + }) + })] })] - })] - }) - })] + }) + })] + }) }); }; /* harmony default export */ var IOT_ElectronBPManage = ((0,_umi_production_exports.connect)(function (_ref5) { diff --git a/p__IOT__ViewAppointment__index.0fdd4981.async.js b/p__IOT__ViewAppointment__index.9a0a71ce.async.js similarity index 99% rename from p__IOT__ViewAppointment__index.0fdd4981.async.js rename to p__IOT__ViewAppointment__index.9a0a71ce.async.js index 23d2b4ecf6..98292b75ae 100644 --- a/p__IOT__ViewAppointment__index.0fdd4981.async.js +++ b/p__IOT__ViewAppointment__index.9a0a71ce.async.js @@ -360,6 +360,7 @@ var Navigation = function Navigation(_ref) { setIsLoading(true); _context.next = 5; return (0,laboratory/* reservations_query */.bU)({ + is_all: true, classroom_room_id: scheduleData === null || scheduleData === void 0 ? void 0 : scheduleData.id, section_ids: [item2 === null || item2 === void 0 ? void 0 : item2.id], reservation_date: item === null || item === void 0 ? void 0 : item.date diff --git a/p__Laboratory__Index__index.9da9cdc9.async.js b/p__Laboratory__Index__index.fb7e3979.async.js similarity index 78% rename from p__Laboratory__Index__index.9da9cdc9.async.js rename to p__Laboratory__Index__index.fb7e3979.async.js index cfd3be1e2f..72f0e89aaa 100644 --- a/p__Laboratory__Index__index.9da9cdc9.async.js +++ b/p__Laboratory__Index__index.fb7e3979.async.js @@ -42,10 +42,11 @@ var SubMenu = menu/* default */.Z.SubMenu; var Engineering = function Engineering(_ref) { - var _user$userInfo, _user$userInfo2, _user$userInfo3, _user$userInfo4, _user$userInfo5, _user$userInfo6, _user$userInfo7, _user$userInfo8, _user$userInfo9, _user$userInfo10, _user$userInfo11, _user$userInfo12, _user$userInfo13, _user$userInfo14; + var _user$userInfo, _user$userInfo2, _user$userInfo3, _user$userInfo4, _user$userInfo5, _user$userInfo6, _user$userInfo7, _user$userInfo8, _user$userInfo9, _user$userInfo10, _user$userInfo11, _user$userInfo12; var user = _ref.user, globalSetting = _ref.globalSetting, - engineering = _ref.engineering; + engineering = _ref.engineering, + dispatch = _ref.dispatch; var location = (0,_umi_production_exports.useLocation)(); var _useState = (0,_react_17_0_2_react.useState)(1), _useState2 = slicedToArray_default()(_useState, 2), @@ -59,6 +60,18 @@ var Engineering = function Engineering(_ref) { return e + 1; }); }, [location.pathname]); + (0,_react_17_0_2_react.useEffect)(function () { + dispatch({ + type: 'globalSetting/footerToggle', + payload: false + }); + return function () { + dispatch({ + type: 'globalSetting/footerToggle', + payload: true + }); + }; + }, []); function getItem(label, key, icon, children, type) { return { key: key, @@ -74,7 +87,9 @@ var Engineering = function Engineering(_ref) { className: "iconfont icon-wodeyuyue" })), (user === null || user === void 0 || (_user$userInfo = user.userInfo) === null || _user$userInfo === void 0 ? void 0 : _user$userInfo.classroom_center_auth) && getItem('工作台', 'workbench', /*#__PURE__*/(0,jsx_runtime.jsx)("i", { className: "iconfont icon-wodegongzuotai" - }), [(user === null || user === void 0 || (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.classroom_center_auth) && getItem('实验室中心', '/laboratory/laboratoryCenter'), ((user === null || user === void 0 || (_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo4 = user.userInfo) === null || _user$userInfo4 === void 0 ? void 0 : _user$userInfo4.classroom_auth)) && getItem('智慧大屏', '/wisdom'), ((user === null || user === void 0 || (_user$userInfo5 = user.userInfo) === null || _user$userInfo5 === void 0 ? void 0 : _user$userInfo5.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo6 = user.userInfo) === null || _user$userInfo6 === void 0 ? void 0 : _user$userInfo6.classroom_auth)) && getItem('我的实验室', '/laboratory/myLaboratory'), ((user === null || user === void 0 || (_user$userInfo7 = user.userInfo) === null || _user$userInfo7 === void 0 ? void 0 : _user$userInfo7.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo8 = user.userInfo) === null || _user$userInfo8 === void 0 ? void 0 : _user$userInfo8.classroom_auth)) && getItem('实验室房间', '/laboratory/laboratoryRoom'), ((user === null || user === void 0 || (_user$userInfo9 = user.userInfo) === null || _user$userInfo9 === void 0 ? void 0 : _user$userInfo9.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo10 = user.userInfo) === null || _user$userInfo10 === void 0 ? void 0 : _user$userInfo10.classroom_auth)) && getItem('预约规则', '/laboratory/ruleManage'), ((user === null || user === void 0 || (_user$userInfo11 = user.userInfo) === null || _user$userInfo11 === void 0 ? void 0 : _user$userInfo11.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo12 = user.userInfo) === null || _user$userInfo12 === void 0 ? void 0 : _user$userInfo12.classroom_auth)) && getItem('实验室分类', '/laboratory/laboratoryType'), ((user === null || user === void 0 || (_user$userInfo13 = user.userInfo) === null || _user$userInfo13 === void 0 ? void 0 : _user$userInfo13.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo14 = user.userInfo) === null || _user$userInfo14 === void 0 ? void 0 : _user$userInfo14.classroom_auth)) && getItem('预约管理', '/laboratory/reservationmanage')])]; + }), [(user === null || user === void 0 || (_user$userInfo2 = user.userInfo) === null || _user$userInfo2 === void 0 ? void 0 : _user$userInfo2.classroom_center_auth) && getItem('实验室中心', '/laboratory/laboratoryCenter'), + // (user?.userInfo?.classroom_center_auth || user?.userInfo?.classroom_auth) && getItem('智慧大屏', '/wisdom'), + ((user === null || user === void 0 || (_user$userInfo3 = user.userInfo) === null || _user$userInfo3 === void 0 ? void 0 : _user$userInfo3.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo4 = user.userInfo) === null || _user$userInfo4 === void 0 ? void 0 : _user$userInfo4.classroom_auth)) && getItem('我的实验室', '/laboratory/myLaboratory'), ((user === null || user === void 0 || (_user$userInfo5 = user.userInfo) === null || _user$userInfo5 === void 0 ? void 0 : _user$userInfo5.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo6 = user.userInfo) === null || _user$userInfo6 === void 0 ? void 0 : _user$userInfo6.classroom_auth)) && getItem('实验室房间', '/laboratory/laboratoryRoom'), ((user === null || user === void 0 || (_user$userInfo7 = user.userInfo) === null || _user$userInfo7 === void 0 ? void 0 : _user$userInfo7.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo8 = user.userInfo) === null || _user$userInfo8 === void 0 ? void 0 : _user$userInfo8.classroom_auth)) && getItem('预约规则', '/laboratory/ruleManage'), ((user === null || user === void 0 || (_user$userInfo9 = user.userInfo) === null || _user$userInfo9 === void 0 ? void 0 : _user$userInfo9.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo10 = user.userInfo) === null || _user$userInfo10 === void 0 ? void 0 : _user$userInfo10.classroom_auth)) && getItem('实验室分类', '/laboratory/laboratoryType'), ((user === null || user === void 0 || (_user$userInfo11 = user.userInfo) === null || _user$userInfo11 === void 0 ? void 0 : _user$userInfo11.classroom_center_auth) || (user === null || user === void 0 || (_user$userInfo12 = user.userInfo) === null || _user$userInfo12 === void 0 ? void 0 : _user$userInfo12.classroom_auth)) && getItem('预约管理', '/laboratory/reservationmanage')])]; // 获取所有二级菜单项的key var allSubMenuKeys = items.filter(function (item) { @@ -125,11 +140,13 @@ var Engineering = function Engineering(_ref) { /* harmony default export */ var Index = ((0,_umi_production_exports.connect)(function (_ref2) { var globalSetting = _ref2.globalSetting, user = _ref2.user, - engineering = _ref2.engineering; + engineering = _ref2.engineering, + dispatch = _ref2.dispatch; return { user: user, globalSetting: globalSetting, - engineering: engineering + engineering: engineering, + dispatch: dispatch }; })(Engineering)); diff --git a/p__Laboratory__MyLaboratory__Info__index.ff304b55.async.js b/p__Laboratory__MyLaboratory__Info__index.1b998cc7.async.js similarity index 98% rename from p__Laboratory__MyLaboratory__Info__index.ff304b55.async.js rename to p__Laboratory__MyLaboratory__Info__index.1b998cc7.async.js index 3cac1c2ca9..9703327f6a 100644 --- a/p__Laboratory__MyLaboratory__Info__index.ff304b55.async.js +++ b/p__Laboratory__MyLaboratory__Info__index.1b998cc7.async.js @@ -685,7 +685,8 @@ var Navigation = function Navigation(_ref) { var Info_Navigation = function Navigation(_ref) { var _dataInfo$directors, _dataInfo$directors2; var loading = _ref.loading, - user = _ref.user; + user = _ref.user, + dispatch = _ref.dispatch; var params = (0,_umi_production_exports.useParams)(); var _useState = (0,_react_17_0_2_react.useState)({}), _useState2 = slicedToArray_default()(_useState, 2), @@ -703,6 +704,16 @@ var Info_Navigation = function Navigation(_ref) { }).then(function (res) { setDataInfo(res === null || res === void 0 ? void 0 : res.data); }); + dispatch({ + type: 'globalSetting/headerFooterToggle', + payload: true + }); + return function () { + dispatch({ + type: 'globalSetting/headerFooterToggle', + payload: false + }); + }; }, []); return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", { className: Infomodules.wrap, @@ -834,10 +845,12 @@ var Info_Navigation = function Navigation(_ref) { /* harmony default export */ var Info = ((0,_umi_production_exports.connect)(function (_ref2) { var loading = _ref2.loading, user = _ref2.user, - engineeringNavigtion = _ref2.engineeringNavigtion; + engineeringNavigtion = _ref2.engineeringNavigtion, + dispatch = _ref2.dispatch; return objectSpread2_default()({ loading: loading, - user: user + user: user, + dispatch: dispatch }, engineeringNavigtion); })(Info_Navigation)); diff --git a/p__Laboratory__MyLaboratory__Info__index.a5f801e8.chunk.css b/p__Laboratory__MyLaboratory__Info__index.217b7da1.chunk.css similarity index 99% rename from p__Laboratory__MyLaboratory__Info__index.a5f801e8.chunk.css rename to p__Laboratory__MyLaboratory__Info__index.217b7da1.chunk.css index e49952a8ab..ccca835d93 100644 --- a/p__Laboratory__MyLaboratory__Info__index.a5f801e8.chunk.css +++ b/p__Laboratory__MyLaboratory__Info__index.217b7da1.chunk.css @@ -95,7 +95,7 @@ .search_params___EeMV6 { display: flex; position: absolute; - top: -60px; + top: -72px; right: 0; z-index: 10; } diff --git a/p__Laboratory__MyReservation__index.33257d27.async.js b/p__Laboratory__MyReservation__index.46c84271.async.js similarity index 99% rename from p__Laboratory__MyReservation__index.33257d27.async.js rename to p__Laboratory__MyReservation__index.46c84271.async.js index 60ff7f9be1..ef2a4e749b 100644 --- a/p__Laboratory__MyReservation__index.33257d27.async.js +++ b/p__Laboratory__MyReservation__index.46c84271.async.js @@ -368,7 +368,8 @@ var Navigation = function Navigation(_ref) { children: [(record === null || record === void 0 ? void 0 : record.status) != 'queue' && (record === null || record === void 0 ? void 0 : record.status) != 'pending' && /*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: "#165DFF", - cursor: "pointer" + cursor: "pointer", + marginRight: 10 }, onClick: function onClick() { setOpenSeeModal(true); @@ -381,7 +382,7 @@ var Navigation = function Navigation(_ref) { style: { color: "#165DFF", cursor: "pointer", - marginLeft: "10px" + marginRight: 10 }, onClick: function onClick() { var _record$sections2; diff --git a/p__Laboratory__ReservationManage__index.79013a49.async.js b/p__Laboratory__ReservationManage__index.84c99fa1.async.js similarity index 99% rename from p__Laboratory__ReservationManage__index.79013a49.async.js rename to p__Laboratory__ReservationManage__index.84c99fa1.async.js index d15355d759..238191749c 100644 --- a/p__Laboratory__ReservationManage__index.79013a49.async.js +++ b/p__Laboratory__ReservationManage__index.84c99fa1.async.js @@ -373,7 +373,8 @@ var Navigation = function Navigation(_ref) { children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: "#165DFF", - cursor: "pointer" + cursor: "pointer", + marginRight: 10 }, onClick: function onClick() { var _record$sections2; @@ -455,7 +456,7 @@ var Navigation = function Navigation(_ref) { }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: "#5F6367", - marginLeft: "10px", + marginRight: 10, cursor: "pointer" }, onClick: function onClick() { @@ -469,7 +470,8 @@ var Navigation = function Navigation(_ref) { children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: "#165DFF", - cursor: "pointer" + cursor: "pointer", + marginRight: 10 }, onClick: function onClick() { (0,laboratory/* reservations_review */.UP)({ @@ -486,7 +488,7 @@ var Navigation = function Navigation(_ref) { }), /*#__PURE__*/(0,jsx_runtime.jsx)("span", { style: { color: "#E30000", - marginLeft: "10px", + marginRight: 10, cursor: "pointer" }, onClick: function onClick() { diff --git a/p__Laboratory__Reservations__Info__index.7e737467.async.js b/p__Laboratory__Reservations__Info__index.94cc83d0.async.js similarity index 99% rename from p__Laboratory__Reservations__Info__index.7e737467.async.js rename to p__Laboratory__Reservations__Info__index.94cc83d0.async.js index e1ba208857..5108dcafa9 100644 --- a/p__Laboratory__Reservations__Info__index.7e737467.async.js +++ b/p__Laboratory__Reservations__Info__index.94cc83d0.async.js @@ -794,6 +794,7 @@ var subscribe_Navigation = function Navigation(_ref) { date: time ? dayjs_min_default()(time === null || time === void 0 ? void 0 : time.$d).format('YYYY-MM-DD') : '', status: status, classroom_id: roomInfo === null || roomInfo === void 0 ? void 0 : roomInfo.classroom_id, + classroom_room_id: roomInfo === null || roomInfo === void 0 ? void 0 : roomInfo.id, keyword: keyword }).then(function (res) { var _res$data12, _res$data13; diff --git a/p__Laboratory__Reservations__index.1cc3cb3c.async.js b/p__Laboratory__Reservations__index.10d21fa6.async.js similarity index 99% rename from p__Laboratory__Reservations__index.1cc3cb3c.async.js rename to p__Laboratory__Reservations__index.10d21fa6.async.js index 1ff24bc3f2..7d0de457fa 100644 --- a/p__Laboratory__Reservations__index.1cc3cb3c.async.js +++ b/p__Laboratory__Reservations__index.10d21fa6.async.js @@ -424,6 +424,7 @@ var Navigation = function Navigation(_ref) { date: time, section: section, keyword: keyword, + is_now: true, classroom_center_id: laboratoryCenter, classroom_id: laboratory }).then(function (res) { diff --git a/p__Laboratory__RuleManage__index.f7b2d70a.async.js b/p__Laboratory__RuleManage__index.fea0018a.async.js similarity index 99% rename from p__Laboratory__RuleManage__index.f7b2d70a.async.js rename to p__Laboratory__RuleManage__index.fea0018a.async.js index 950f2b5aa7..ad9f51356f 100644 --- a/p__Laboratory__RuleManage__index.f7b2d70a.async.js +++ b/p__Laboratory__RuleManage__index.fea0018a.async.js @@ -455,7 +455,7 @@ var Navigation = function Navigation(_ref) { (0,laboratory/* reservation_rules_info */.Cc)({ id: record === null || record === void 0 ? void 0 : record.id }).then(function (res) { - var _res$data11, _res$data12, _res$data13, _res$data14, _res$data15; + var _res$data11, _res$data12, _res$data13, _res$data14, _res$data15, _res$data16; myForm.setFieldsValue({ title: res === null || res === void 0 || (_res$data11 = res.data) === null || _res$data11 === void 0 ? void 0 : _res$data11.title, cycle: res === null || res === void 0 || (_res$data12 = res.data) === null || _res$data12 === void 0 ? void 0 : _res$data12.cycle, @@ -466,6 +466,9 @@ var Navigation = function Navigation(_ref) { res === null || res === void 0 || (_res$data15 = res.data) === null || _res$data15 === void 0 || (_res$data15 = _res$data15.details) === null || _res$data15 === void 0 || _res$data15.map(function (item, index) { initialCustomRulesList[Number(item === null || item === void 0 ? void 0 : item.week) - 1].reservation[Number(item === null || item === void 0 ? void 0 : item.section) - 1] = true; }); + console.log('1111'); + console.log(initialCustomRulesList); + console.log(res === null || res === void 0 || (_res$data16 = res.data) === null || _res$data16 === void 0 ? void 0 : _res$data16.details); setNewDate(initialCustomRulesList); setRefresh(new Date()); }); diff --git a/p__Materials__Index__index.0ed64c1a.async.js b/p__Materials__Index__index.0a5292ed.async.js similarity index 95% rename from p__Materials__Index__index.0ed64c1a.async.js rename to p__Materials__Index__index.0a5292ed.async.js index 75a9a677fc..c541887f0d 100644 --- a/p__Materials__Index__index.0ed64c1a.async.js +++ b/p__Materials__Index__index.0a5292ed.async.js @@ -45,7 +45,8 @@ var Engineering = function Engineering(_ref) { var _user$userInfo, _user$userInfo2; var user = _ref.user, globalSetting = _ref.globalSetting, - engineering = _ref.engineering; + engineering = _ref.engineering, + dispatch = _ref.dispatch; var location = (0,_umi_production_exports.useLocation)(); var _useState = (0,_react_17_0_2_react.useState)(1), _useState2 = slicedToArray_default()(_useState, 2), @@ -59,6 +60,18 @@ var Engineering = function Engineering(_ref) { return e + 1; }); }, [location.pathname]); + (0,_react_17_0_2_react.useEffect)(function () { + dispatch({ + type: 'globalSetting/footerToggle', + payload: false + }); + return function () { + dispatch({ + type: 'globalSetting/footerToggle', + payload: true + }); + }; + }, []); function getItem(label, key, icon, children, type) { return { key: key, @@ -127,11 +140,13 @@ var Engineering = function Engineering(_ref) { /* harmony default export */ var Index = ((0,_umi_production_exports.connect)(function (_ref2) { var globalSetting = _ref2.globalSetting, user = _ref2.user, - engineering = _ref2.engineering; + engineering = _ref2.engineering, + dispatch = _ref2.dispatch; return { user: user, globalSetting: globalSetting, - engineering: engineering + engineering: engineering, + dispatch: dispatch }; })(Engineering)); diff --git a/p__Wisdom__index.7417e2ae.async.js b/p__Wisdom__index.10014426.async.js similarity index 99% rename from p__Wisdom__index.7417e2ae.async.js rename to p__Wisdom__index.10014426.async.js index 823d1f23a8..1acd968365 100644 --- a/p__Wisdom__index.7417e2ae.async.js +++ b/p__Wisdom__index.10014426.async.js @@ -4760,8 +4760,7 @@ var Navigation = function Navigation(_ref) { height: '30vh', backgroundSize: '100% 100%', position: 'relative', - marginTop: '1vh', - overflow: 'hidden' + marginTop: '1vh' }, children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", { className: Wisdommodules.content_title, diff --git a/umi.d7960b1a.js b/umi.84260f45.js similarity index 99% rename from umi.d7960b1a.js rename to umi.84260f45.js index 8e34056611..806281053c 100644 --- a/umi.d7960b1a.js +++ b/umi.84260f45.js @@ -204901,7 +204901,7 @@ function debounce (delay, callback, options) { /******/ // 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","556":"p__User__Detail__Order__pages__invoice__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1660":"p__User__QQLogin__index","1702":"p__Classrooms__New__index","2001":"p__Materials__ItemAssets__AddReceive__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","2948":"p__Materials__ItemAssets__Info__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","4736":"p__User__Detail__Projects__index","4766":"p__Administration__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5427":"p__User__Detail__Devicegroup__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6613":"p__Laboratory__LaboratoryCenter__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","7202":"p__Materials__Entry__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","9134":"p__Materials__ItemAssetsList__index","9416":"p__Graduations__Lists__Tasks__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","11130":"p__Laboratory__MyReservation__index","11253":"p__Graduations__Lists__Gradingsummary__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","12303":"p__Classrooms__Lists__CommonHomework__Comment__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","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14227":"p__Paths__Overview__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14666":"p__Homepage__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15186":"p__Classrooms__Overview__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16434":"p__User__Detail__Order__pages__records__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","18682":"p__Wisdom__index","19116":"p__Materials__ItemAssets__AddProcure__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19519":"p__User__Detail__ClassManagement__Item__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","21433":"p__Equipment__Information__InfoList__ReservationInfo__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22307":"p__Report__index","22561":"p__Materials__Receive__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","24904":"p__Equipment__MessageCenterManage__index","25022":"p__Graduations__Lists__Settings__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25807":"p__Materials__MyProcure__index","25972":"layouts__user__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27178":"p__User__BindAccount__index","27182":"p__User__ResetPassword__index","27333":"p__User__WechatLogin__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","27416":"p__Equipment__Index__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28237":"p__User__Detail__Order__pages__view__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","29647":"p__Question__Index__index","29942":"p__Equipment__Information__InfoList__Edit__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31078":"p__Laboratory__LaboratoryType__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31316":"p__Equipment__Information__InfoList__Details__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","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35380":"p__Laboratory__Index__index","35729":"p__Help__Index","35977":"p__Laboratory__MyLaboratory__Info__rooms__createRoom__index","36029":"p__Administration__Student__index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","37948":"p__User__Detail__ClassManagement__index","38143":"layouts__GraduationsDetail__index","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","39820":"p__Laboratory__LaboratoryRoom__createRoom__index","40139":"p__Materials__ItemAssets__index","40559":"layouts__virtualDetail__index","40665":"p__Materials__Index__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","42159":"p__Equipment__Information__index","42240":"p__User__Detail__Videos__Upload__index","43212":"p__Laboratory__ReservationManage__index","43442":"p__Classrooms__Lists__Board__Add__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","44565":"p__HttpStatus__500","45096":"p__Shixuns__Detail__AuditSituation__index","45179":"p__Administration__Student__Edit__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","47545":"p__Graduations__Lists__Archives__index","47778":"p__IOT__DeviceManage__index","48077":"p__Classrooms__Lists__Students__index","48289":"p__Materials__MyReceive__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","51461":"p__Graduations__Lists__Topics__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","54492":"p__Graduations__Lists__StudentSelection__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","55624":"p__Graduations__Lists__Index__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57560":"p__Administration__College__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","57989":"p__Laboratory__MyLaboratory__Info__index","59133":"p__Shixuns__Detail__Challenges__index","59142":"p__Reservation__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","61075":"p__IOT__ViewAppointment__index","61311":"p__Equipment__BookingManage__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","61880":"p__User__Detail__Order__pages__apply__index","62300":"p__Api__index","62548":"p__Engineering__Norm__Detail__index","63157":"p__User__Detail__ExperImentImg__Add__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","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66034":"p__HttpStatus__UserAgents","66063":"p__Graduations__Lists__Personmanage__index","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","69681":"p__User__Detail__Devicegroup__Add__index","69828":"p__Equipment__Faultlibrary__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","70928":"p__RestFul__Edit__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71525":"p__User__Detail__Devicegroup__ReservationInfo__index","71783":"p__virtualSpaces__Lists__Experiment__index","72409":"p__Materials__Procure__index","72529":"p__User__Detail__id","72539":"p__Graduations__Review__index","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74297":"p__Laboratory__LaboratoryRoom__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","75816":"p__Paperlibrary__Random__Edit__index","76134":"p__Equipment__Maintenance__Details__index","76904":"p__MoopCases__FormPanel__index","77248":"p__Materials__ItemAssetsList__CreateItemAssets__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","82443":"p__Graduations__Lists__StageModule__index","83105":"p__Laboratory__RuleManage__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","88093":"p__Equipment__Maintenance__index","88155":"p__Shixuns__Overview__index","88501":"p__ReservationDetail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89053":"p__IOT__ElectronBPManage__index","89076":"p__Account__Binding__index","89113":"p__Equipment__Devicelabel__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","91831":"p__Graduations__Index__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","92932":"p__User__Detail__Devicegroup__Edit__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","96163":"p__Laboratory__Reservations__Info__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","97838":"p__Equipment__Working__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98662":"p__Materials__ItemAssetsType__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","98936":"p__Laboratory__MyLaboratory__index","99674":"p__Shixuns__New__ImagePreview__index","99758":"p__Laboratory__Reservations__index"}[chunkId] || chunkId) + "." + {"292":"3e07ae68","310":"963847a3","556":"fc73ebf8","703":"4a661084","805":"3a0d38db","808":"730872a3","1482":"fcba5c57","1569":"55a54bed","1581":"1df2ef1f","1660":"c6445a46","1702":"5b4914d7","2001":"09ac0d02","2021":"ec9a9473","2249":"90399667","2321":"03de8f3c","2360":"2f3cadfa","2494":"5e069ec9","2659":"81a9a127","2819":"96ad3449","2837":"b3a05bc1","2902":"ff0e0e4f","2948":"d88068f8","3133":"6a9f7113","3317":"287c0750","3391":"19ad06b6","3416":"8f71c399","3451":"30eb2f55","3509":"0baae952","3585":"4fe88eac","3885":"e66b03f8","3951":"d2aae4be","4318":"be197a7a","4645":"13b56eec","4685":"21279a05","4736":"8fca67b1","4766":"6d188784","4884":"6a75ed53","4938":"8b374cab","4973":"839b4702","5112":"9023feca","5427":"a01124f1","5434":"361b868d","5572":"a5998b4f","6127":"73ec4684","6275":"a3caa5f6","6378":"27c8142f","6540":"3bc5a641","6572":"7356342f","6613":"e22598bc","6685":"5f507b07","6758":"266f87ac","6788":"08d918eb","7043":"a5a4912c","7202":"8d2100c4","7269":"2b7b9752","7852":"3adc888f","7884":"cb2fe97e","8410":"5b55394a","8610":"02b2c300","8787":"3c0cbc66","8990":"c1862314","8999":"3aa4775b","9134":"a141f4d3","9232":"7802fc41","9416":"85608cce","9835":"6094bca8","9928":"5856e32a","9951":"025836c4","10126":"8de7b31b","10195":"aff87b72","10354":"5c063e6f","10485":"e7ae5da4","10737":"7ad9f02e","10799":"e6afb93d","10921":"d9767442","10970":"7b8ab207","11070":"0c2330c7","11084":"7515d019","11130":"33257d27","11221":"8fc43121","11253":"109d68aa","11348":"db579d63","11512":"7a0486b2","11520":"64a572ad","11545":"f996f44a","11581":"7fb5a1eb","12076":"47b96052","12102":"c10fa79b","12154":"5356659d","12303":"b37a5c1a","12386":"289c62c7","12412":"d1ccfde0","12476":"f3df5a1c","12632":"bc10e217","12822":"510de799","12865":"5e9d9bd4","12884":"1df85efb","12911":"f94aa754","13006":"cc56ee8e","13355":"6f55ff8d","13488":"20d8cc00","13581":"e5dfd8fe","13715":"5c6fa950","14058":"272cfa1d","14082":"9fa64b83","14088":"b6840aa3","14105":"d3063f57","14227":"16cd8a71","14514":"a532f1cb","14599":"e4d92a4b","14610":"1ef7e28a","14662":"45f17201","14666":"1e9c2ddd","14745":"b16735a2","14889":"556be0cf","15148":"cea3709c","15186":"5bc367a9","15290":"7b3f25d8","15319":"170d4df9","15402":"309c9506","15631":"d790a1bf","15669":"7c12c053","15845":"c8fe49ef","15989":"7458297b","16328":"ddb939cc","16434":"c6d4faff","16581":"2bfdc0b4","16703":"ad652550","16729":"86a0ad56","16845":"c90daf75","17022":"b37d1265","17482":"1156fb4f","17527":"dda8adb1","17622":"57a0b86f","17806":"3d95453f","18241":"4901e995","18302":"18644774","18307":"a1c31723","18350":"0ed0f7c3","18515":"b081eece","18682":"7417e2ae","18898":"25ad586a","18945":"044e9de8","18963":"33e3df18","19116":"0440037f","19124":"c15167e0","19208":"85e01132","19215":"1d61d22d","19360":"b0946db9","19519":"52653f2d","19715":"7fac870f","19842":"f8afcc83","19891":"f09613bf","20026":"2000c249","20424":"2a17c36b","20455":"70dea32e","20459":"84aba361","20576":"c90e7824","20680":"d03d7069","20700":"c56fa564","20834":"49c334ce","21150":"d126d1ef","21265":"aa07e566","21423":"0c35fb61","21433":"a1d06f2d","21560":"f8e25ece","21578":"997b869a","21733":"a99b7575","21939":"e501c4f5","22191":"a3df8008","22254":"817a5f71","22296":"05ee89d1","22307":"fe91d6fc","22561":"f2dfdb6c","22662":"517355f5","22707":"e4c10e72","22970":"8eb2de1f","23003":"5d51cf48","23252":"21966faf","23332":"d7ff4957","23456":"4c266092","24064":"ac8b475b","24290":"a12fcd8f","24486":"bb28dc1a","24504":"81895469","24628":"b863dad4","24665":"0d4dcbc3","24797":"eb563316","24904":"9f9a6456","24929":"ef6538f8","25022":"fd914682","25470":"ec95f578","25609":"d96e2786","25705":"a052cd4f","25807":"58f873dc","25972":"eac781e6","26013":"04e4d63e","26126":"400f4fd5","26366":"4432dfcc","26367":"09e9c38b","26685":"3664bcb9","26741":"8189df8a","26838":"e101b66d","26883":"ca3f08b9","27178":"452f25c6","27182":"a5366d70","27333":"aa7f421c","27395":"f42b52b8","27416":"6cb09f05","27514":"02293951","27706":"c0d5e1ef","27739":"54d27078","28072":"e1dfca43","28089":"aaa88c03","28161":"00a22aad","28237":"24b7d201","28435":"81103d8e","28561":"ec76d55e","28639":"f1edf5e2","28723":"e27ec039","28782":"8d606aa9","28920":"a6e74de3","28982":"8eb249d3","28996":"6135be2b","29101":"f99a9ec2","29111":"f48a46e3","29183":"37c42793","29559":"cdc05f60","29647":"7b090531","29895":"1fa85db5","29942":"90d29537","29968":"5c930f27","30067":"f6754cff","30264":"5aa7db31","30342":"2b472fde","30518":"216baa3b","30736":"45a79df8","30741":"0afd7032","31006":"b10b1033","31078":"3b17bf99","31154":"abb4690e","31211":"2037b94b","31316":"cfcd59ec","31427":"9bb41ca6","31674":"bf8fe556","31772":"ec767a26","31962":"cdcfef64","32029":"ab9e5b45","32128":"a2bbf8df","32826":"c151ad2b","33086":"8628d8e3","33105":"2d654744","33243":"6742a018","33356":"518d9ab4","33747":"d1c2e0cd","33784":"a161c26a","33805":"a93fd24f","34093":"a51a03f5","34601":"5154c032","34741":"62e0742c","34790":"6eb90335","34800":"ed339bef","34850":"daf624f2","34994":"bd797aa0","35060":"7530a2b3","35215":"b7da475a","35238":"f3317c48","35354":"c0640e01","35380":"9da9cdc9","35416":"b4018e87","35729":"8aba57ec","35830":"3bd66ca5","35977":"f29c588c","36029":"7477ded3","36270":"51d0e9ee","36291":"9d4de8a4","36381":"48039f1f","36634":"03daa006","36784":"3e7b6b65","37013":"38935607","37062":"5b080f14","37264":"67567596","37495":"88e6a49b","37948":"208c0f74","38143":"2536152d","38173":"14072398","38447":"e3878fd1","38634":"ecfb72aa","38797":"4b21e419","39252":"01ffe0b6","39332":"af87b595","39391":"a8df2a2f","39404":"a9e58420","39547":"1676dc10","39695":"6ae0b559","39820":"c4cfcbe3","39845":"ad02fd89","39950":"57e939c0","40115":"1a0cbb81","40139":"a5231b9c","40559":"87dd3f5b","40665":"0ed64c1a","40865":"02058a48","41048":"12494668","41297":"eab2e569","41657":"3d2a8e74","41717":"69d01a46","41920":"2f62ea9b","41953":"6d7790c5","42133":"dd42fc13","42159":"9d8aa087","42240":"04810b66","42441":"2b68ce27","42783":"4b759e33","43115":"40bcbc51","43212":"79013a49","43252":"64b4bebe","43321":"bead1429","43428":"801b4e6a","43442":"c01a05f0","43468":"42946af4","43508":"b149042f","43862":"dba18cb7","44189":"e486a7d9","44216":"d2e347ea","44259":"7f7054ce","44354":"4d10aca1","44360":"2fe17938","44449":"9a6778a4","44494":"afe491b0","44565":"6fc5af23","45096":"79f0b617","45178":"36159203","45179":"ddcada8f","45359":"7616b707","45413":"5d0575d6","45431":"dd9f8c81","45504":"9783c421","45650":"fa7b4a68","45775":"d36453a8","45825":"4c8b5677","45992":"bb6f6eca","46022":"b889014d","46573":"db7fbeee","46675":"3f2beb21","46796":"ea83f17d","46949":"c27c1014","46963":"cf2edf94","47271":"48a4f281","47353":"c34a61b5","47545":"b55b0816","47686":"f38a5fc1","47778":"3f944ca4","48077":"93fcb146","48099":"72da62ad","48289":"67766b93","48431":"81de89cf","48507":"904ca438","48689":"e987816e","48776":"3ca5830e","49127":"f28f637e","49205":"8cd7eb89","49260":"d82ab47f","49366":"a6f0176b","49388":"e38db815","49716":"a8639589","49890":"ac5b35ee","50058":"ac5985b6","50523":"d833008b","50812":"6c8becca","50869":"d64e78ad","51144":"88d767c5","51227":"086bb39b","51260":"12d830c2","51276":"fad14d8b","51461":"20e7fb50","51582":"44a7c894","51646":"a1e61a3a","51855":"76f3ff99","51945":"52b4e036","52338":"b4d2dd95","52404":"f58f3c2b","52485":"e5d03513","52556":"0ae9c5d7","52720":"3cb1e974","52806":"c4b2694d","52829":"e765c6e5","52875":"9ba8fa24","53114":"685610c8","53247":"dfc735e2","53550":"d1343c48","53697":"344fc05c","53777":"630cd89c","53910":"8383652b","54056":"ab9daa30","54164":"f0a2b91a","54273":"0564f47b","54492":"0c2ca64e","54572":"5676fa24","54770":"b3a2fed8","54862":"da69b907","54952":"33f7385d","55128":"559c852a","55351":"b1b9a06c","55535":"9d52e700","55573":"7d94bfa0","55600":"a5eff6d7","55624":"bcb77e1c","55693":"4b714ff1","56047":"b4b0d1c6","56156":"c61ad60b","56277":"ac0cc066","56775":"9d418a01","57045":"f4da79af","57365":"7e7804c5","57560":"1db39ef5","57614":"70e4283d","57989":"ff304b55","58253":"20604031","58271":"04f27f83","58491":"77aa7dad","58561":"01225d86","58678":"7dc10a44","59133":"27914c42","59142":"412088c5","59649":"c620650d","59788":"87309879","59789":"cac07459","60479":"0f5bbf3a","60533":"b3b30b43","60547":"9b048d8d","60597":"f7013bfa","61043":"b118018e","61075":"0fdd4981","61104":"f36d016e","61311":"3b295f4e","61603":"e4ce051a","61713":"82c6b693","61727":"39d7b6cf","61735":"1f68c0f8","61880":"15351f49","61984":"f1ece445","62300":"9d5b62b0","62548":"7c4eb05c","62945":"927b34c0","63157":"46595fc0","63198":"f92793e1","64017":"3bb4dfa9","64144":"5a60659d","64217":"c92de84d","64385":"95f08758","64496":"c74d685d","64520":"be5572b1","64630":"3a922a25","64636":"e0ac0534","65022":"964095e2","65111":"d06628a6","65148":"c4612fa5","65191":"1cf60e9d","65337":"442b06ed","65549":"8e5cd453","65603":"36a62d50","65805":"a5d5ea17","65816":"cd742b6d","65876":"a2754c64","66034":"4fe54c49","66063":"4e7653c1","66531":"f4ad9a4b","66583":"e7f741f2","66651":"344be59e","66999":"4383de68","67073":"37bbcbe7","67156":"918b4bca","67242":"d354bfa1","67500":"92e0c845","67878":"14b6f270","68014":"509d0f4e","68532":"e22b2e7b","68665":"471a9b93","68827":"29723ce4","68842":"19057860","68882":"17c034bb","69287":"175f19ac","69607":"d2086d07","69681":"4282e72a","69778":"c1b41839","69828":"778476f8","69922":"0e94ced0","69944":"7d5c6fd6","70022":"88a23a60","70158":"f57a4ca6","70173":"752591e6","70176":"49e643ff","70199":"9b4c6a93","70232":"e64144b4","70671":"749b4875","70689":"1dff411a","70928":"b21cabb8","70981":"157d0b6b","71409":"4efffcc8","71448":"78250877","71450":"0a5b94ed","71525":"2a87a211","71581":"a41c2713","71613":"3562ecb6","71658":"95e38fc2","71783":"53311b1c","72011":"7efe6dda","72218":"25475161","72409":"3b08f2df","72529":"be71cffa","72539":"02abcd90","72570":"c9e3b569","72969":"53256e8c","73068":"f1ea4d1b","73183":"4c45bb37","73220":"3bece0c1","73376":"109a0452","73755":"fe775cb7","74014":"5339ac81","74033":"9b66db6c","74060":"ba96d301","74264":"dac2458f","74297":"35422c0b","74347":"a722ba6c","74460":"67121853","74795":"af8c53c1","75043":"2319a2d5","75136":"e91248b4","75321":"9b9a5dc1","75357":"483b7876","75786":"3c34e73f","75816":"96b9bb86","76126":"9206dbdd","76134":"3d813d8b","76411":"6f119d79","76904":"0be3b786","77034":"4ae3aad6","77084":"5fe882f0","77248":"056b1377","77303":"2c9b96cc","77460":"e9fb694a","77576":"6b5e183c","77757":"df2b372c","77857":"ceacbbff","78030":"ecf224bf","78085":"0e2fa9a9","78241":"034ebd8e","78302":"2f657c59","78737":"fa31da0e","78782":"3eab4dbd","79233":"986ba682","79489":"535fc585","79590":"b48b9669","79817":"233a3bf7","79921":"2bc745e7","80022":"650c3b24","80347":"a568ca36","80508":"fdb65434","80629":"ca49ee59","80807":"0ab4dcee","81148":"eef1be31","81326":"32e6a0e9","81799":"a2c57170","82339":"bd171d88","82425":"272f0abb","82443":"0a8080bb","82709":"1bda5e08","83105":"f7b2d70a","83141":"d40b35d9","83212":"1775db5d","83726":"08cc51e9","83935":"71c4324a","84546":"6df8f0de","84567":"0e50f1cb","85016":"412f2dbd","85048":"f492db44","85071":"646d0920","85111":"01b7d67e","85241":"72e2f7bb","85297":"e1b301d9","85494":"da5840b1","85764":"5c1c73b5","85844":"cd0a401d","85888":"442e3893","85891":"82c7ea29","86045":"0a358cbb","86052":"03b7dda5","86129":"801a9880","86184":"11a56d28","86411":"440c927e","86452":"5f2ce700","86541":"ec12e4db","86634":"7462e9e0","86774":"2db1d78d","86820":"89a4d909","86859":"e938619c","86913":"366049a4","87058":"0e37e674","87260":"80080036","87419":"fbad2a24","87584":"3b670749","87922":"9083a8e3","87964":"83911fb5","88093":"dad30454","88155":"e9b4d694","88281":"24d35c78","88501":"d73a594f","88517":"e0671576","88610":"2af692bc","88699":"bd237d9d","88866":"66368bfa","89053":"2f1d80a5","89076":"6f6d401f","89113":"89e755cd","89255":"cc77e36e","89554":"3bd5f2ea","89677":"5770bd6b","89785":"dfd4c81e","89786":"c7ee1fe4","90109":"adab7e9f","90265":"40f28240","90316":"c34a4fc4","90337":"b1e5d689","90479":"5bb7f0c3","90606":"01e34244","90789":"fbfd7527","91020":"6f891777","91045":"034c01a9","91274":"c142e23b","91462":"2cbc46cd","91470":"9f8e3665","91674":"15a58444","91831":"34594676","91857":"486768ff","92045":"d954c0ec","92501":"1c9da9cc","92538":"a4db897b","92594":"0f02017f","92603":"b35feaf0","92823":"2378fec3","92932":"a3e62311","92983":"187fbd28","93260":"05db4221","93282":"1a36b18a","93496":"ade86a6a","93665":"ef3e0750","93668":"0e65b9bf","93948":"b00374c5","94001":"ae235ce5","94078":"290a8e28","94144":"e67549cd","94498":"74c1400e","94608":"a300d1e2","94662":"9048a992","94715":"4d331555","94849":"a752f762","94974":"ee4ce054","95125":"15e933c1","95176":"c87871d2","95335":"958f8ae4","95447":"60f0ebd4","95679":"33378d80","96004":"0a4b4c6a","96163":"7e737467","96444":"1ca13643","96851":"c91ded5a","96882":"5316be83","96923":"a0dd67b4","97008":"3b61b89d","97041":"e1fefca5","97046":"5a7938b2","97120":"0eb88e7b","97526":"a3edd3e8","97591":"4868bb6b","97746":"9a00203f","97765":"3ea4e106","97838":"98c3cdaf","97986":"99298df2","98062":"08c6491a","98228":"e4f8d575","98398":"32b8fd98","98662":"4a089632","98688":"1496c6ad","98838":"0f104f67","98885":"12f7e932","98936":"7ebe099a","99104":"d4f63539","99252":"cc5f04f6","99313":"c43ad62a","99461":"56fb2611","99488":"e94a2dcd","99674":"c85bb1ea","99758":"1cc3cb3c"}[chunkId] + ".async.js"; +/******/ return "" + ({"292":"p__Classrooms__Lists__Exercise__Add__index","310":"p__User__Detail__ExperImentImg__Detail__index","556":"p__User__Detail__Order__pages__invoice__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1660":"p__User__QQLogin__index","1702":"p__Classrooms__New__index","2001":"p__Materials__ItemAssets__AddReceive__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","2948":"p__Materials__ItemAssets__Info__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","4736":"p__User__Detail__Projects__index","4766":"p__Administration__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5427":"p__User__Detail__Devicegroup__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6613":"p__Laboratory__LaboratoryCenter__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","7202":"p__Materials__Entry__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","9134":"p__Materials__ItemAssetsList__index","9416":"p__Graduations__Lists__Tasks__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","11130":"p__Laboratory__MyReservation__index","11253":"p__Graduations__Lists__Gradingsummary__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","12303":"p__Classrooms__Lists__CommonHomework__Comment__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","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14227":"p__Paths__Overview__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14666":"p__Homepage__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15186":"p__Classrooms__Overview__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16434":"p__User__Detail__Order__pages__records__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","18682":"p__Wisdom__index","19116":"p__Materials__ItemAssets__AddProcure__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19519":"p__User__Detail__ClassManagement__Item__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","21433":"p__Equipment__Information__InfoList__ReservationInfo__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22307":"p__Report__index","22561":"p__Materials__Receive__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","24904":"p__Equipment__MessageCenterManage__index","25022":"p__Graduations__Lists__Settings__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25807":"p__Materials__MyProcure__index","25972":"layouts__user__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27178":"p__User__BindAccount__index","27182":"p__User__ResetPassword__index","27333":"p__User__WechatLogin__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","27416":"p__Equipment__Index__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28237":"p__User__Detail__Order__pages__view__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","29647":"p__Question__Index__index","29942":"p__Equipment__Information__InfoList__Edit__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31078":"p__Laboratory__LaboratoryType__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31316":"p__Equipment__Information__InfoList__Details__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","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35380":"p__Laboratory__Index__index","35729":"p__Help__Index","35977":"p__Laboratory__MyLaboratory__Info__rooms__createRoom__index","36029":"p__Administration__Student__index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","37948":"p__User__Detail__ClassManagement__index","38143":"layouts__GraduationsDetail__index","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","39820":"p__Laboratory__LaboratoryRoom__createRoom__index","40139":"p__Materials__ItemAssets__index","40559":"layouts__virtualDetail__index","40665":"p__Materials__Index__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","42159":"p__Equipment__Information__index","42240":"p__User__Detail__Videos__Upload__index","43212":"p__Laboratory__ReservationManage__index","43442":"p__Classrooms__Lists__Board__Add__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","44565":"p__HttpStatus__500","45096":"p__Shixuns__Detail__AuditSituation__index","45179":"p__Administration__Student__Edit__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","47545":"p__Graduations__Lists__Archives__index","47778":"p__IOT__DeviceManage__index","48077":"p__Classrooms__Lists__Students__index","48289":"p__Materials__MyReceive__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","51461":"p__Graduations__Lists__Topics__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","54492":"p__Graduations__Lists__StudentSelection__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","55624":"p__Graduations__Lists__Index__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57560":"p__Administration__College__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","57989":"p__Laboratory__MyLaboratory__Info__index","59133":"p__Shixuns__Detail__Challenges__index","59142":"p__Reservation__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","61075":"p__IOT__ViewAppointment__index","61311":"p__Equipment__BookingManage__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","61880":"p__User__Detail__Order__pages__apply__index","62300":"p__Api__index","62548":"p__Engineering__Norm__Detail__index","63157":"p__User__Detail__ExperImentImg__Add__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","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66034":"p__HttpStatus__UserAgents","66063":"p__Graduations__Lists__Personmanage__index","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","69681":"p__User__Detail__Devicegroup__Add__index","69828":"p__Equipment__Faultlibrary__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","70928":"p__RestFul__Edit__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71525":"p__User__Detail__Devicegroup__ReservationInfo__index","71783":"p__virtualSpaces__Lists__Experiment__index","72409":"p__Materials__Procure__index","72529":"p__User__Detail__id","72539":"p__Graduations__Review__index","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74297":"p__Laboratory__LaboratoryRoom__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","75816":"p__Paperlibrary__Random__Edit__index","76134":"p__Equipment__Maintenance__Details__index","76904":"p__MoopCases__FormPanel__index","77248":"p__Materials__ItemAssetsList__CreateItemAssets__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","82443":"p__Graduations__Lists__StageModule__index","83105":"p__Laboratory__RuleManage__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","88093":"p__Equipment__Maintenance__index","88155":"p__Shixuns__Overview__index","88501":"p__ReservationDetail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89053":"p__IOT__ElectronBPManage__index","89076":"p__Account__Binding__index","89113":"p__Equipment__Devicelabel__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","91831":"p__Graduations__Index__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","92932":"p__User__Detail__Devicegroup__Edit__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","96163":"p__Laboratory__Reservations__Info__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","97838":"p__Equipment__Working__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98662":"p__Materials__ItemAssetsType__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","98936":"p__Laboratory__MyLaboratory__index","99674":"p__Shixuns__New__ImagePreview__index","99758":"p__Laboratory__Reservations__index"}[chunkId] || chunkId) + "." + {"292":"3e07ae68","310":"963847a3","556":"fc73ebf8","703":"4a661084","805":"3a0d38db","808":"730872a3","1482":"fcba5c57","1569":"55a54bed","1581":"1df2ef1f","1660":"c6445a46","1702":"5b4914d7","2001":"09ac0d02","2021":"ec9a9473","2249":"90399667","2321":"03de8f3c","2360":"2f3cadfa","2494":"5e069ec9","2659":"81a9a127","2819":"96ad3449","2837":"b3a05bc1","2902":"ff0e0e4f","2948":"d88068f8","3133":"6a9f7113","3317":"287c0750","3391":"19ad06b6","3416":"8f71c399","3451":"30eb2f55","3509":"0baae952","3585":"4fe88eac","3885":"e66b03f8","3951":"d2aae4be","4318":"be197a7a","4645":"13b56eec","4685":"21279a05","4736":"8fca67b1","4766":"6d188784","4884":"6a75ed53","4938":"8b374cab","4973":"839b4702","5112":"9023feca","5427":"a01124f1","5434":"361b868d","5572":"a5998b4f","6127":"73ec4684","6275":"a3caa5f6","6378":"27c8142f","6540":"3bc5a641","6572":"7356342f","6613":"e22598bc","6685":"5f507b07","6758":"266f87ac","6788":"08d918eb","7043":"a5a4912c","7202":"8d2100c4","7269":"2b7b9752","7852":"3adc888f","7884":"cb2fe97e","8410":"5b55394a","8610":"02b2c300","8787":"3c0cbc66","8990":"c1862314","8999":"3aa4775b","9134":"a141f4d3","9232":"7802fc41","9416":"85608cce","9835":"6094bca8","9928":"5856e32a","9951":"025836c4","10126":"8de7b31b","10195":"aff87b72","10354":"5c063e6f","10485":"e7ae5da4","10737":"7ad9f02e","10799":"e6afb93d","10921":"d9767442","10970":"7b8ab207","11070":"0c2330c7","11084":"7515d019","11130":"46c84271","11221":"8fc43121","11253":"109d68aa","11348":"db579d63","11512":"7a0486b2","11520":"64a572ad","11545":"f996f44a","11581":"7fb5a1eb","12076":"47b96052","12102":"c10fa79b","12154":"5356659d","12303":"b37a5c1a","12386":"289c62c7","12412":"d1ccfde0","12476":"f3df5a1c","12632":"bc10e217","12822":"510de799","12865":"5e9d9bd4","12884":"1df85efb","12911":"f94aa754","13006":"cc56ee8e","13355":"6f55ff8d","13488":"20d8cc00","13581":"e5dfd8fe","13715":"5c6fa950","14058":"272cfa1d","14082":"9fa64b83","14088":"b6840aa3","14105":"d3063f57","14227":"16cd8a71","14514":"a532f1cb","14599":"e4d92a4b","14610":"1ef7e28a","14662":"45f17201","14666":"bde26c58","14745":"b16735a2","14889":"556be0cf","15148":"cea3709c","15186":"5bc367a9","15290":"7b3f25d8","15319":"170d4df9","15402":"309c9506","15631":"d790a1bf","15669":"7c12c053","15845":"c8fe49ef","15989":"7458297b","16328":"ddb939cc","16434":"c6d4faff","16581":"2bfdc0b4","16703":"ad652550","16729":"86a0ad56","16845":"c90daf75","17022":"b37d1265","17482":"1156fb4f","17527":"dda8adb1","17622":"57a0b86f","17806":"3d95453f","18241":"4901e995","18302":"18644774","18307":"a1c31723","18350":"0ed0f7c3","18515":"b081eece","18682":"10014426","18898":"25ad586a","18945":"044e9de8","18963":"33e3df18","19116":"0440037f","19124":"c15167e0","19208":"85e01132","19215":"1d61d22d","19360":"b0946db9","19519":"52653f2d","19715":"7fac870f","19842":"f8afcc83","19891":"f09613bf","20026":"2000c249","20424":"2a17c36b","20455":"70dea32e","20459":"84aba361","20576":"c90e7824","20680":"d03d7069","20700":"c56fa564","20834":"49c334ce","21150":"d126d1ef","21265":"aa07e566","21423":"0c35fb61","21433":"a1d06f2d","21560":"f8e25ece","21578":"997b869a","21733":"7b0c078c","21939":"e501c4f5","22191":"a3df8008","22254":"817a5f71","22296":"05ee89d1","22307":"fe91d6fc","22561":"f2dfdb6c","22662":"517355f5","22707":"e4c10e72","22970":"8eb2de1f","23003":"5d51cf48","23252":"21966faf","23332":"d7ff4957","23456":"4c266092","24064":"ac8b475b","24290":"a12fcd8f","24486":"bb28dc1a","24504":"81895469","24628":"b863dad4","24665":"0d4dcbc3","24797":"eb563316","24904":"dcce7e55","24929":"ef6538f8","25022":"fd914682","25470":"ec95f578","25609":"d96e2786","25705":"a052cd4f","25807":"58f873dc","25972":"eac781e6","26013":"04e4d63e","26126":"400f4fd5","26366":"4432dfcc","26367":"09e9c38b","26685":"3664bcb9","26741":"8189df8a","26838":"e101b66d","26883":"ca3f08b9","27178":"452f25c6","27182":"a5366d70","27333":"aa7f421c","27395":"f42b52b8","27416":"040ccfeb","27514":"02293951","27706":"c0d5e1ef","27739":"54d27078","28072":"e1dfca43","28089":"aaa88c03","28161":"00a22aad","28237":"24b7d201","28435":"81103d8e","28561":"ec76d55e","28639":"f1edf5e2","28723":"e27ec039","28782":"8d606aa9","28920":"a6e74de3","28982":"8eb249d3","28996":"6135be2b","29101":"f99a9ec2","29111":"f48a46e3","29183":"37c42793","29559":"cdc05f60","29647":"7b090531","29895":"1fa85db5","29942":"90d29537","29968":"5c930f27","30067":"f6754cff","30264":"5aa7db31","30342":"2b472fde","30518":"216baa3b","30736":"45a79df8","30741":"0afd7032","31006":"b10b1033","31078":"3b17bf99","31154":"abb4690e","31211":"2037b94b","31316":"cfcd59ec","31427":"9bb41ca6","31674":"bf8fe556","31772":"ec767a26","31962":"cdcfef64","32029":"ab9e5b45","32128":"a2bbf8df","32826":"c151ad2b","33086":"8628d8e3","33105":"2d654744","33243":"6742a018","33356":"518d9ab4","33747":"d1c2e0cd","33784":"a161c26a","33805":"a93fd24f","34093":"a51a03f5","34601":"5154c032","34741":"62e0742c","34790":"6eb90335","34800":"ed339bef","34850":"daf624f2","34994":"bd797aa0","35060":"7530a2b3","35215":"b7da475a","35238":"f3317c48","35354":"c0640e01","35380":"fb7e3979","35416":"b4018e87","35729":"8aba57ec","35830":"3bd66ca5","35977":"f29c588c","36029":"7477ded3","36270":"51d0e9ee","36291":"9d4de8a4","36381":"48039f1f","36634":"03daa006","36784":"3e7b6b65","37013":"38935607","37062":"5b080f14","37264":"67567596","37495":"88e6a49b","37948":"208c0f74","38143":"2536152d","38173":"14072398","38447":"e3878fd1","38634":"ecfb72aa","38797":"4b21e419","39252":"01ffe0b6","39332":"af87b595","39391":"a8df2a2f","39404":"a9e58420","39547":"1676dc10","39695":"6ae0b559","39820":"c4cfcbe3","39845":"ad02fd89","39950":"57e939c0","40115":"1a0cbb81","40139":"a5231b9c","40559":"87dd3f5b","40665":"0a5292ed","40865":"02058a48","41048":"12494668","41297":"eab2e569","41657":"3d2a8e74","41717":"69d01a46","41920":"2f62ea9b","41953":"6d7790c5","42133":"dd42fc13","42159":"0dc18879","42240":"04810b66","42441":"2b68ce27","42783":"4b759e33","43115":"40bcbc51","43212":"84c99fa1","43252":"64b4bebe","43321":"bead1429","43428":"801b4e6a","43442":"c01a05f0","43468":"42946af4","43508":"b149042f","43862":"dba18cb7","44189":"e486a7d9","44216":"d2e347ea","44259":"7f7054ce","44354":"4d10aca1","44360":"2fe17938","44449":"9a6778a4","44494":"afe491b0","44565":"6fc5af23","45096":"79f0b617","45178":"36159203","45179":"ddcada8f","45359":"7616b707","45413":"5d0575d6","45431":"dd9f8c81","45504":"9783c421","45650":"fa7b4a68","45775":"d36453a8","45825":"4c8b5677","45992":"bb6f6eca","46022":"b889014d","46573":"db7fbeee","46675":"3f2beb21","46796":"ea83f17d","46949":"c27c1014","46963":"cf2edf94","47271":"48a4f281","47353":"c34a61b5","47545":"b55b0816","47686":"f38a5fc1","47778":"283c7917","48077":"93fcb146","48099":"72da62ad","48289":"67766b93","48431":"81de89cf","48507":"904ca438","48689":"e987816e","48776":"3ca5830e","49127":"f28f637e","49205":"8cd7eb89","49260":"d82ab47f","49366":"a6f0176b","49388":"e38db815","49716":"a8639589","49890":"ac5b35ee","50058":"ac5985b6","50523":"d833008b","50812":"6c8becca","50869":"d64e78ad","51144":"88d767c5","51227":"086bb39b","51260":"12d830c2","51276":"fad14d8b","51461":"20e7fb50","51582":"44a7c894","51646":"a1e61a3a","51855":"76f3ff99","51945":"52b4e036","52338":"b4d2dd95","52404":"f58f3c2b","52485":"e5d03513","52556":"0ae9c5d7","52720":"3cb1e974","52806":"c4b2694d","52829":"e765c6e5","52875":"9ba8fa24","53114":"685610c8","53247":"dfc735e2","53550":"d1343c48","53697":"344fc05c","53777":"630cd89c","53910":"8383652b","54056":"ab9daa30","54164":"f0a2b91a","54273":"0564f47b","54492":"0c2ca64e","54572":"5676fa24","54770":"b3a2fed8","54862":"da69b907","54952":"33f7385d","55128":"559c852a","55351":"b1b9a06c","55535":"9d52e700","55573":"7d94bfa0","55600":"a5eff6d7","55624":"bcb77e1c","55693":"4b714ff1","56047":"b4b0d1c6","56156":"c61ad60b","56277":"ac0cc066","56775":"9d418a01","57045":"f4da79af","57365":"7e7804c5","57560":"1db39ef5","57614":"70e4283d","57989":"1b998cc7","58253":"20604031","58271":"04f27f83","58491":"77aa7dad","58561":"01225d86","58678":"7dc10a44","59133":"27914c42","59142":"412088c5","59649":"c620650d","59788":"87309879","59789":"cac07459","60479":"0f5bbf3a","60533":"b3b30b43","60547":"9b048d8d","60597":"f7013bfa","61043":"b118018e","61075":"9a0a71ce","61104":"f36d016e","61311":"64f881d6","61603":"e4ce051a","61713":"82c6b693","61727":"39d7b6cf","61735":"1f68c0f8","61880":"15351f49","61984":"f1ece445","62300":"9d5b62b0","62548":"7c4eb05c","62945":"927b34c0","63157":"46595fc0","63198":"f92793e1","64017":"3bb4dfa9","64144":"5a60659d","64217":"c92de84d","64385":"95f08758","64496":"c74d685d","64520":"be5572b1","64630":"3a922a25","64636":"e0ac0534","65022":"964095e2","65111":"d06628a6","65148":"c4612fa5","65191":"1cf60e9d","65337":"442b06ed","65549":"8e5cd453","65603":"36a62d50","65805":"a5d5ea17","65816":"cd742b6d","65876":"a2754c64","66034":"4fe54c49","66063":"4e7653c1","66531":"f4ad9a4b","66583":"e7f741f2","66651":"344be59e","66999":"4383de68","67073":"37bbcbe7","67156":"918b4bca","67242":"d354bfa1","67500":"92e0c845","67878":"14b6f270","68014":"509d0f4e","68532":"e22b2e7b","68665":"471a9b93","68827":"29723ce4","68842":"19057860","68882":"17c034bb","69287":"175f19ac","69607":"d2086d07","69681":"4282e72a","69778":"c1b41839","69828":"778476f8","69922":"0e94ced0","69944":"7d5c6fd6","70022":"88a23a60","70158":"f57a4ca6","70173":"752591e6","70176":"49e643ff","70199":"9b4c6a93","70232":"e64144b4","70671":"749b4875","70689":"1dff411a","70928":"b21cabb8","70981":"157d0b6b","71409":"4efffcc8","71448":"78250877","71450":"0a5b94ed","71525":"2a87a211","71581":"a41c2713","71613":"3562ecb6","71658":"95e38fc2","71783":"53311b1c","72011":"7efe6dda","72218":"25475161","72409":"3b08f2df","72529":"be71cffa","72539":"02abcd90","72570":"c9e3b569","72969":"53256e8c","73068":"f1ea4d1b","73183":"4c45bb37","73220":"3bece0c1","73376":"109a0452","73755":"fe775cb7","74014":"5339ac81","74033":"9b66db6c","74060":"ba96d301","74264":"dac2458f","74297":"35422c0b","74347":"a722ba6c","74460":"67121853","74795":"af8c53c1","75043":"2319a2d5","75136":"e91248b4","75321":"9b9a5dc1","75357":"483b7876","75786":"3c34e73f","75816":"96b9bb86","76126":"9206dbdd","76134":"3d813d8b","76411":"6f119d79","76904":"0be3b786","77034":"4ae3aad6","77084":"5fe882f0","77248":"056b1377","77303":"2c9b96cc","77460":"e9fb694a","77576":"6b5e183c","77757":"df2b372c","77857":"ceacbbff","78030":"ecf224bf","78085":"0e2fa9a9","78241":"034ebd8e","78302":"2f657c59","78737":"fa31da0e","78782":"3eab4dbd","79233":"986ba682","79489":"535fc585","79590":"b48b9669","79817":"233a3bf7","79921":"2bc745e7","80022":"650c3b24","80347":"a568ca36","80508":"fdb65434","80629":"ca49ee59","80807":"0ab4dcee","81148":"eef1be31","81326":"32e6a0e9","81799":"a2c57170","82339":"bd171d88","82425":"272f0abb","82443":"0a8080bb","82709":"1bda5e08","83105":"fea0018a","83141":"d40b35d9","83212":"1775db5d","83726":"08cc51e9","83935":"71c4324a","84546":"6df8f0de","84567":"0e50f1cb","85016":"4be0f177","85048":"f492db44","85071":"646d0920","85111":"01b7d67e","85241":"72e2f7bb","85297":"e1b301d9","85494":"da5840b1","85764":"5c1c73b5","85844":"cd0a401d","85888":"442e3893","85891":"82c7ea29","86045":"0a358cbb","86052":"03b7dda5","86129":"801a9880","86184":"11a56d28","86411":"440c927e","86452":"5f2ce700","86541":"ec12e4db","86634":"7462e9e0","86774":"2db1d78d","86820":"89a4d909","86859":"e938619c","86913":"366049a4","87058":"0e37e674","87260":"80080036","87419":"fbad2a24","87584":"3b670749","87922":"9083a8e3","87964":"83911fb5","88093":"dad30454","88155":"e9b4d694","88281":"24d35c78","88501":"d73a594f","88517":"e0671576","88610":"2af692bc","88699":"bd237d9d","88866":"66368bfa","89053":"0c6fac8a","89076":"6f6d401f","89113":"89e755cd","89255":"cc77e36e","89554":"3bd5f2ea","89677":"5770bd6b","89785":"dfd4c81e","89786":"c7ee1fe4","90109":"adab7e9f","90265":"40f28240","90316":"c34a4fc4","90337":"b1e5d689","90479":"5bb7f0c3","90606":"01e34244","90789":"fbfd7527","91020":"6f891777","91045":"034c01a9","91274":"c142e23b","91462":"2cbc46cd","91470":"9f8e3665","91674":"15a58444","91831":"34594676","91857":"486768ff","92045":"d954c0ec","92501":"1c9da9cc","92538":"a4db897b","92594":"0f02017f","92603":"b35feaf0","92823":"2378fec3","92932":"a3e62311","92983":"187fbd28","93260":"05db4221","93282":"1a36b18a","93496":"ade86a6a","93665":"ef3e0750","93668":"0e65b9bf","93948":"b00374c5","94001":"ae235ce5","94078":"290a8e28","94144":"e67549cd","94498":"74c1400e","94608":"a300d1e2","94662":"9048a992","94715":"4d331555","94849":"a752f762","94974":"ee4ce054","95125":"15e933c1","95176":"c87871d2","95335":"958f8ae4","95447":"60f0ebd4","95679":"33378d80","96004":"0a4b4c6a","96163":"94cc83d0","96444":"1ca13643","96851":"c91ded5a","96882":"5316be83","96923":"a0dd67b4","97008":"3b61b89d","97041":"e1fefca5","97046":"5a7938b2","97120":"0eb88e7b","97526":"a3edd3e8","97591":"4868bb6b","97746":"9a00203f","97765":"3ea4e106","97838":"98c3cdaf","97986":"99298df2","98062":"08c6491a","98228":"e4f8d575","98398":"32b8fd98","98662":"4a089632","98688":"1496c6ad","98838":"0f104f67","98885":"12f7e932","98936":"7ebe099a","99104":"d4f63539","99252":"cc5f04f6","99313":"c43ad62a","99461":"56fb2611","99488":"e94a2dcd","99674":"c85bb1ea","99758":"10d21fa6"}[chunkId] + ".async.js"; /******/ }; /******/ }(); /******/ @@ -204910,7 +204910,7 @@ function debounce (delay, callback, options) { /******/ // 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","556":"p__User__Detail__Order__pages__invoice__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1702":"p__Classrooms__New__index","2001":"p__Materials__ItemAssets__AddReceive__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","2948":"p__Materials__ItemAssets__Info__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","4736":"p__User__Detail__Projects__index","4766":"p__Administration__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5427":"p__User__Detail__Devicegroup__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6613":"p__Laboratory__LaboratoryCenter__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","7202":"p__Materials__Entry__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","9134":"p__Materials__ItemAssetsList__index","9416":"p__Graduations__Lists__Tasks__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","11130":"p__Laboratory__MyReservation__index","11253":"p__Graduations__Lists__Gradingsummary__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","12303":"p__Classrooms__Lists__CommonHomework__Comment__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","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14227":"p__Paths__Overview__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14666":"p__Homepage__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15186":"p__Classrooms__Overview__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16434":"p__User__Detail__Order__pages__records__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","18682":"p__Wisdom__index","19116":"p__Materials__ItemAssets__AddProcure__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19519":"p__User__Detail__ClassManagement__Item__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","21433":"p__Equipment__Information__InfoList__ReservationInfo__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22307":"p__Report__index","22561":"p__Materials__Receive__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","24904":"p__Equipment__MessageCenterManage__index","25022":"p__Graduations__Lists__Settings__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25807":"p__Materials__MyProcure__index","25972":"layouts__user__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27178":"p__User__BindAccount__index","27182":"p__User__ResetPassword__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","27416":"p__Equipment__Index__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28237":"p__User__Detail__Order__pages__view__index","28435":"p__Classrooms__Lists__Attendance__index","28723":"p__Classrooms__Lists__Polls__Edit__index","28782":"p__Shixuns__Index__index","28982":"p__Paths__New__index","29647":"p__Question__Index__index","29942":"p__Equipment__Information__InfoList__Edit__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31078":"p__Laboratory__LaboratoryType__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31316":"p__Equipment__Information__InfoList__Details__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","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35380":"p__Laboratory__Index__index","35729":"p__Help__Index","35977":"p__Laboratory__MyLaboratory__Info__rooms__createRoom__index","36029":"p__Administration__Student__index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","37948":"p__User__Detail__ClassManagement__index","38143":"layouts__GraduationsDetail__index","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","39820":"p__Laboratory__LaboratoryRoom__createRoom__index","40139":"p__Materials__ItemAssets__index","40559":"layouts__virtualDetail__index","40665":"p__Materials__Index__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","42159":"p__Equipment__Information__index","42240":"p__User__Detail__Videos__Upload__index","43212":"p__Laboratory__ReservationManage__index","43442":"p__Classrooms__Lists__Board__Add__index","44259":"p__User__Detail__Order__pages__result__index","44449":"p__Competitions__Exports__index","45096":"p__Shixuns__Detail__AuditSituation__index","45179":"p__Administration__Student__Edit__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","47545":"p__Graduations__Lists__Archives__index","47778":"p__IOT__DeviceManage__index","48077":"p__Classrooms__Lists__Students__index","48289":"p__Materials__MyReceive__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","51461":"p__Graduations__Lists__Topics__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","54492":"p__Graduations__Lists__StudentSelection__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","55624":"p__Graduations__Lists__Index__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57560":"p__Administration__College__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","57989":"p__Laboratory__MyLaboratory__Info__index","59133":"p__Shixuns__Detail__Challenges__index","59142":"p__Reservation__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","61075":"p__IOT__ViewAppointment__index","61311":"p__Equipment__BookingManage__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","61880":"p__User__Detail__Order__pages__apply__index","62548":"p__Engineering__Norm__Detail__index","63157":"p__User__Detail__ExperImentImg__Add__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","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66063":"p__Graduations__Lists__Personmanage__index","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","69681":"p__User__Detail__Devicegroup__Add__index","69828":"p__Equipment__Faultlibrary__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71525":"p__User__Detail__Devicegroup__ReservationInfo__index","71783":"p__virtualSpaces__Lists__Experiment__index","72409":"p__Materials__Procure__index","72529":"p__User__Detail__id","72539":"p__Graduations__Review__index","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74297":"p__Laboratory__LaboratoryRoom__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","75816":"p__Paperlibrary__Random__Edit__index","76134":"p__Equipment__Maintenance__Details__index","76904":"p__MoopCases__FormPanel__index","77248":"p__Materials__ItemAssetsList__CreateItemAssets__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","82443":"p__Graduations__Lists__StageModule__index","83105":"p__Laboratory__RuleManage__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","88093":"p__Equipment__Maintenance__index","88155":"p__Shixuns__Overview__index","88501":"p__ReservationDetail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89053":"p__IOT__ElectronBPManage__index","89076":"p__Account__Binding__index","89113":"p__Equipment__Devicelabel__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","91831":"p__Graduations__Index__index","92045":"p__Engineering__Lists__TeacherList__index","92501":"p__Search__index","92823":"p__Engineering__Navigation__Home__index","92932":"p__User__Detail__Devicegroup__Edit__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","96163":"p__Laboratory__Reservations__Info__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","97838":"p__Equipment__Working__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98662":"p__Materials__ItemAssetsType__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","98936":"p__Laboratory__MyLaboratory__index","99674":"p__Shixuns__New__ImagePreview__index","99758":"p__Laboratory__Reservations__index"}[chunkId] || chunkId) + "." + {"292":"96d7499b","310":"be5964b0","556":"3873bcec","808":"299670ab","1482":"ab43454e","1581":"a07d4e02","1702":"b015be54","2001":"8d6b2a9f","2659":"884f4bf0","2819":"a87ed1a9","2948":"72afbdb6","3317":"4fa7625f","3391":"4b14e098","3451":"fa5c215b","3509":"5370b3e9","3585":"5f186dc5","3951":"ef053b83","4736":"0fd9b54a","4766":"1b156221","4884":"8bfd0941","4973":"04f6d771","5427":"2484e2e3","5572":"6a346250","6127":"125dff04","6613":"6829c5c9","6685":"d6aa27e5","6758":"6845f9fd","6788":"2738223e","7043":"18f8db7b","7202":"9a39225b","7852":"8effead6","7884":"48d22db6","8787":"481a0bfc","8999":"cb2d9276","9134":"3c08807c","9416":"bb1461ef","10195":"e871f2a8","10485":"0098dcea","10737":"19d97d93","10799":"1204a724","10921":"11e88fe9","11070":"d5077791","11130":"582cfba4","11253":"f3f48f8a","11512":"7ee48c72","11520":"c51268bf","11545":"5eb44c30","11581":"de43795f","12076":"ee397a4b","12102":"889f07ca","12303":"1b57e10d","12412":"832954ba","12476":"80711b86","12865":"c39690d4","12884":"881f5270","13006":"7d42512c","13355":"84b489d8","13581":"6b439610","14058":"5e856976","14105":"bbdb7611","14227":"3d94554e","14514":"78dd467f","14599":"b8fb50a8","14610":"5ce69993","14662":"aa4d9c31","14666":"acfeb229","14889":"23f59f4c","15148":"4351ee81","15186":"3a627d1b","15319":"4474da23","15402":"72fc6a3f","16328":"eca69057","16434":"ac343ecb","16729":"86217d25","16845":"49655648","17482":"80d26b52","17527":"fcb3d8d2","17622":"788c4afb","17806":"54603db9","18241":"0b5cd7f2","18302":"012807c9","18307":"dbd969a8","18682":"6308eb00","19116":"fa705431","19215":"9418099c","19360":"065117fc","19519":"381fd438","19715":"0d9bafa7","19891":"9cb70b9e","20026":"1a045700","20576":"1eb107b7","20680":"d5077791","20700":"f24e2600","21265":"c44f4939","21423":"7bee5c4f","21433":"ea9d0a7d","21578":"a45a36a6","21939":"a00437c8","22254":"15e850db","22307":"b904d602","22561":"7fa5c70d","22707":"1eece58a","23332":"7c5387e7","24504":"27aeadd5","24904":"848e255b","25022":"bd3a2afa","25470":"9b534596","25705":"c8768d8c","25807":"0df45c5b","25972":"271615ef","26366":"58269082","26685":"84bc9229","26741":"84b15a6f","26883":"792d74c4","27178":"4233d51e","27182":"72c9191b","27395":"4652b116","27416":"a8ee8e03","28072":"b84290a2","28237":"6eaee5cf","28435":"a990d8c3","28723":"b77efe72","28782":"7964dcba","28982":"27b20cac","29647":"ec1ad416","29942":"611c06dc","30067":"0d92a16e","30264":"a50ef0df","30342":"e8837eef","31006":"ddc17d3b","31078":"670b506b","31211":"a2be985c","31316":"c42e8004","31427":"e4be48ea","31674":"1fc1c600","31962":"c247eca5","33356":"e285654f","33747":"b3a6072d","33784":"d9a8d453","34093":"2e713097","34601":"4254a753","34741":"48efdd44","34800":"257e9cb9","34994":"93d98761","35238":"f317dfae","35380":"944e7abc","35729":"c86b53ba","35977":"5b67d0db","36029":"177c1ff7","36270":"ba6a5dce","36784":"a70d6e02","37062":"f7646349","37948":"a220ec97","38143":"d05cebfa","38447":"f0dd97db","38634":"8372bf1d","38797":"e33abb56","39332":"7768aac5","39391":"6698342c","39404":"80779af1","39695":"91e6c1af","39820":"89c751cd","40139":"12c83839","40559":"837ff954","40665":"72ce190c","41048":"e86f2a07","41657":"1cb84188","41717":"054d21f7","41953":"0004d052","42159":"7e650fdb","42240":"7c98c09b","43212":"43ebdade","43442":"f397711f","44259":"604d7656","44449":"8ee900c5","45096":"bd3d4d7a","45179":"1ce16268","45359":"e650834a","45431":"05fde615","45650":"4753661d","45775":"efab6d87","45825":"efdaa5d2","45992":"2d4ec36e","46796":"c11139de","46963":"c247eca5","47545":"1b891248","47778":"3b965cb0","48077":"b4ef3a83","48289":"73cb5f99","48431":"90bff62b","48689":"d5476c3e","49205":"0fe527dd","49366":"ec831e86","49716":"7b9179c3","49890":"17d77327","50869":"dffc4d8c","51276":"f7a08dae","51461":"4d6c0aa9","51582":"1002084a","51855":"82539e18","52338":"95cd9604","52404":"f8a7eb1a","52806":"c80f8205","52829":"68b5b0c2","52875":"016b779c","53247":"4c8851bf","53910":"f890b8d4","54056":"00986779","54164":"e14bf035","54492":"107eaaa4","54572":"14b65734","54770":"4474da23","54862":"e6170516","55573":"f398b260","55624":"f921e65c","56277":"9d37c373","57045":"69e58a38","57560":"d1ff7153","57614":"657ca8c5","57989":"a5f801e8","59133":"9ca2a14a","59142":"a4e7910d","59649":"8d0c0150","59788":"b8709871","60479":"cc943518","60533":"94ee95a8","60547":"e32794d7","61043":"b65cba00","61075":"5d2bd783","61311":"c8623303","61713":"bdb1a2c7","61727":"34676447","61880":"d75d27b6","62548":"e6a850b8","63157":"472e996f","64144":"41219396","64217":"02faad96","64496":"493242dc","64520":"7501f03b","65111":"1344fb49","65148":"b5a6bcc5","65191":"f0f8d817","65549":"cc34f4d5","65816":"ccabbfd1","66063":"27c94de9","66583":"d65e2ecf","66651":"bbf8aab5","67242":"baa30ac0","67878":"e32e5cb7","68014":"2e0733ca","68665":"406536de","68827":"1d780c76","68882":"30728183","69681":"ca3e8e34","69828":"56554cfe","69922":"08bc8d45","69944":"bb3aa2f3","71450":"9cbc34c4","71525":"0108d461","71783":"6bae0101","72409":"16520be6","72529":"d4820ab6","72539":"c8443140","72570":"f128b7f2","73183":"f67163ba","73220":"f4bd7ac9","74264":"da262e89","74297":"841984a0","74795":"462742fd","75043":"e649e1a8","75357":"7490c4ff","75786":"eb230cae","75816":"40af288b","76134":"aaf20bae","76904":"f03a5fb3","77248":"c372b6c4","77460":"635a21f6","77857":"f3fd0b3d","78085":"22b5e6b7","79489":"6f515f6b","79590":"379ffe94","79921":"2860de20","80508":"45f5ed7b","81148":"2e8138c6","82339":"51014356","82425":"7cefa49d","82443":"7cacea8b","83105":"21f97537","83141":"28b52976","83212":"2f7b70e7","83935":"9b57208e","84546":"26208e9d","85048":"46ffae16","85111":"d5451a87","85297":"d51f758e","85888":"f41e0966","85891":"5221c076","86052":"64158c8a","86452":"65af8e78","86541":"b6e3d8fc","86634":"3052eaf8","86820":"6df0be99","86913":"5e8f4143","87058":"e2d62303","87260":"ddd7b9c6","87922":"7a5b5911","88093":"383c740b","88155":"505a1624","88501":"551b1d9c","88517":"b5078bc4","88610":"64a6da8a","88866":"efd2cebe","89053":"47d1aefe","89076":"e3c3257e","89113":"267e1834","89677":"bcbd5328","89785":"f8a7eb1a","90109":"50785ac3","90265":"c2a32fac","90337":"807892a4","91045":"1b685a85","91470":"72c9191b","91831":"f424bf04","92045":"407c8804","92501":"2c5a12ef","92823":"e7bbebb0","92932":"2cf6b0db","92983":"8999eaa2","93260":"9cf5d619","93282":"a6e6b973","93496":"183e04e4","93665":"7f0304cf","93668":"0753820f","94078":"6abe90a2","94498":"e9e5fed6","94662":"f648a242","94715":"f445f9a9","94849":"9b357d1f","95125":"02b5edca","95176":"6a7b3bff","95335":"1be965f1","96163":"19780d54","96444":"940ed7a1","96882":"b8555eaf","97008":"11b24c52","97046":"b0e5c0d0","97838":"6b1bcb12","98062":"7dcd1a62","98398":"12b10976","98662":"b99032dc","98688":"eafcca36","98885":"e5b4f5fd","98936":"2ed7a6a3","99674":"776661e9","99758":"a4a8d991"}[chunkId] + ".chunk.css"; +/******/ return "" + ({"292":"p__Classrooms__Lists__Exercise__Add__index","310":"p__User__Detail__ExperImentImg__Detail__index","556":"p__User__Detail__Order__pages__invoice__index","1482":"p__Classrooms__Lists__Graduation__Topics__Edit__index","1702":"p__Classrooms__New__index","2001":"p__Materials__ItemAssets__AddReceive__index","2659":"p__User__Detail__UserPortrait__index","2819":"p__Classrooms__Lists__Template__detail__index","2948":"p__Materials__ItemAssets__Info__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","4736":"p__User__Detail__Projects__index","4766":"p__Administration__index","4884":"p__Shixuns__Detail__Repository__Commit__index","4973":"p__Engineering__Evaluate__List__index","5427":"p__User__Detail__Devicegroup__index","5572":"p__Paths__HigherVocationalEducation__index","6127":"p__Classrooms__Lists__ProgramHomework__Ranking__index","6613":"p__Laboratory__LaboratoryCenter__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","7202":"p__Materials__Entry__index","7852":"p__Classrooms__Lists__ShixunHomeworks__index","7884":"p__Shixuns__Exports__index","8787":"p__Competitions__Entered__index","8999":"p__Three__index","9134":"p__Materials__ItemAssetsList__index","9416":"p__Graduations__Lists__Tasks__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","11130":"p__Laboratory__MyReservation__index","11253":"p__Graduations__Lists__Gradingsummary__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","12303":"p__Classrooms__Lists__CommonHomework__Comment__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","13581":"p__Classrooms__Lists__ShixunHomeworks__Detail__index","14058":"p__Demo__index","14105":"p__Classrooms__Lists__Exercise__Answer__index","14227":"p__Paths__Overview__index","14514":"p__Account__Results__index","14599":"p__Problemset__index","14610":"p__User__Detail__LearningPath__index","14662":"p__Classrooms__Lists__GroupHomework__Review__index","14666":"p__Homepage__index","14889":"p__Classrooms__Lists__Exercise__ImitateAnswer__index","15148":"p__Classrooms__Lists__Template__index","15186":"p__Classrooms__Overview__index","15319":"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index","15402":"p__User__Detail__Topics__Detail__index","16328":"p__Shixuns__Edit__body__Warehouse__index","16434":"p__User__Detail__Order__pages__records__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","18682":"p__Wisdom__index","19116":"p__Materials__ItemAssets__AddProcure__index","19215":"p__Shixuns__Detail__ForkList__index","19360":"p__User__Detail__virtualSpaces__index","19519":"p__User__Detail__ClassManagement__Item__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","21433":"p__Equipment__Information__InfoList__ReservationInfo__index","21578":"p__Classrooms__Lists__Graduation__Topics__Detail__index","21939":"p__User__Detail__Order__index","22254":"p__Shixuns__Detail__Discuss__index","22307":"p__Report__index","22561":"p__Materials__Receive__index","22707":"p__Innovation__MyDataSet__index","23332":"p__Paths__Detail__id","24504":"p__virtualSpaces__Lists__Survey__index","24904":"p__Equipment__MessageCenterManage__index","25022":"p__Graduations__Lists__Settings__index","25470":"p__Shixuns__Detail__Collaborators__index","25705":"p__virtualSpaces__Lists__Construction__index","25807":"p__Materials__MyProcure__index","25972":"layouts__user__index","26366":"p__Innovation__PublicProject__index","26685":"p__Classrooms__Index__index","26741":"p__Engineering__Norm__List__index","26883":"p__Competitions__Index__index","27178":"p__User__BindAccount__index","27182":"p__User__ResetPassword__index","27395":"p__Classrooms__Lists__Statistics__StudentDetail__index","27416":"p__Equipment__Index__index","28072":"p__Classrooms__Lists__GroupHomework__SubmitWork__index","28237":"p__User__Detail__Order__pages__view__index","28435":"p__Classrooms__Lists__Attendance__index","28723":"p__Classrooms__Lists__Polls__Edit__index","28782":"p__Shixuns__Index__index","28982":"p__Paths__New__index","29647":"p__Question__Index__index","29942":"p__Equipment__Information__InfoList__Edit__index","30067":"p__Message__index","30264":"p__User__Detail__Order__pages__orderPay__index","30342":"p__Classrooms__Lists__ShixunHomeworks__Comment__index","31006":"p__RestFul__index","31078":"p__Laboratory__LaboratoryType__index","31211":"p__Classrooms__Lists__CommonHomework__EditWork__index","31316":"p__Equipment__Information__InfoList__Details__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","34741":"p__Problems__OjForm__NewEdit__index","34800":"p__Engineering__Lists__GraduatedMatrix__index","34994":"p__Problems__OjForm__index","35238":"p__virtualSpaces__Lists__Material__index","35380":"p__Laboratory__Index__index","35729":"p__Help__Index","35977":"p__Laboratory__MyLaboratory__Info__rooms__createRoom__index","36029":"p__Administration__Student__index","36270":"p__MyProblem__index","36784":"p__Innovation__Edit__index","37062":"layouts__SimpleLayouts","37948":"p__User__Detail__ClassManagement__index","38143":"layouts__GraduationsDetail__index","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","39820":"p__Laboratory__LaboratoryRoom__createRoom__index","40139":"p__Materials__ItemAssets__index","40559":"layouts__virtualDetail__index","40665":"p__Materials__Index__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","42159":"p__Equipment__Information__index","42240":"p__User__Detail__Videos__Upload__index","43212":"p__Laboratory__ReservationManage__index","43442":"p__Classrooms__Lists__Board__Add__index","44259":"p__User__Detail__Order__pages__result__index","44449":"p__Competitions__Exports__index","45096":"p__Shixuns__Detail__AuditSituation__index","45179":"p__Administration__Student__Edit__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","47545":"p__Graduations__Lists__Archives__index","47778":"p__IOT__DeviceManage__index","48077":"p__Classrooms__Lists__Students__index","48289":"p__Materials__MyReceive__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","51461":"p__Graduations__Lists__Topics__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","54492":"p__Graduations__Lists__StudentSelection__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","55624":"p__Graduations__Lists__Index__index","56277":"p__Shixuns__Edit__index","57045":"p__Classrooms__Lists__CommonHomework__SubmitWork__index","57560":"p__Administration__College__index","57614":"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index","57989":"p__Laboratory__MyLaboratory__Info__index","59133":"p__Shixuns__Detail__Challenges__index","59142":"p__Reservation__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","61075":"p__IOT__ViewAppointment__index","61311":"p__Equipment__BookingManage__index","61713":"p__virtualSpaces__Lists__Settings__index","61727":"p__Classrooms__Lists__CourseGroup__NotList__index","61880":"p__User__Detail__Order__pages__apply__index","62548":"p__Engineering__Norm__Detail__index","63157":"p__User__Detail__ExperImentImg__Add__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","65549":"p__Shixuns__New__CreateImg__index","65816":"p__virtualSpaces__Lists__Announcement__index","66063":"p__Graduations__Lists__Personmanage__index","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","69681":"p__User__Detail__Devicegroup__Add__index","69828":"p__Equipment__Faultlibrary__index","69922":"p__Classrooms__Lists__Statistics__StudentVideo__index","69944":"p__Classrooms__Lists__Video__Statistics__StudentDetail__index","71450":"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index","71525":"p__User__Detail__Devicegroup__ReservationInfo__index","71783":"p__virtualSpaces__Lists__Experiment__index","72409":"p__Materials__Procure__index","72529":"p__User__Detail__id","72539":"p__Graduations__Review__index","72570":"p__Competitions__Detail__index","73183":"p__Engineering__Lists__GraduationIndex__index","73220":"p__Classrooms__Lists__Video__Upload__index","74264":"p__Forums__New__index","74297":"p__Laboratory__LaboratoryRoom__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","75816":"p__Paperlibrary__Random__Edit__index","76134":"p__Equipment__Maintenance__Details__index","76904":"p__MoopCases__FormPanel__index","77248":"p__Materials__ItemAssetsList__CreateItemAssets__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","82443":"p__Graduations__Lists__StageModule__index","83105":"p__Laboratory__RuleManage__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","88093":"p__Equipment__Maintenance__index","88155":"p__Shixuns__Overview__index","88501":"p__ReservationDetail__index","88517":"p__User__Detail__Topics__Group__index","88866":"p__index","89053":"p__IOT__ElectronBPManage__index","89076":"p__Account__Binding__index","89113":"p__Equipment__Devicelabel__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","91831":"p__Graduations__Index__index","92045":"p__Engineering__Lists__TeacherList__index","92501":"p__Search__index","92823":"p__Engineering__Navigation__Home__index","92932":"p__User__Detail__Devicegroup__Edit__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","96163":"p__Laboratory__Reservations__Info__index","96444":"p__Video__Detail__id","96882":"p__Classrooms__New__StartClass__index","97008":"p__Shixuns__New__index","97046":"p__Shixuns__Detail__Repository__AddFile__index","97838":"p__Equipment__Working__index","98062":"p__User__Detail__Topicbank__index","98398":"p__virtualSpaces__Lists__Resources__Detail__index","98662":"p__Materials__ItemAssetsType__index","98688":"p__Shixuns__Detail__Repository__index","98885":"p__Classrooms__Lists__Statistics__StudentStatistics__index","98936":"p__Laboratory__MyLaboratory__index","99674":"p__Shixuns__New__ImagePreview__index","99758":"p__Laboratory__Reservations__index"}[chunkId] || chunkId) + "." + {"292":"96d7499b","310":"be5964b0","556":"3873bcec","808":"299670ab","1482":"ab43454e","1581":"a07d4e02","1702":"b015be54","2001":"8d6b2a9f","2659":"884f4bf0","2819":"a87ed1a9","2948":"72afbdb6","3317":"4fa7625f","3391":"4b14e098","3451":"fa5c215b","3509":"5370b3e9","3585":"5f186dc5","3951":"ef053b83","4736":"0fd9b54a","4766":"1b156221","4884":"8bfd0941","4973":"04f6d771","5427":"2484e2e3","5572":"6a346250","6127":"125dff04","6613":"6829c5c9","6685":"d6aa27e5","6758":"6845f9fd","6788":"2738223e","7043":"18f8db7b","7202":"9a39225b","7852":"8effead6","7884":"48d22db6","8787":"481a0bfc","8999":"cb2d9276","9134":"3c08807c","9416":"bb1461ef","10195":"e871f2a8","10485":"0098dcea","10737":"19d97d93","10799":"1204a724","10921":"11e88fe9","11070":"d5077791","11130":"582cfba4","11253":"f3f48f8a","11512":"7ee48c72","11520":"c51268bf","11545":"5eb44c30","11581":"de43795f","12076":"ee397a4b","12102":"889f07ca","12303":"1b57e10d","12412":"832954ba","12476":"80711b86","12865":"c39690d4","12884":"881f5270","13006":"7d42512c","13355":"84b489d8","13581":"6b439610","14058":"5e856976","14105":"bbdb7611","14227":"3d94554e","14514":"78dd467f","14599":"b8fb50a8","14610":"5ce69993","14662":"aa4d9c31","14666":"acfeb229","14889":"23f59f4c","15148":"4351ee81","15186":"3a627d1b","15319":"4474da23","15402":"72fc6a3f","16328":"eca69057","16434":"ac343ecb","16729":"86217d25","16845":"49655648","17482":"80d26b52","17527":"fcb3d8d2","17622":"788c4afb","17806":"54603db9","18241":"0b5cd7f2","18302":"012807c9","18307":"dbd969a8","18682":"6308eb00","19116":"fa705431","19215":"9418099c","19360":"065117fc","19519":"381fd438","19715":"0d9bafa7","19891":"9cb70b9e","20026":"1a045700","20576":"1eb107b7","20680":"d5077791","20700":"f24e2600","21265":"c44f4939","21423":"7bee5c4f","21433":"ea9d0a7d","21578":"a45a36a6","21939":"a00437c8","22254":"15e850db","22307":"b904d602","22561":"7fa5c70d","22707":"1eece58a","23332":"7c5387e7","24504":"27aeadd5","24904":"848e255b","25022":"bd3a2afa","25470":"9b534596","25705":"c8768d8c","25807":"0df45c5b","25972":"271615ef","26366":"58269082","26685":"84bc9229","26741":"84b15a6f","26883":"792d74c4","27178":"4233d51e","27182":"72c9191b","27395":"4652b116","27416":"a8ee8e03","28072":"b84290a2","28237":"6eaee5cf","28435":"a990d8c3","28723":"b77efe72","28782":"7964dcba","28982":"27b20cac","29647":"ec1ad416","29942":"611c06dc","30067":"0d92a16e","30264":"a50ef0df","30342":"e8837eef","31006":"ddc17d3b","31078":"670b506b","31211":"a2be985c","31316":"c42e8004","31427":"e4be48ea","31674":"1fc1c600","31962":"c247eca5","33356":"e285654f","33747":"b3a6072d","33784":"d9a8d453","34093":"2e713097","34601":"4254a753","34741":"48efdd44","34800":"257e9cb9","34994":"93d98761","35238":"f317dfae","35380":"944e7abc","35729":"c86b53ba","35977":"5b67d0db","36029":"177c1ff7","36270":"ba6a5dce","36784":"a70d6e02","37062":"f7646349","37948":"a220ec97","38143":"d05cebfa","38447":"f0dd97db","38634":"8372bf1d","38797":"e33abb56","39332":"7768aac5","39391":"6698342c","39404":"80779af1","39695":"91e6c1af","39820":"89c751cd","40139":"12c83839","40559":"837ff954","40665":"72ce190c","41048":"e86f2a07","41657":"1cb84188","41717":"054d21f7","41953":"0004d052","42159":"7e650fdb","42240":"7c98c09b","43212":"43ebdade","43442":"f397711f","44259":"604d7656","44449":"8ee900c5","45096":"bd3d4d7a","45179":"1ce16268","45359":"e650834a","45431":"05fde615","45650":"4753661d","45775":"efab6d87","45825":"efdaa5d2","45992":"2d4ec36e","46796":"c11139de","46963":"c247eca5","47545":"1b891248","47778":"3b965cb0","48077":"b4ef3a83","48289":"73cb5f99","48431":"90bff62b","48689":"d5476c3e","49205":"0fe527dd","49366":"ec831e86","49716":"7b9179c3","49890":"17d77327","50869":"dffc4d8c","51276":"f7a08dae","51461":"4d6c0aa9","51582":"1002084a","51855":"82539e18","52338":"95cd9604","52404":"f8a7eb1a","52806":"c80f8205","52829":"68b5b0c2","52875":"016b779c","53247":"4c8851bf","53910":"f890b8d4","54056":"00986779","54164":"e14bf035","54492":"107eaaa4","54572":"14b65734","54770":"4474da23","54862":"e6170516","55573":"f398b260","55624":"f921e65c","56277":"9d37c373","57045":"69e58a38","57560":"d1ff7153","57614":"657ca8c5","57989":"217b7da1","59133":"9ca2a14a","59142":"a4e7910d","59649":"8d0c0150","59788":"b8709871","60479":"cc943518","60533":"94ee95a8","60547":"e32794d7","61043":"b65cba00","61075":"5d2bd783","61311":"c8623303","61713":"bdb1a2c7","61727":"34676447","61880":"d75d27b6","62548":"e6a850b8","63157":"472e996f","64144":"41219396","64217":"02faad96","64496":"493242dc","64520":"7501f03b","65111":"1344fb49","65148":"b5a6bcc5","65191":"f0f8d817","65549":"cc34f4d5","65816":"ccabbfd1","66063":"27c94de9","66583":"d65e2ecf","66651":"bbf8aab5","67242":"baa30ac0","67878":"e32e5cb7","68014":"2e0733ca","68665":"406536de","68827":"1d780c76","68882":"30728183","69681":"ca3e8e34","69828":"56554cfe","69922":"08bc8d45","69944":"bb3aa2f3","71450":"9cbc34c4","71525":"0108d461","71783":"6bae0101","72409":"16520be6","72529":"d4820ab6","72539":"c8443140","72570":"f128b7f2","73183":"f67163ba","73220":"f4bd7ac9","74264":"da262e89","74297":"841984a0","74795":"462742fd","75043":"e649e1a8","75357":"7490c4ff","75786":"eb230cae","75816":"40af288b","76134":"aaf20bae","76904":"f03a5fb3","77248":"c372b6c4","77460":"635a21f6","77857":"f3fd0b3d","78085":"22b5e6b7","79489":"6f515f6b","79590":"379ffe94","79921":"2860de20","80508":"45f5ed7b","81148":"2e8138c6","82339":"51014356","82425":"7cefa49d","82443":"7cacea8b","83105":"21f97537","83141":"28b52976","83212":"2f7b70e7","83935":"9b57208e","84546":"26208e9d","85048":"46ffae16","85111":"d5451a87","85297":"d51f758e","85888":"f41e0966","85891":"5221c076","86052":"64158c8a","86452":"65af8e78","86541":"b6e3d8fc","86634":"3052eaf8","86820":"6df0be99","86913":"5e8f4143","87058":"e2d62303","87260":"ddd7b9c6","87922":"7a5b5911","88093":"383c740b","88155":"505a1624","88501":"551b1d9c","88517":"b5078bc4","88610":"64a6da8a","88866":"efd2cebe","89053":"47d1aefe","89076":"e3c3257e","89113":"267e1834","89677":"bcbd5328","89785":"f8a7eb1a","90109":"50785ac3","90265":"c2a32fac","90337":"807892a4","91045":"1b685a85","91470":"72c9191b","91831":"f424bf04","92045":"407c8804","92501":"2c5a12ef","92823":"e7bbebb0","92932":"2cf6b0db","92983":"8999eaa2","93260":"9cf5d619","93282":"a6e6b973","93496":"183e04e4","93665":"7f0304cf","93668":"0753820f","94078":"6abe90a2","94498":"e9e5fed6","94662":"f648a242","94715":"f445f9a9","94849":"9b357d1f","95125":"02b5edca","95176":"6a7b3bff","95335":"1be965f1","96163":"19780d54","96444":"940ed7a1","96882":"b8555eaf","97008":"11b24c52","97046":"b0e5c0d0","97838":"6b1bcb12","98062":"7dcd1a62","98398":"12b10976","98662":"b99032dc","98688":"eafcca36","98885":"e5b4f5fd","98936":"2ed7a6a3","99674":"776661e9","99758":"a4a8d991"}[chunkId] + ".chunk.css"; /******/ }; /******/ }(); /******/ @@ -210587,7 +210587,7 @@ function _getRoutes() { return Promise.all(/*! import() | layouts__SimpleLayouts */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(5112), __webpack_require__.e(78241), __webpack_require__.e(9951), __webpack_require__.e(71658), __webpack_require__.e(55351), __webpack_require__.e(53114), __webpack_require__.e(8990), __webpack_require__.e(11084), __webpack_require__.e(85016), __webpack_require__.e(37062)]).then(__webpack_require__.bind(__webpack_require__, /*! @/layouts/SimpleLayouts.tsx */ 5963)); }), '312': /*#__PURE__*/_react_17_0_2_react.lazy(function () { - return Promise.all(/*! import() | p__User__Detail__Order__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(99313), __webpack_require__.e(2021), __webpack_require__.e(96004), __webpack_require__.e(45431), __webpack_require__.e(21939)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/index.tsx */ 92203)); + return Promise.all(/*! import() | p__User__Detail__Order__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(99313), __webpack_require__.e(2021), __webpack_require__.e(23003), __webpack_require__.e(45431), __webpack_require__.e(21939)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/index.tsx */ 92203)); }), '313': /*#__PURE__*/_react_17_0_2_react.lazy(function () { return Promise.all(/*! import() | p__User__Detail__Order__pages__invoice__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(66999), __webpack_require__.e(2021), __webpack_require__.e(43252), __webpack_require__.e(45431), __webpack_require__.e(556)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/User/Detail/Order/pages/invoice/index.tsx */ 14218)); @@ -210635,7 +210635,7 @@ function _getRoutes() { return Promise.all(/*! import() | p__virtualSpaces__Lists__Experiment__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(5112), __webpack_require__.e(78241), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(2021), __webpack_require__.e(43428), __webpack_require__.e(11348), __webpack_require__.e(45431), __webpack_require__.e(11084), __webpack_require__.e(71783)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Experiment/index.tsx */ 59013)); }), '328': /*#__PURE__*/_react_17_0_2_react.lazy(function () { - return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(2021), __webpack_require__.e(23003), __webpack_require__.e(45431), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 16181)); + return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(2021), __webpack_require__.e(96004), __webpack_require__.e(45431), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 16181)); }), '329': /*#__PURE__*/_react_17_0_2_react.lazy(function () { return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(5112), __webpack_require__.e(78241), __webpack_require__.e(66999), __webpack_require__.e(94001), __webpack_require__.e(48099), __webpack_require__.e(2360), __webpack_require__.e(2021), __webpack_require__.e(14082), __webpack_require__.e(808), __webpack_require__.e(45431), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 22514)); @@ -210701,7 +210701,7 @@ function _getRoutes() { return Promise.all(/*! import() | p__virtualSpaces__Lists__Experiment__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(5112), __webpack_require__.e(78241), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(2021), __webpack_require__.e(43428), __webpack_require__.e(11348), __webpack_require__.e(45431), __webpack_require__.e(11084), __webpack_require__.e(71783)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Experiment/index.tsx */ 59013)); }), '350': /*#__PURE__*/_react_17_0_2_react.lazy(function () { - return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(2021), __webpack_require__.e(23003), __webpack_require__.e(45431), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 16181)); + return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(86859), __webpack_require__.e(66999), __webpack_require__.e(2021), __webpack_require__.e(96004), __webpack_require__.e(45431), __webpack_require__.e(65816)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/index.tsx */ 16181)); }), '351': /*#__PURE__*/_react_17_0_2_react.lazy(function () { return Promise.all(/*! import() | p__virtualSpaces__Lists__Announcement__AddAndEdit__index */[__webpack_require__.e(46573), __webpack_require__.e(50812), __webpack_require__.e(19124), __webpack_require__.e(80347), __webpack_require__.e(24665), __webpack_require__.e(18515), __webpack_require__.e(46675), __webpack_require__.e(20834), __webpack_require__.e(91857), __webpack_require__.e(5112), __webpack_require__.e(78241), __webpack_require__.e(66999), __webpack_require__.e(94001), __webpack_require__.e(48099), __webpack_require__.e(2360), __webpack_require__.e(2021), __webpack_require__.e(14082), __webpack_require__.e(808), __webpack_require__.e(45431), __webpack_require__.e(89677)]).then(__webpack_require__.bind(__webpack_require__, /*! @/pages/virtualSpaces/Lists/Announcement/AddAndEdit/index.tsx */ 22514)); diff --git a/umi.ef077ebb.css b/umi.a1708416.css similarity index 99% rename from umi.ef077ebb.css rename to umi.a1708416.css index 712282de1a..9d081c86a1 100644 --- a/umi.ef077ebb.css +++ b/umi.a1708416.css @@ -11481,6 +11481,7 @@ p { #educoder .ant-modal .ant-modal-content .ant-modal-close { top: 22px; right: 22px; + z-index: 10; } #educoder .ant-modal .ant-modal-content .ant-modal-close .ant-modal-close-icon::before, #educoder .ant-modal .ant-modal-content .ant-modal-close .ant-modal-close-icon::after { @@ -13281,6 +13282,5 @@ body[data-custom='auto'] { .layoutMainClass___t8btz { min-width: 1400px; min-height: 80vh; - background-color: #fff; }