From f047cce4e349bbab7cdef4bfda4b9c4f071598b5 Mon Sep 17 00:00:00 2001 From: zhusiyu <410827992@qq.com> Date: Fri, 21 Oct 2022 14:05:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=90=E8=A1=8C=E6=95=B0=E6=8D=AE=E4=B8=AD?= =?UTF-8?q?=E5=BF=83=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../monitorCenter/schoolDaily/attendance.vue | 133 ++++- .../monitorCenter/schoolDaily/calendar.vue | 30 +- .../calendar/schoolCalendarFromNew.vue | 538 ++++++++++++++++++ .../calendar/weekCalendarFromNew.vue | 396 +++++++++++++ .../calendar_new/schoolCalendar.vue | 6 + .../monitorCenter/schoolDaily/interConfig.js | 15 + .../schoolDaily/schoolStyle/studentStyle.vue | 6 +- .../schoolDaily/schoolStyle/teacherInfo.vue | 86 +-- .../schoolDaily/schoolStyle/teacherStyle.vue | 111 +++- .../teacherStudents/studentInfo.vue | 214 ++++--- .../teacherStudents/teacherInfo.vue | 352 ++++++++++-- 11 files changed, 1662 insertions(+), 225 deletions(-) create mode 100644 src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar/schoolCalendarFromNew.vue create mode 100644 src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar/weekCalendarFromNew.vue create mode 100644 src/views/screenAdaptation/pages/monitorCenter/schoolDaily/interConfig.js diff --git a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/attendance.vue b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/attendance.vue index 591b60b..2a4da41 100644 --- a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/attendance.vue +++ b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/attendance.vue @@ -1,6 +1,9 @@ \ No newline at end of file diff --git a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar/weekCalendarFromNew.vue b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar/weekCalendarFromNew.vue new file mode 100644 index 0000000..083115a --- /dev/null +++ b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar/weekCalendarFromNew.vue @@ -0,0 +1,396 @@ + + + \ No newline at end of file diff --git a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar_new/schoolCalendar.vue b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar_new/schoolCalendar.vue index 5b32ac1..5080eff 100644 --- a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar_new/schoolCalendar.vue +++ b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/calendar_new/schoolCalendar.vue @@ -424,8 +424,14 @@ height: 20px; /deep/ .ant-select-selection { height: 20px !important; + background: rgba(0,0,0,0); + border: 1px solid $color-default-bright; .ant-select-selection__rendered { line-height: 20px; + color: $color-default-bright; + } + .ant-select-arrow{ + color: $color-default-bright; } } } diff --git a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/interConfig.js b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/interConfig.js new file mode 100644 index 0000000..068b388 --- /dev/null +++ b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/interConfig.js @@ -0,0 +1,15 @@ +const InterfaceConfig = { + "getNowTime": { + url: '/intellioa/common/getNowTime', + method: 'get', + isTestLogin: true + }, + //考勤统计 + "getDailySummaryForOrg": { + url: '/intellioa/attendance/attendanceReport/getDailySummaryForOrg', + method: 'get', + isTestLogin: true + }, + +}; +export default InterfaceConfig; \ No newline at end of file diff --git a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/studentStyle.vue b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/studentStyle.vue index 0efe86d..e49dad2 100644 --- a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/studentStyle.vue +++ b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/studentStyle.vue @@ -54,7 +54,7 @@ import StudentInfo from './studentInfo.vue'; import InterConfig from '../../../adminCenter/servicePlatform/interConfig'; import {swiper, swiperSlide} from 'vue-awesome-swiper' - import 'swiper/dist/css/swiper.css' + import 'swiper/css/swiper.css' export default{ data(){ return { @@ -106,7 +106,7 @@ } } let categoryObj = {}; - console.log("index:", index) + //console.log("index:", index) if (index > -1) { //存在 this.dataList[index]["list"].push(dataList[i]); @@ -125,7 +125,7 @@ this.dataList[i].list.push(...this.dataList[i].list); } } - console.log("this.dataList:", this.dataList); + //console.log("this.dataList:", this.dataList); } }) } diff --git a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/teacherInfo.vue b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/teacherInfo.vue index 45e71e5..c6a3f60 100644 --- a/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/teacherInfo.vue +++ b/src/views/screenAdaptation/pages/monitorCenter/schoolDaily/schoolStyle/teacherInfo.vue @@ -1,65 +1,73 @@