You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NewEduCoderBuild/p__User__Detail__UserPortra...

2729 lines
54 KiB

"use strict";
(self["webpackChunk"] = self["webpackChunk"] || []).push([[2659],{
/***/ 79197:
/*!*********************************************!*\
!*** ./src/pages/tasks/vnc-view/index.less ***!
\*********************************************/
/***/ (function() {
// extracted by mini-css-extract-plugin
/***/ }),
/***/ 3134:
/*!******************************************************!*\
!*** ./src/pages/User/Detail/UserPortrait/index.tsx ***!
\******************************************************/
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 59301);
/* harmony import */ var umi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! umi */ 87210);
/* harmony import */ var antd__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! antd */ 95237);
/* harmony import */ var antd__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! antd */ 43604);
/* harmony import */ var antd__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! antd */ 28103);
/* harmony import */ var _pages_tasks_vnc_view_index_less__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/pages/tasks/vnc-view/index.less */ 79197);
/* harmony import */ var echarts_for_react__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! echarts-for-react */ 42441);
/* harmony import */ var echarts_wordcloud__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! echarts-wordcloud */ 56047);
/* harmony import */ var echarts_wordcloud__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(echarts_wordcloud__WEBPACK_IMPORTED_MODULE_4__);
/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! moment */ 9498);
/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(moment__WEBPACK_IMPORTED_MODULE_5__);
/* harmony import */ var _service_user__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @/service/user */ 74208);
/* harmony import */ var _components_ImagesIcon__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @/components/ImagesIcon */ 43021);
var __defProp = Object.defineProperty;
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __propIsEnum = Object.prototype.propertyIsEnumerable;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __spreadValues = (a, b) => {
for (var prop in b || (b = {}))
if (__hasOwnProp.call(b, prop))
__defNormalProp(a, prop, b[prop]);
if (__getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(b)) {
if (__propIsEnum.call(b, prop))
__defNormalProp(a, prop, b[prop]);
}
return a;
};
var __objRest = (source, exclude) => {
var target = {};
for (var prop in source)
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
target[prop] = source[prop];
if (source != null && __getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(source)) {
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
target[prop] = source[prop];
}
return target;
};
var __async = (__this, __arguments, generator) => {
return new Promise((resolve, reject) => {
var fulfilled = (value) => {
try {
step(generator.next(value));
} catch (e) {
reject(e);
}
};
var rejected = (value) => {
try {
step(generator.throw(value));
} catch (e) {
reject(e);
}
};
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
step((generator = generator.apply(__this, __arguments)).next());
});
};
moment__WEBPACK_IMPORTED_MODULE_5___default().locale("ZH-cn");
const ClassroomListPage = (_a) => {
var _b = _a, {
classroomList,
globalSetting,
loading,
user,
dispatch
} = _b, props = __objRest(_b, [
"classroomList",
"globalSetting",
"loading",
"user",
"dispatch"
]);
const params = (0,umi__WEBPACK_IMPORTED_MODULE_1__.useParams)();
const [data, setData] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)();
(0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
getData();
}, []);
const getData = () => __async(void 0, null, function* () {
const res = yield (0,_service_user__WEBPACK_IMPORTED_MODULE_6__/* .getUserPersona */ .sh)();
if ((res == null ? void 0 : res.status) === 0)
setData(__spreadValues({}, res.data));
});
const getOption = () => {
return {
title: {
text: ""
},
// tooltip: {
// trigger: 'axis'
// },
legend: {
left: "center",
data: ["\u67D0\u8F6F\u4EF6", "\u67D0\u4E3B\u98DF\u624B\u673A", "\u67D0\u6C34\u679C\u624B\u673A", "\u964D\u6C34\u91CF", "\u84B8\u53D1\u91CF"]
},
radar: [
{
indicator: [
{ text: "\u4EE3\u7801\u89C4\u8303\u6027", max: 100 },
{ text: "\u4EE3\u7801\u539F\u521B\u6027", max: 100 },
{ text: "\u7F16\u7A0B\u6295\u5165\u6027", max: 100 },
{ text: "\u4EE3\u7801\u6B63\u786E\u6027", max: 100 },
{ text: "\u4EE3\u7801\u590D\u6742\u5EA6", max: 100 }
],
radius: 100,
center: ["50%", "50%"]
}
],
series: [
{
type: "radar",
tooltip: {
trigger: "item"
},
areaStyle: {},
data: [
{
value: (data == null ? void 0 : data.presona) || [0, 0, 0, 0, 0],
name: ""
}
]
}
]
};
};
const getOption2 = () => {
let maskImage = new Image();
maskImage.src = _components_ImagesIcon__WEBPACK_IMPORTED_MODULE_7__/* .hbIcon */ .yt;
let option = {
backgroundColor: "#fff",
tooltip: {
pointFormat: "{series.name}</b>"
},
series: [
{
type: "wordCloud",
sizeRange: [10, 60],
rotationRange: [-90, 90],
rotationStep: 45,
gridSize: 1,
shape: "pentagon",
//circle pentagon
maskImage,
// 呈现形状图片, 可选
textStyle: {
normal: {
color: function() {
return "rgb(" + Math.round(Math.random() * 255) + ", " + Math.round(Math.random() * 255) + ", " + Math.round(Math.random() * 255) + ")";
}
}
},
// Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
// Default to be put in the center and has 75% x 80% size.
left: "center",
top: "top",
right: null,
bottom: null,
width: "100%",
height: "100%",
data: [
{
"name": "\u8BA1\u7B97\u673A",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(160,118,28)"
}
}
},
{
"name": "\u65B9\u6CD5",
"value": 8,
"textStyle": {
"normal": {
"color": "rgb(80,143,21)"
}
}
},
{
"name": "\u5730\u5740",
"value": 3,
"textStyle": {
"normal": {
"color": "rgb(106,82,55)"
}
}
},
{
"name": "\u6570\u636E\u7C7B\u578B",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(115,121,121)"
}
}
},
{
"name": "\u516B\u8FDB\u5236",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(84,30,3)"
}
}
},
{
"name": "\u6570\u636E\u7ED3\u6784",
"value": 5,
"textStyle": {
"normal": {
"color": "rgb(129,64,118)"
}
}
},
{
"name": "\u9009\u9879",
"value": 3,
"textStyle": {
"normal": {
"color": "rgb(36,92,160)"
}
}
},
{
"name": "\u5C5E\u6027",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(13,93,150)"
}
}
},
{
"name": "\u6570\u7EC4",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(46,10,135)"
}
}
},
{
"name": "\u6570\u636E\u9879",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(12,24,8)"
}
}
},
{
"name": "\u7CFB\u7EDF\u76EE\u5F55",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(61,111,36)"
}
}
},
{
"name": "\u4F18\u5316",
"value": 3,
"textStyle": {
"normal": {
"color": "rgb(62,160,85)"
}
}
},
{
"name": "\u6570\u636E",
"value": 14,
"textStyle": {
"normal": {
"color": "rgb(94,156,112)"
}
}
},
{
"name": "\u5E76\u884C\u5904\u7406",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(61,26,101)"
}
}
},
{
"name": "\u6307\u4EE4",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(50,39,125)"
}
}
},
{
"name": "\u53EF\u79FB\u690D\u6027",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(135,37,8)"
}
}
},
{
"name": "\u6807\u8BC6\u7B26",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(144,160,71)"
}
}
},
{
"name": "\u7C92\u5EA6",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(87,52,156)"
}
}
},
{
"name": "\u5206\u6790\u65B9\u6CD5",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(20,123,140)"
}
}
},
{
"name": "\u5F62\u5F0F",
"value": 4,
"textStyle": {
"normal": {
"color": "rgb(51,86,110)"
}
}
},
{
"name": "\u8F6C\u4E49\u5B57\u7B26",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(149,44,12)"
}
}
},
{
"name": "\u521D\u59CB\u72B6\u6001",
"value": 3,
"textStyle": {
"normal": {
"color": "rgb(82,52,155)"
}
}
},
{
"name": "\u6D88\u606F",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(3,37,36)"
}
}
},
{
"name": "\u6807\u8BC6",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(121,139,15)"
}
}
},
{
"name": "\u5173\u8054",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(26,76,30)"
}
}
},
{
"name": "\u6A21\u578B",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(45,10,115)"
}
}
},
{
"name": "\u5B57\u7B26\u4E32",
"value": 4,
"textStyle": {
"normal": {
"color": "rgb(42,8,156)"
}
}
},
{
"name": "\u7CFB\u7EDF",
"value": 8,
"textStyle": {
"normal": {
"color": "rgb(28,91,25)"
}
}
},
{
"name": "\u5BF9\u8C61",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(129,95,51)"
}
}
},
{
"name": "\u6743\u9650",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(82,10,10)"
}
}
},
{
"name": "\u5934\u6587\u4EF6",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(53,18,122)"
}
}
},
{
"name": "\u5E76\u884C\u8BA1\u7B97",
"value": 5,
"textStyle": {
"normal": {
"color": "rgb(12,45,141)"
}
}
},
{
"name": "\u56FE",
"value": 9,
"textStyle": {
"normal": {
"color": "rgb(23,78,59)"
}
}
},
{
"name": "\u5B57\u7B26",
"value": 5,
"textStyle": {
"normal": {
"color": "rgb(149,118,126)"
}
}
},
{
"name": "\u7B97\u6CD5",
"value": 4,
"textStyle": {
"normal": {
"color": "rgb(62,153,129)"
}
}
},
{
"name": "\u8282\u70B9",
"value": 3,
"textStyle": {
"normal": {
"color": "rgb(121,155,93)"
}
}
},
{
"name": "\u6982\u5FF5",
"value": 2,
"textStyle": {
"normal": {
"color": "rgb(30,64,37)"
}
}
},
{
"name": "\u5E76\u884C\u7B97\u6CD5",
"value": 3,
"textStyle": {
"normal": {
"color": "rgb(61,159,26)"
}
}
},
{
"name": "\u8F6F\u4EF6",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(0,101,7)"
}
}
},
{
"name": "\u7A0B\u5E8F\u8BBE\u8BA1",
"value": 3,
"textStyle": {
"normal": {
"color": "rgb(122,11,122)"
}
}
},
{
"name": "\u64CD\u4F5C\u7CFB\u7EDF",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(107,95,39)"
}
}
},
{
"name": "\u6761\u4EF6",
"value": 5,
"textStyle": {
"normal": {
"color": "rgb(49,19,92)"
}
}
},
{
"name": "\u6392\u5E8F",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(21,101,115)"
}
}
},
{
"name": "\u56FE\u5F62",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(143,18,87)"
}
}
},
{
"name": "\u8F93\u5165\u8F93\u51FA",
"value": 12,
"textStyle": {
"normal": {
"color": "rgb(77,160,157)"
}
}
},
{
"name": "\u5B9E\u4F8B",
"value": 1,
"textStyle": {
"normal": {
"color": "rgb(96,90,24)"
}
}
}
]
}
]
};
return option;
};
var option_183d8ca73c254f5997c014dc9a9247fb = {
"animation": true,
"animationThreshold": 2e3,
"animationDuration": 1e3,
"animationEasing": "cubicOut",
"animationDelay": 0,
"animationDurationUpdate": 300,
"animationEasingUpdate": "cubicOut",
"animationDelayUpdate": 0,
"color": [
"#c23531",
"#2f4554",
"#61a0a8",
"#d48265",
"#749f83",
"#ca8622",
"#bda29a",
"#6e7074",
"#546570",
"#c4ccd3",
"#f05b72",
"#ef5b9c",
"#f47920",
"#905a3d",
"#fab27b",
"#2a5caa",
"#444693",
"#726930",
"#b2d235",
"#6d8346",
"#ac6767",
"#1d953f",
"#6950a1",
"#918597"
],
"series": [
{
"type": "gauge",
"title": {
"show": true,
"position": "top",
"color": "#B0C4DE",
"margin": 8,
"fontSize": 25,
"fontFamily": "Microsoft YaHei"
},
"detail": {
"show": true,
"position": "top",
"margin": 8,
"fontSize": 40,
"formatter": "{value}"
},
"min": 0,
"max": 10,
"splitNumber": 10,
"radius": "80%",
"startAngle": 200,
"endAngle": -25,
"clockwise": true,
"data": [
{
"name": "\u7F16\u7A0B\u97E7\u6027",
"value": 6.32
}
],
"tooltip": {
"show": true,
"trigger": "item",
"triggerOn": "mousemove|click",
"axisPointer": {
"type": "line"
},
"showContent": true,
"alwaysShowContent": false,
"showDelay": 0,
"hideDelay": 100,
"textStyle": {
"fontSize": 14
},
"borderWidth": 0,
"padding": 5
},
"axisLine": {
"show": true,
"onZero": true,
"onZeroAxisIndex": 0,
"lineStyle": {
"show": true,
"width": 35,
"opacity": 1,
"curveness": 0,
"type": "solid",
"color": [
[
0.3,
"#fd666d"
],
[
0.7,
"#9370D8"
],
[
1,
"#67e0e3"
]
]
}
},
"pointer": {
"show": true,
"length": "80%",
"width": 10
},
"label": {
"show": true,
"position": "top",
"margin": 8,
"fontSize": 15
},
"rippleEffect": {
"show": true,
"brushType": "stroke",
"scale": 2.5,
"period": 4
}
}
],
"legend": [
{
"data": [
""
],
"selected": {
"": true
},
"show": true,
"padding": 5,
"itemGap": 10,
"itemWidth": 25,
"itemHeight": 14
}
],
"tooltip": {
"show": true,
"trigger": "item",
"triggerOn": "mousemove|click",
"axisPointer": {
"type": "line"
},
"showContent": true,
"alwaysShowContent": false,
"showDelay": 0,
"hideDelay": 100,
"textStyle": {
"fontSize": 14
},
"borderWidth": 0,
"padding": 5
},
"title": [
{
"padding": 5,
"itemGap": 10
}
]
};
var option_961ffe42aa3f4903aea7ea0ea157101a = {
"animation": true,
"animationThreshold": 2e3,
"animationDuration": 1e3,
"animationEasing": "cubicOut",
"animationDelay": 0,
"animationDurationUpdate": 300,
"animationEasingUpdate": "cubicOut",
"animationDelayUpdate": 0,
"color": [
"#c23531",
"#2f4554",
"#61a0a8",
"#d48265",
"#749f83",
"#ca8622",
"#bda29a",
"#6e7074",
"#546570",
"#c4ccd3",
"#f05b72",
"#ef5b9c",
"#f47920",
"#905a3d",
"#fab27b",
"#2a5caa",
"#444693",
"#726930",
"#b2d235",
"#6d8346",
"#ac6767",
"#1d953f",
"#6950a1",
"#918597"
],
"series": [
{
"type": "line",
"connectNulls": false,
"symbol": "emptyCircle",
"symbolSize": 10,
"showSymbol": true,
"smooth": false,
"clip": true,
"step": false,
"data": [
[
"0",
200
],
[
"1",
215
],
[
"2",
218
],
[
"3",
222
],
[
"4",
218
],
[
"5",
228
],
[
"6",
216
],
[
"7",
206
],
[
"8",
869
],
[
"9",
763
],
[
"10",
767
],
[
"11",
773
],
[
"12",
838
],
[
"13",
839
],
[
"14",
867
],
[
"15",
901
],
[
"16",
953
],
[
"17",
977
],
[
"18",
1e3
],
[
"19",
1039
],
[
"20",
1038
],
[
"21",
1099
],
[
"22",
1117
],
[
"23",
1173
],
[
"24",
1270
],
[
"25",
1323
],
[
"26",
1325
],
[
"27",
1331
],
[
"28",
1296
],
[
"29",
1302
],
[
"30",
1310
],
[
"31",
1312
],
[
"32",
1320
],
[
"33",
1323
],
[
"34",
1322
],
[
"35",
1331
],
[
"36",
1309
],
[
"37",
1336
],
[
"38",
1371
],
[
"39",
1363
],
[
"40",
1361
],
[
"41",
1368
],
[
"42",
1369
],
[
"43",
1409
],
[
"44",
1409
],
[
"45",
1412
],
[
"46",
1418
],
[
"47",
1419
],
[
"48",
1362
],
[
"49",
1388
],
[
"50",
2533
],
[
"51",
2662
],
[
"52",
2697
],
[
"53",
2779
],
[
"54",
2780
],
[
"55",
2851
],
[
"56",
2972
],
[
"57",
3195
],
[
"58",
3207
],
[
"59",
3010
],
[
"60",
3097
],
[
"61",
3180
],
[
"62",
3209
],
[
"63",
3244
],
[
"64",
3273
],
[
"65",
3446
],
[
"66",
3446
],
[
"67",
3443
],
[
"68",
3666
],
[
"69",
3688
],
[
"70",
3491
],
[
"71",
3490
],
[
"72",
3490
],
[
"73",
3586
],
[
"74",
3593
],
[
"75",
3614
],
[
"76",
4455
],
[
"77",
4447
],
[
"78",
4571
],
[
"79",
4590
],
[
"80",
4594
],
[
"81",
4592
],
[
"82",
4603
],
[
"83",
4709
],
[
"84",
4710
],
[
"85",
4716
],
[
"86",
4716
],
[
"87",
4716
],
[
"88",
4715
],
[
"89",
4716
],
[
"90",
4717
],
[
"91",
4716
],
[
"92",
5559
],
[
"93",
5559
],
[
"94",
4716
],
[
"95",
4716
],
[
"96",
4696
],
[
"97",
4741
],
[
"98",
4745
],
[
"99",
4768
],
[
"100",
4761
],
[
"101",
5559
],
[
"102",
5559
],
[
"103",
5587
],
[
"104",
5716
],
[
"105",
5717
],
[
"106",
5710
],
[
"107",
5681
],
[
"108",
5682
],
[
"109",
5715
],
[
"110",
5717
],
[
"111",
5683
],
[
"112",
5720
],
[
"113",
5822
],
[
"114",
4702
],
[
"115",
4754
],
[
"116",
4760
],
[
"117",
4780
],
[
"118",
4778
],
[
"119",
4833
],
[
"120",
4843
],
[
"121",
4845
],
[
"122",
4845
],
[
"123",
4795
],
[
"124",
4782
],
[
"125",
4778
],
[
"126",
4832
],
[
"127",
4782
],
[
"128",
4782
],
[
"129",
4788
],
[
"130",
4768
],
[
"131",
4871
],
[
"132",
4897
],
[
"133",
4945
],
[
"134",
5031
],
[
"135",
5035
],
[
"136",
5033
],
[
"137",
5072
],
[
"138",
5191
],
[
"139",
5195
],
[
"140",
5233
],
[
"141",
5270
],
[
"142",
5308
],
[
"143",
5366
],
[
"144",
5402
],
[
"145",
5398
],
[
"146",
5426
],
[
"147",
5447
],
[
"148",
5447
],
[
"149",
5449
],
[
"150",
5447
],
[
"151",
5506
],
[
"152",
5509
],
[
"153",
5509
],
[
"154",
5516
],
[
"155",
5523
],
[
"156",
5562
],
[
"157",
5601
],
[
"158",
5601
],
[
"159",
5606
],
[
"160",
5567
],
[
"161",
5528
],
[
"162",
5529
],
[
"163",
5571
],
[
"164",
5564
],
[
"165",
5566
],
[
"166",
5572
],
[
"167",
5550
],
[
"168",
5587
],
[
"169",
5525
],
[
"170",
5551
],
[
"171",
5565
],
[
"172",
5564
],
[
"173",
5578
],
[
"174",
5583
],
[
"175",
5608
],
[
"176",
5583
],
[
"177",
5583
],
[
"178",
5623
],
[
"179",
5583
],
[
"180",
5624
],
[
"181",
5583
],
[
"182",
5573
],
[
"183",
5563
],
[
"184",
5528
],
[
"185",
5532
],
[
"186",
5534
],
[
"187",
5534
],
[
"188",
5528
],
[
"189",
4782
],
[
"190",
4795
],
[
"191",
4460
],
[
"192",
4793
],
[
"193",
5524
],
[
"194",
5747
],
[
"195",
5759
],
[
"196",
5982
],
[
"197",
5994
],
[
"198",
5797
],
[
"199",
5861
],
[
"200",
5976
],
[
"201",
5978
],
[
"202",
5979
],
[
"203",
6022
],
[
"204",
6056
],
[
"205",
6391
],
[
"206",
6293
],
[
"207",
6349
],
[
"208",
6405
],
[
"209",
6496
],
[
"210",
6583
],
[
"211",
6592
],
[
"212",
6643
],
[
"213",
20236
],
[
"214",
37413
],
[
"215",
54590
],
[
"216",
54612
],
[
"217",
54639
],
[
"218",
54680
],
[
"219",
54714
],
[
"220",
54715
],
[
"221",
54716
],
[
"222",
54825
],
[
"223",
54641
],
[
"224",
54771
],
[
"225",
54770
],
[
"226",
59028
],
[
"227",
59001
],
[
"228",
59056
],
[
"229",
59057
],
[
"230",
59030
],
[
"231",
59027
],
[
"232",
63197
],
[
"233",
58899
],
[
"234",
58975
],
[
"235",
58979
],
[
"236",
58980
],
[
"237",
58976
],
[
"238",
58899
],
[
"239",
59051
],
[
"240",
59078
],
[
"241",
58897
],
[
"242",
59026
],
[
"243",
59121
],
[
"244",
59122
],
[
"245",
58895
],
[
"246",
58974
],
[
"247",
59003
],
[
"248",
59030
],
[
"249",
58893
],
[
"250",
58952
],
[
"251",
58979
],
[
"252",
58979
],
[
"253",
59096
],
[
"254",
59027
],
[
"255",
58976
],
[
"256",
58980
],
[
"257",
58893
],
[
"258",
58861
],
[
"259",
58881
],
[
"260",
58947
],
[
"261",
58905
],
[
"262",
59017
],
[
"263",
59027
],
[
"264",
59048
],
[
"265",
59094
],
[
"266",
59103
],
[
"267",
59456
],
[
"268",
59468
],
[
"269",
59271
],
[
"270",
59370
],
[
"271",
59443
],
[
"272",
59449
],
[
"273",
59525
],
[
"274",
59569
],
[
"275",
59623
],
[
"276",
59649
],
[
"277",
59827
],
[
"278",
59940
],
[
"279",
59942
],
[
"280",
59940
],
[
"281",
59941
],
[
"282",
59941
],
[
"283",
59996
],
[
"284",
60011
],
[
"285",
60005
],
[
"286",
60005
],
[
"287",
60036
],
[
"288",
60005
],
[
"289",
60029
],
[
"290",
60042
],
[
"291",
60071
],
[
"292",
60128
],
[
"293",
60163
],
[
"294",
60195
],
[
"295",
60298
],
[
"296",
60345
],
[
"297",
60465
],
[
"298",
60535
],
[
"299",
60625
],
[
"300",
60705
],
[
"301",
60767
],
[
"302",
60769
],
[
"303",
60807
],
[
"304",
60854
],
[
"305",
60845
],
[
"306",
60842
],
[
"307",
61080
],
[
"308",
61111
],
[
"309",
61111
],
[
"310",
61137
],
[
"311",
61141
],
[
"312",
61153
],
[
"313",
61164
],
[
"314",
61173
],
[
"315",
60902
],
[
"316",
60884
],
[
"317",
60884
],
[
"318",
60907
],
[
"319",
60962
],
[
"320",
60992
],
[
"321",
61096
],
[
"322",
61189
],
[
"323",
61257
],
[
"324",
61287
],
[
"325",
61320
],
[
"326",
61336
],
[
"327",
61320
],
[
"328",
61324
],
[
"329",
61322
],
[
"330",
61324
],
[
"331",
61324
],
[
"332",
61350
],
[
"333",
61342
],
[
"334",
61342
],
[
"335",
61412
],
[
"336",
61422
],
[
"337",
61506
],
[
"338",
61577
],
[
"339",
61640
],
[
"340",
61640
],
[
"341",
61705
],
[
"342",
61874
],
[
"343",
61872
]
],
"hoverAnimation": true,
"label": {
"show": false,
"position": "top",
"margin": 8
},
"lineStyle": {
"show": true,
"width": 1,
"opacity": 1,
"curveness": 0,
"type": "solid"
},
"areaStyle": {
"opacity": 0
},
"zlevel": 0,
"z": 0
}
],
"legend": [
{
"data": [
""
],
"selected": {
"": true
},
"show": true,
"padding": 5,
"itemGap": 10,
"itemWidth": 25,
"itemHeight": 14
}
],
"tooltip": {
"show": false,
"trigger": "item",
"triggerOn": "mousemove|click",
"axisPointer": {
"type": "line"
},
"showContent": true,
"alwaysShowContent": false,
"showDelay": 0,
"hideDelay": 100,
"textStyle": {
"fontSize": 14
},
"borderWidth": 0,
"padding": 5
},
"xAxis": [
{
"type": "category",
"name": "COMMIT\u6B21\u6570",
"show": true,
"scale": false,
"nameLocation": "center",
"nameGap": 30,
"nameTextStyle": {
"color": "#333",
"fontStyle": "normal"
},
"gridIndex": 0,
"axisLabel": {
"show": true,
"position": "top",
"color": "#333",
"margin": 8
},
"inverse": false,
"offset": 0,
"splitNumber": 5,
"minInterval": 0,
"splitLine": {
"show": false,
"lineStyle": {
"show": true,
"width": 1,
"opacity": 1,
"curveness": 0,
"type": "solid"
}
},
"data": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23",
"24",
"25",
"26",
"27",
"28",
"29",
"30",
"31",
"32",
"33",
"34",
"35",
"36",
"37",
"38",
"39",
"40",
"41",
"42",
"43",
"44",
"45",
"46",
"47",
"48",
"49",
"50",
"51",
"52",
"53",
"54",
"55",
"56",
"57",
"58",
"59",
"60",
"61",
"62",
"63",
"64",
"65",
"66",
"67",
"68",
"69",
"70",
"71",
"72",
"73",
"74",
"75",
"76",
"77",
"78",
"79",
"80",
"81",
"82",
"83",
"84",
"85",
"86",
"87",
"88",
"89",
"90",
"91",
"92",
"93",
"94",
"95",
"96",
"97",
"98",
"99",
"100",
"101",
"102",
"103",
"104",
"105",
"106",
"107",
"108",
"109",
"110",
"111",
"112",
"113",
"114",
"115",
"116",
"117",
"118",
"119",
"120",
"121",
"122",
"123",
"124",
"125",
"126",
"127",
"128",
"129",
"130",
"131",
"132",
"133",
"134",
"135",
"136",
"137",
"138",
"139",
"140",
"141",
"142",
"143",
"144",
"145",
"146",
"147",
"148",
"149",
"150",
"151",
"152",
"153",
"154",
"155",
"156",
"157",
"158",
"159",
"160",
"161",
"162",
"163",
"164",
"165",
"166",
"167",
"168",
"169",
"170",
"171",
"172",
"173",
"174",
"175",
"176",
"177",
"178",
"179",
"180",
"181",
"182",
"183",
"184",
"185",
"186",
"187",
"188",
"189",
"190",
"191",
"192",
"193",
"194",
"195",
"196",
"197",
"198",
"199",
"200",
"201",
"202",
"203",
"204",
"205",
"206",
"207",
"208",
"209",
"210",
"211",
"212",
"213",
"214",
"215",
"216",
"217",
"218",
"219",
"220",
"221",
"222",
"223",
"224",
"225",
"226",
"227",
"228",
"229",
"230",
"231",
"232",
"233",
"234",
"235",
"236",
"237",
"238",
"239",
"240",
"241",
"242",
"243",
"244",
"245",
"246",
"247",
"248",
"249",
"250",
"251",
"252",
"253",
"254",
"255",
"256",
"257",
"258",
"259",
"260",
"261",
"262",
"263",
"264",
"265",
"266",
"267",
"268",
"269",
"270",
"271",
"272",
"273",
"274",
"275",
"276",
"277",
"278",
"279",
"280",
"281",
"282",
"283",
"284",
"285",
"286",
"287",
"288",
"289",
"290",
"291",
"292",
"293",
"294",
"295",
"296",
"297",
"298",
"299",
"300",
"301",
"302",
"303",
"304",
"305",
"306",
"307",
"308",
"309",
"310",
"311",
"312",
"313",
"314",
"315",
"316",
"317",
"318",
"319",
"320",
"321",
"322",
"323",
"324",
"325",
"326",
"327",
"328",
"329",
"330",
"331",
"332",
"333",
"334",
"335",
"336",
"337",
"338",
"339",
"340",
"341",
"342",
"343"
]
}
],
"yAxis": [
{
"type": "value",
"name": "\u7F16\u7801\u5B57\u7B26\u6570",
"show": true,
"scale": false,
"nameLocation": "center",
"nameGap": 40,
"nameTextStyle": {
"color": "#333"
},
"gridIndex": 0,
"axisTick": {
"show": true,
"alignWithLabel": false,
"inside": false
},
"axisLabel": {
"show": true,
"position": "top",
"color": "#333",
"margin": 1
},
"inverse": false,
"offset": 0,
"splitNumber": 5,
"minInterval": 0,
"splitLine": {
"show": true,
"lineStyle": {
"show": true,
"width": 1,
"opacity": 1,
"curveness": 0,
"type": "solid"
}
}
}
],
"title": [
{
"padding": 5,
"itemGap": 10
}
]
};
return /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { className: "edu-container bg-white minH500", style: { width: "1200px", marginTop: "40px", marginBottom: "20px", padding: 40, paddingRight: 0 } }, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .Z, null, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z, { flex: "1" }, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { className: "tc font16 blod" }, "\u5B66\u4E60\u8005\u7F16\u7A0B\u80FD\u529B\u8BC4\u4F30"), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { className: "c-grey-666 mt10" }, "\u4ECE\u4E94\u4E2A\u7EF4\u5EA6\u523B\u753B\u4F60\u7684\u5F00\u53D1\u80FD\u529B\uFF1A\u4EE3\u7801\u89C4\u8303\u6027\u3001\u4EE3\u7801\u539F\u521B\u6027\u3001\u7F16\u7A0B\u6295\u5165\u6027\u3001\u4EE3\u7801\u6B63\u786E\u6027\u3001\u4EE3\u7801\u590D\u6742\u5EA6\uFF0C\u540C\u65F6\u53EF\u4EE5\u67E5\u770B\u793E\u533A\u5E73\u5747\u6570\u636E\u3002"), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { style: { marginTop: -20 } }, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(
echarts_for_react__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z,
{
option: getOption(),
style: { height: 370 },
opts: { renderer: "svg" }
}
)), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { style: { position: "relative", zIndex: 1 }, className: "tc font16 blod" }, "\u5B66\u4E60\u8005\u77E5\u8BC6\u6280\u80FD\u4E91\u56FE"), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { style: { marginTop: -30 } }, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(
echarts_for_react__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z,
{
option: getOption2(),
style: { height: 370 },
opts: { renderer: "svg" }
}
))), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z, { flex: "1px" }, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_10__/* ["default"] */ .Z, { style: { height: "100%", marginLeft: 30 }, type: "vertical" })), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z, { flex: "1" }, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { className: "tc font16 blod" }, "\u5B66\u4E60\u8005\u7F16\u7A0B\u5B66\u4E60\u6301\u7EED\u6027"), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { style: { marginLeft: 40 } }, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(
echarts_for_react__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z,
{
option: option_961ffe42aa3f4903aea7ea0ea157101a,
style: { height: 370, marginLeft: -30 }
}
)), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", { className: "tc font16 blod mt30" }, "\u5B66\u4E60\u8005\u7F16\u7A0B\u5B66\u4E60\u575A\u97E7\u5EA6"), /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement("div", null, /* @__PURE__ */ react__WEBPACK_IMPORTED_MODULE_0__.createElement(
echarts_for_react__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z,
{
option: option_183d8ca73c254f5997c014dc9a9247fb,
style: { height: 370 },
opts: { renderer: "svg" }
}
)))));
};
/* harmony default export */ __webpack_exports__["default"] = ((0,umi__WEBPACK_IMPORTED_MODULE_1__.connect)(
({
classroomList,
loading,
globalSetting,
user
}) => ({
classroomList,
globalSetting,
loading: loading.models.classroomList,
user
})
)(ClassroomListPage));
/***/ })
}]);