index.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855
  1. <template>
  2. <div class="body1" v-loading="isLoading">
  3. <!-- 课程数据 -->
  4. <div class="left">
  5. <div class="top">
  6. <div class="titleBox" style="justify-content: space-between">
  7. <div class="title">基础概况</div>
  8. <el-select v-model="cType7" class="selectBox" style="width: 110px">
  9. <el-option label="全部课程" value="全部课程"></el-option>
  10. </el-select>
  11. </div>
  12. <div class="dataBox">
  13. <div class="info_box">
  14. <div class="info blueBG">
  15. <span>项目总数</span>
  16. <span>{{ allCourse }}</span>
  17. </div>
  18. <div class="info blueBG">
  19. <span>本月新增项目环比</span>
  20. <span v-if="loginCountMonthArray.length">{{
  21. loginCountMonthArray[loginCountMonthArray.length - 1].course -
  22. loginCountMonthArray[loginCountMonthArray.length - 2].course < 0 ? 0 : (
  23. (loginCountMonthArray[loginCountMonthArray.length - 1].course -
  24. loginCountMonthArray[loginCountMonthArray.length - 2].course) / (allCourse -
  25. loginCountMonthArray[loginCountMonthArray.length - 1].course)).toFixed(2) * 100 + "%" }}</span>
  26. <span v-else>0</span>
  27. </div>
  28. <div class="info blueBG">
  29. <span>模板项目总数</span>
  30. <span>{{ courseTemplate }}</span>
  31. </div>
  32. <div class="info blueBG">
  33. <span>本月新增项目总数</span>
  34. <span v-if="loginCountMonthArray.length">{{
  35. loginCountMonthArray[loginCountMonthArray.length - 1].course
  36. }}</span>
  37. <span v-else>0</span>
  38. </div>
  39. </div>
  40. <TeaFre style="height: calc(100% - 140px)" :monthArray="loginCountMonthArray"></TeaFre>
  41. </div>
  42. </div>
  43. <div class="bottom">
  44. <div class="titleBox">
  45. <div class="title" :class="{ isClick: skType == 0 }" @click="skType = 0"
  46. style="cursor: pointer; padding: 0 0 5px 0">
  47. 项目时长
  48. </div>
  49. <div class="title" :class="{ isClick: skType == 1 }" @click="skType = 1"
  50. style="cursor: pointer; padding: 0 0 5px 0">
  51. 作业数量
  52. </div>
  53. <!-- <el-select v-model="cType" class="selectBox" style="width: 110px">
  54. <el-option label="全部年级" value="全部年级"></el-option>
  55. <el-option label="一年级" value="一年级"></el-option>
  56. <el-option label="二年级" value="二年级"></el-option>
  57. <el-option label="三年级" value="三年级"></el-option>
  58. </el-select>
  59. <div class="timeDiv">
  60. <div @click="tType = 0" :class="{ isClick: tType == 0 }">周</div>
  61. <div @click="tType = 1" :class="{ isClick: tType == 1 }">月</div>
  62. <div @click="tType = 2" :class="{ isClick: tType == 2 }">学期</div>
  63. </div> -->
  64. </div>
  65. <div class="info_box" v-if="skType == 1">
  66. <div class="info blueBG" style="width: calc(100% / 3 - 10px)">
  67. <span>作业数量</span>
  68. <span>{{ worksCount }}</span>
  69. </div>
  70. <div class="info blueBG" style="width: calc(100% / 3 - 10px)">
  71. <span>项目开展总数</span>
  72. <span>{{ haveWorksCourse }}</span>
  73. </div>
  74. <div class="info blueBG" style="width: calc(100% / 3 - 10px)">
  75. <span>项目平均作业数量</span>
  76. <span>{{
  77. !worksCount ? 0 : (worksCount / haveWorksCourse).toFixed(0)
  78. }}</span>
  79. </div>
  80. </div>
  81. <div class="info_box" v-if="skType == 0">
  82. <div class="info blueBG" style="width: calc(100% / 3 - 10px)">
  83. <span>累计时长</span>
  84. <span>{{ 132 }}</span>
  85. </div>
  86. <div class="info blueBG" style="width: calc(100% / 3 - 10px)">
  87. <span>项目开展总数</span>
  88. <span>{{ haveWorksCourse }}</span>
  89. </div>
  90. <div class="info blueBG" style="width: calc(100% / 3 - 10px)">
  91. <span>项目平均时长</span>
  92. <span>{{ 18 }}</span>
  93. </div>
  94. </div>
  95. <div class="dataBox" style="height: calc(100% - 110px);">
  96. <ToolUse style="height: calc(100%)" v-if="skType == 1" :worksYearArray="worksYearArray"></ToolUse>
  97. <Bar style="height: calc(100%)" v-if="skType == 0"></Bar>
  98. <!-- <div class="otherCss">
  99. <div v-if="!oType">切换为柱状图</div>
  100. <div v-if="oType">切换为热力图</div>
  101. <div class="otherImg" @click="otherEchart">
  102. <img src="../../../../assets/icon/other.png" alt="" />
  103. </div>
  104. </div> -->
  105. </div>
  106. </div>
  107. </div>
  108. <div class="center">
  109. <div class="top">
  110. <div class="titleBox">
  111. <div class="title" :class="{ isClick: courseType == 0 }" @click="courseType = 0"
  112. style="cursor: pointer; padding: 0 0 5px 0">
  113. 项目分布
  114. </div>
  115. <div class="title" :class="{ isClick: courseType == 1 }" @click="courseType = 1"
  116. style="cursor: pointer; padding: 0 0 5px 0">
  117. 项目总数增幅
  118. </div>
  119. </div>
  120. <div class="dataBox">
  121. <CateRank v-if="courseType == 0" style="height: calc(100%)"></CateRank>
  122. <CourseNum v-if="courseType == 1" style="height: calc(100%)"></CourseNum>
  123. </div>
  124. </div>
  125. <div class="bottom">
  126. <div class="titleBox" style="justify-content: space-between">
  127. <div class="title">项目开展情况</div>
  128. <!-- <div v-if="!shType" style="
  129. display: flex;
  130. flex-direction: row;
  131. flex-wrap: nowrap;
  132. align-items: center;
  133. ">
  134. <el-select v-model="cType8" class="selectBox" style="width: 110px">
  135. <el-option label="全部年级" value="全部年级"></el-option>
  136. </el-select>
  137. <el-select v-model="cType9" class="selectBox" style="width: 110px">
  138. <el-option label="全部学科" value="全部学科"></el-option>
  139. </el-select>
  140. </div> -->
  141. <!-- <div v-if="shType" style="
  142. display: flex;
  143. flex-direction: row;
  144. flex-wrap: nowrap;
  145. align-items: center;
  146. ">
  147. <el-select v-model="cType1" class="selectBox" style="width: 110px">
  148. <el-option label="全部年级" value="全部年级"></el-option>
  149. </el-select>
  150. <el-select v-model="cType2" class="selectBox" style="width: 110px">
  151. <el-option label="全部学科" value="全部学科"></el-option>
  152. </el-select>
  153. <el-select v-model="cType3" class="selectBox" style="width: 110px">
  154. <el-option label="全部主题" value="全部主题"></el-option>
  155. </el-select>
  156. </div> -->
  157. </div>
  158. <div class="dataBox">
  159. <CourseTime v-if="!shType" style="height: calc(100% - 30px)"></CourseTime>
  160. <div class="info_box" v-if="shType">
  161. <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
  162. <span>项目实施总数</span>
  163. <span>{{ haveWorksCourse }}</span>
  164. </div>
  165. <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
  166. <span>平台实施项目占比</span>
  167. <span>{{ haveWorksCourse && allCourse ? (haveWorksCourse / allCourse * 100).toFixed(0) + '%' : 0 + '%' }}</span>
  168. </div>
  169. <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
  170. <span>项目平均任务数量</span>
  171. <span>{{ taskCount && allCourse ? (taskCount / allCourse).toFixed(0) : 0 }}</span>
  172. </div>
  173. <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
  174. <span>项目平均作业数量</span>
  175. <span>{{ worksCount && allCourse ? (worksCount / allCourse).toFixed(0) : 0 }}</span>
  176. </div>
  177. </div>
  178. <WorkNum v-if="shType" style="height: calc(100% - 105px)" :workNumList="workNumList"></WorkNum>
  179. <div class="otherCss">
  180. <div v-if="!shType">转换为散点图</div>
  181. <div v-if="shType">转换为堆积柱状图</div>
  182. <div class="otherImg" @click="shEchart">
  183. <img src="../../../../assets/icon/other.png" alt="" />
  184. </div>
  185. </div>
  186. </div>
  187. </div>
  188. </div>
  189. <div class="right">
  190. <div class="top" style="border-radius: 5px">
  191. <div class="titleBox" style="justify-content: space-between">
  192. <div style="
  193. display: flex;
  194. flex-direction: row;
  195. flex-wrap: nowrap;
  196. align-items: center;
  197. ">
  198. <div class="title" :class="{ isClick: toolType == 0 }" @click="toolType = 0"
  199. style="cursor: pointer; padding: 0 0 5px 0">
  200. 项目占比
  201. </div>
  202. <div class="title" :class="{ isClick: toolType == 1 }" @click="toolType = 1"
  203. style="cursor: pointer; padding: 0 0 5px 0">
  204. 工具使用
  205. </div>
  206. </div>
  207. <!-- <el-select v-model="cType4" class="selectBox" style="width: 110px" v-if="toolType == 0">
  208. <el-option label="按年级" value="按年级"></el-option>
  209. <el-option label="按学科" value="按学科"></el-option>
  210. <el-option label="按主题" value="按主题"></el-option>
  211. </el-select> -->
  212. <!-- <div v-if="toolType == 1" style="
  213. display: flex;
  214. flex-direction: row;
  215. flex-wrap: nowrap;
  216. align-items: center;
  217. ">
  218. <el-select v-model="cType5" class="selectBox" style="width: 110px">
  219. <el-option label="全部学科" value="全部学科"></el-option>
  220. <el-option label="语文" value="语文"></el-option>
  221. <el-option label="数学" value="数学"></el-option>
  222. </el-select>
  223. <el-select v-model="cType6" class="selectBox" style="width: 110px">
  224. <el-option label="全部年级" value="全部年级"></el-option>
  225. <el-option label="一年级" value="一年级"></el-option>
  226. <el-option label="二年级" value="二年级"></el-option>
  227. </el-select>
  228. </div> -->
  229. </div>
  230. <div class="dataBox">
  231. <CourseAna style="height: calc(100% - 40px)" v-if="toolType == 0"></CourseAna>
  232. <ToolChart style="height: calc(100% - 40px)" v-if="toolType == 1" :toolArray="toolList"></ToolChart>
  233. </div>
  234. </div>
  235. <div class="bottom">
  236. <div class="titleBox">
  237. <div class="title">项目学科分布</div>
  238. </div>
  239. <div class="dataBox">
  240. <subjuect style="height: calc(100% - 30px)" v-if="!xtType"></subjuect>
  241. <WorkTime style="height: calc(100% - 30px)" v-if="xtType" :personArray="personList"></WorkTime>
  242. <div class="otherCss">
  243. <div v-if="!xtType">转换为人员协同</div>
  244. <div v-if="xtType">转换为学科协同</div>
  245. <div class="otherImg" @click="xtEchart">
  246. <img src="../../../../assets/icon/other.png" alt="" />
  247. </div>
  248. </div>
  249. </div>
  250. </div>
  251. </div>
  252. </div>
  253. </template>
  254. <script>
  255. import TeaFre from "./chartList/teaFre.vue";
  256. import ToolUse from "./chartList/toolUse.vue";
  257. import CateRank from "./chartList/cateRank.vue";
  258. import WorkNum from "./chartList/workNum.vue";
  259. import CourseTime from "./chartList/courseTime.vue";
  260. import CourseAna from "./chartList/courseAna.vue";
  261. import WorkTime from "./chartList/workTime.vue";
  262. import Bar from "./chartList/bar.vue";
  263. import CourseNum from "./chartList/courseNum.vue";
  264. import ToolChart from "./chartList/toolChart.vue";
  265. import subjuect from "./chartList/subjuect.vue";
  266. export default {
  267. components: {
  268. TeaFre,
  269. ToolUse,
  270. CateRank,
  271. WorkNum,
  272. CourseTime,
  273. CourseAna,
  274. WorkTime,
  275. Bar,
  276. CourseNum,
  277. ToolChart,
  278. subjuect
  279. },
  280. props: {
  281. oid: {
  282. type: String,
  283. },
  284. org: {
  285. type: String,
  286. },
  287. },
  288. data() {
  289. return {
  290. isLoading: false,
  291. cType: "全部年级",
  292. cType1: "全部年级",
  293. cType2: "全部学科",
  294. cType3: "全部主题",
  295. cType4: "按年级",
  296. cType5: "全部学科",
  297. cType6: "全部年级",
  298. cType7: "全部课程",
  299. cType8: "全部年级",
  300. cType9: "全部学科",
  301. toolType: 0,
  302. tType: 0,
  303. skType: 0,
  304. courseType: 0,
  305. sType: 0,
  306. oType: false,
  307. shType: false,
  308. xtType: false,
  309. allCourse: 0,
  310. courseTemplate: 0,
  311. loginCountMonthArray: [],
  312. haveWorksCourse: 0,
  313. worksCount: 0,
  314. workNumList: [],
  315. taskCount: 0,
  316. toolList: [],
  317. personList: [],
  318. };
  319. },
  320. mounted() {
  321. this.getData();
  322. },
  323. methods: {
  324. otherEchart() {
  325. this.oType = !this.oType;
  326. },
  327. shEchart() {
  328. this.shType = !this.shType;
  329. },
  330. xtEchart() {
  331. this.xtType = !this.xtType;
  332. },
  333. format(percentage) {
  334. return percentage + '%';
  335. },
  336. getData() {
  337. this.isLoading = true;
  338. let params = [
  339. {
  340. oid: this.oid,
  341. org: this.org,
  342. },
  343. ];
  344. this.ajax
  345. .post(this.$store.state.api + "selectDataBoardStudentCourseNew", params)
  346. .then((res) => {
  347. this.isLoading = false;
  348. let _grade = res.data[0]; //赛道
  349. let _subject = res.data[1]; //主题
  350. this.allCourse = res.data[2][0].count; //课程总数
  351. let _timeCourse = res.data[3]; //查询半年内全部课程
  352. this.courseTemplate = res.data[4][0].count; //查询模板课程总数
  353. //将数据根据time里面的月份分成多个数组
  354. let loginCountMonthArray = [];
  355. const date = new Date();
  356. var Month = date.getMonth() + 1;
  357. var Year = date.getFullYear();
  358. for (var i = Month; i > Month - 6; i--) {
  359. if (i <= 0) {
  360. loginCountMonthArray.push({
  361. Year: Year - 1,
  362. Month: 12 + i,
  363. course: 0,
  364. });
  365. } else {
  366. loginCountMonthArray.push({
  367. Month: i,
  368. Year: Year,
  369. course: 0,
  370. });
  371. }
  372. }
  373. loginCountMonthArray = loginCountMonthArray.reverse();
  374. for (var i = 0; i < _timeCourse.length; i++) {
  375. let _date = new Date(_timeCourse[i].time);
  376. var _month = _date.getMonth() + 1;
  377. var _year = _date.getFullYear();
  378. for (var j = 0; j < loginCountMonthArray.length; j++) {
  379. if (
  380. _month == loginCountMonthArray[j].Month &&
  381. _year == loginCountMonthArray[j].Year
  382. ) {
  383. loginCountMonthArray[j].course++;
  384. break;
  385. }
  386. }
  387. }
  388. this.loginCountMonthArray = loginCountMonthArray;
  389. this.haveWorksCourse = res.data[5][0].count; //项目开展总数
  390. this.worksCount = res.data[6][0].count; //作业数量
  391. let worksArray = res.data[7];//一年内提交的作业
  392. let worksYearArray = []
  393. for (var i = Month; i > Month - 12; i--) {
  394. if (i <= 0) {
  395. worksYearArray.push({
  396. Year: Year - 1,
  397. Month: 12 + i,
  398. mon: 0,
  399. tue: 0,
  400. wed: 0,
  401. thur: 0,
  402. fri: 0,
  403. sat: 0,
  404. sun: 0,
  405. })
  406. } else {
  407. worksYearArray.push({
  408. Month: i,
  409. Year: Year,
  410. mon: 0,
  411. tue: 0,
  412. wed: 0,
  413. thur: 0,
  414. fri: 0,
  415. sat: 0,
  416. sun: 0,
  417. })
  418. }
  419. }
  420. worksYearArray = worksYearArray.reverse()
  421. for (var i = 0; i < worksArray.length; i++) {
  422. let _date = new Date(worksArray[i].create_at)
  423. var _month = _date.getMonth() + 1
  424. var _year = _date.getFullYear()
  425. var _day = _date.getDay()
  426. let dayArray = ['sun', 'mon', 'tue', 'wed', 'thur', 'fri', 'sat']
  427. for (var j = 0; j < worksYearArray.length; j++) {
  428. if (_month == worksYearArray[j].Month && _year == worksYearArray[j].Year) {
  429. worksYearArray[j][dayArray[_day]]++
  430. break;
  431. }
  432. }
  433. }
  434. console.log(worksYearArray);
  435. this.worksYearArray = worksYearArray
  436. let _workCourse = res.data[8]; //带作业的课程
  437. let _taskCount = 0 //任务数量
  438. var toolAllArray = [
  439. { name: "电子白板", value: 0 },
  440. { name: "思维导图", value: 0 },
  441. { name: "表格", value: 0 },
  442. { name: "文档", value: 0 },
  443. { name: "资源库", value: 0 },
  444. { name: "拍照", value: 0 },
  445. { name: "投票", value: 0 },
  446. { name: "CocoPi", value: 0 },
  447. { name: "其他", value: 0 },
  448. ];
  449. var twoPerson = 0,threePerson = 0,fivePerson = 0,sevenPerson = 0;
  450. let personList = []
  451. var wList = [];
  452. for (var i = 0; i < _workCourse.length; i++) {
  453. if (!wList[_workCourse[i].courseId]) {
  454. wList[_workCourse[i].courseId] = {
  455. cid: _workCourse[i].courseId,
  456. title: _workCourse[i].title,
  457. task: 0,
  458. work: 0,
  459. };
  460. let chapters = JSON.parse(_workCourse[i].chapters);
  461. for (var j = 0; j < chapters.length; j++) {
  462. if (wList[_workCourse[i].courseId].task == 0) {
  463. wList[_workCourse[i].courseId].task =
  464. chapters[j].chapterInfo[0].taskJson.length;
  465. } else {
  466. wList[_workCourse[i].courseId].task +=
  467. chapters[j].chapterInfo[0].taskJson.length;
  468. }
  469. _taskCount += chapters[j].chapterInfo[0].taskJson.length;
  470. let _taskJson = chapters[j].chapterInfo[0].taskJson
  471. for (
  472. var k = 0;
  473. k < _taskJson.length;
  474. k++
  475. ) {
  476. for (
  477. var q = 0;
  478. q <
  479. _taskJson[k].toolArray.length;
  480. q++
  481. ) {
  482. if(_taskJson[k].toolArray[q].tool == 1){
  483. toolAllArray[0].value++;
  484. }else if(_taskJson[k].toolArray[q].tool == 3){
  485. toolAllArray[1].value++;
  486. }else if(_taskJson[k].toolArray[q].tool == 48){
  487. toolAllArray[2].value++;
  488. }else if(_taskJson[k].toolArray[q].tool == 52){
  489. toolAllArray[3].value++;
  490. }else if(_taskJson[k].toolArray[q].tool == 51){
  491. toolAllArray[4].value++;
  492. }else if(_taskJson[k].toolArray[q].tool == 54){
  493. toolAllArray[5].value++;
  494. }else if(_taskJson[k].toolArray[q].tool == 56){
  495. toolAllArray[6].value++;
  496. }else if(_taskJson[k].toolArray[q].tool == 57){
  497. toolAllArray[7].value++;
  498. }else{
  499. toolAllArray[8].value++;
  500. }
  501. }
  502. }
  503. }
  504. if(_workCourse[i].course_teacher){
  505. if(_workCourse[i].course_teacher.split(',').length <= 2){
  506. twoPerson++
  507. }else if(4 >= _workCourse[i].course_teacher.split(',').length && _workCourse[i].course_teacher.split(',').length > 2){
  508. threePerson++;
  509. }else if(6 >= _workCourse[i].course_teacher.split(',').length && _workCourse[i].course_teacher.split(',').length > 4){
  510. fivePerson++;
  511. }else if(_workCourse[i].course_teacher.split(',').length >= 7){
  512. sevenPerson++;
  513. }
  514. }
  515. }
  516. }
  517. for (var i = 0; i < _workCourse.length; i++) {
  518. let a = Object.keys(wList);
  519. for (var j = 0; j < Object.keys(wList).length; j++) {
  520. if (_workCourse[i].courseId == wList[a[j]].cid && _workCourse[i].id) {
  521. wList[a[j]].work++;
  522. }
  523. }
  524. }
  525. var workNumList = Object.values(wList).map((item) => [
  526. item.task,
  527. item.work,
  528. item.title,
  529. item.cid,
  530. ]);
  531. this.workNumList = workNumList;
  532. this.taskCount = _taskCount
  533. this.toolList = toolAllArray;
  534. personList.push({ name:"2人以下",value: twoPerson },{ name:"3-4人",value: threePerson },{ name:"5-6人",value: fivePerson },{ name:"7人以上",value: sevenPerson });
  535. this.personList = personList;
  536. this.$forceUpdate();
  537. })
  538. .catch((err) => {
  539. this.isLoading = false;
  540. console.error(err);
  541. });
  542. },
  543. },
  544. };
  545. </script>
  546. <style scoped>
  547. .body1 {
  548. width: 100%;
  549. height: 100%;
  550. display: flex;
  551. padding: 20px;
  552. box-sizing: border-box;
  553. overflow: hidden;
  554. }
  555. .left {
  556. width: calc(100% / 4 * 1);
  557. height: 100%;
  558. }
  559. .left>.top {
  560. width: 100%;
  561. height: calc(100% / 2 - 10px);
  562. background: #fff;
  563. border-radius: 5px;
  564. margin: 0 0 20px 0;
  565. }
  566. .left>.bottom {
  567. width: 100%;
  568. height: calc(100% / 2 - 10px);
  569. background: #fff;
  570. border-radius: 5px;
  571. }
  572. .center {
  573. width: calc(100% / 4 * 2 - 40px);
  574. height: 100%;
  575. margin: 0 20px;
  576. }
  577. .center>.top {
  578. width: 100%;
  579. height: calc(100% / 5 * 3 - 10px);
  580. background: #fff;
  581. border-radius: 5px;
  582. margin: 0 0 20px 0;
  583. }
  584. .center>.bottom {
  585. width: 100%;
  586. height: calc(100% / 5 * 2 - 10px);
  587. background: #fff;
  588. border-radius: 5px;
  589. }
  590. .right {
  591. width: calc(100% / 4 * 1);
  592. height: 100%;
  593. }
  594. .right>.top {
  595. width: 100%;
  596. height: calc(100% / 2 - 10px);
  597. background: #fff;
  598. border-radius: 16px;
  599. margin: 0 0 20px 0;
  600. }
  601. .right>.bottom {
  602. width: 100%;
  603. height: calc(100% / 2 - 10px);
  604. background: #fff;
  605. border-radius: 5px;
  606. }
  607. .titleBox {
  608. height: 40px;
  609. display: flex;
  610. align-items: center;
  611. padding: 0 15px;
  612. box-sizing: border-box;
  613. width: 100%;
  614. }
  615. .dataBox {
  616. height: calc(100% - 40px);
  617. width: 100%;
  618. }
  619. .middleBox {
  620. display: flex;
  621. flex-direction: row;
  622. flex-wrap: nowrap;
  623. align-items: flex-start;
  624. }
  625. .title {
  626. color: #060e17;
  627. margin-right: 10px;
  628. }
  629. .teaMiddle {
  630. width: calc(100% / 2 - 10px);
  631. height: 60px;
  632. border-radius: 8px;
  633. /* border: 1px solid #e0eafb; */
  634. display: flex;
  635. flex-direction: column;
  636. align-items: flex-start;
  637. justify-content: center;
  638. padding: 0 10px;
  639. margin: 0 10px;
  640. }
  641. .teaMiddle {
  642. width: calc(100% / 3 - 10px);
  643. }
  644. .cNum {
  645. background: linear-gradient(180deg,
  646. rgb(125, 227, 174, 0.2) 0%,
  647. rgb(23, 196, 105, 0.3) 100%) !important;
  648. }
  649. .tNum {
  650. background: linear-gradient(180deg,
  651. rgb(174, 204, 254, 0.2) 0%,
  652. rgb(54, 129, 252, 0.3) 100%) !important;
  653. }
  654. .tSum {
  655. background: linear-gradient(180deg,
  656. rgb(125, 227, 174, 0.2) 0%,
  657. rgb(23, 196, 105, 0.3) 100%) !important;
  658. }
  659. .teaLeft>div:first-child,
  660. .teaMiddle>div:first-child {
  661. font-size: 12px;
  662. font-weight: 400;
  663. color: #565e6a;
  664. }
  665. .teaLeft>div:last-child,
  666. .teaMiddle>div:last-child {
  667. font-size: 22px;
  668. font-weight: bold;
  669. color: #060e17;
  670. }
  671. .halfBox {
  672. width: 50%;
  673. height: 100%;
  674. }
  675. .selectBox {
  676. width: 80px;
  677. margin-left: 10px;
  678. }
  679. .selectBox>>>.el-input__inner {
  680. height: 30px;
  681. line-height: 30px;
  682. }
  683. .selectBox>>>.el-input__icon {
  684. line-height: 30px;
  685. }
  686. .timeDiv {
  687. display: flex;
  688. flex-direction: row;
  689. flex-wrap: nowrap;
  690. align-items: center;
  691. margin: 0 0 0 15px;
  692. }
  693. .timeDiv>div {
  694. margin-right: 10px;
  695. cursor: pointer;
  696. }
  697. .isClick {
  698. color: #1684fc;
  699. border-bottom: 2px solid #1684fc;
  700. box-sizing: border-box;
  701. }
  702. .otherCss {
  703. display: flex;
  704. flex-direction: row;
  705. flex-wrap: nowrap;
  706. align-items: center;
  707. justify-content: flex-end;
  708. }
  709. .otherImg {
  710. width: 20px;
  711. height: 20px;
  712. margin: 0 10px;
  713. cursor: pointer;
  714. }
  715. .otherImg>img {
  716. width: 100%;
  717. height: 100%;
  718. }
  719. .allBox {
  720. width: 100%;
  721. height: 100%;
  722. display: flex;
  723. flex-direction: row;
  724. flex-wrap: nowrap;
  725. align-items: center;
  726. }
  727. .allBox_left {
  728. width: 30%;
  729. height: 100%;
  730. }
  731. .allBox_right {
  732. display: flex;
  733. flex-wrap: wrap;
  734. height: 100%;
  735. width: 70%;
  736. margin: 0 auto;
  737. overflow: hidden;
  738. justify-content: space-between;
  739. }
  740. .depth {
  741. width: calc(100% / 4 - 10px);
  742. display: flex;
  743. flex-direction: column;
  744. align-items: center;
  745. justify-content: center;
  746. }
  747. .depth>span:nth-child(1) {
  748. font-size: 14px;
  749. font-weight: 700;
  750. margin: 0 0 10px;
  751. }
  752. .depth>div:nth-child(1) {}
  753. .info_box {
  754. display: flex;
  755. flex-wrap: wrap;
  756. align-items: center;
  757. justify-content: space-between;
  758. width: 90%;
  759. margin: 0 auto;
  760. }
  761. .info_box>.info2,
  762. .info_box>.info3,
  763. .info_box>.info {
  764. width: calc(50% - 10px);
  765. display: flex;
  766. flex-direction: row;
  767. flex-wrap: nowrap;
  768. height: 60px;
  769. justify-content: space-between;
  770. align-items: center;
  771. padding: 0 10px;
  772. box-sizing: border-box;
  773. margin-bottom: 10px;
  774. border-radius: 5px;
  775. }
  776. .info_box>.info2 {
  777. width: calc(100% / 4 - 10px);
  778. /* align-items: flex-end; */
  779. }
  780. .info_box>.info3 {
  781. width: 100%;
  782. margin-bottom: 5px;
  783. }
  784. .info_box>.info2>span:nth-child(1),
  785. .info_box>.info3>span:nth-child(1),
  786. .info_box>.info>span:nth-child(1) {
  787. font-size: 14px;
  788. /* margin: 0 0 0 20px; */
  789. color: #565e6a;
  790. width: 60px;
  791. white-space: pre-wrap;
  792. word-break: break-all;
  793. }
  794. .info_box>.info2>span:nth-child(2),
  795. .info_box>.info3>span:nth-child(2),
  796. .info_box>.info>span:nth-child(2) {
  797. font-size: 24px;
  798. /* font-weight: 700; */
  799. }
  800. .blueBG {
  801. background: rgb(243, 248, 253);
  802. border: 2px solid rgb(234, 246, 255);
  803. }
  804. </style>