From 76008bc03a45062660e6ce6fdd656fd8c63273e0 Mon Sep 17 00:00:00 2001 From: taoxu <2622874537@qq.com> Date: Thu, 7 Dec 2023 16:59:19 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/Mystudent/addstu.vue | 131 +++++++++++++++++-- pages/Mystudent/formstu.vue | 89 +++++++------ pages_teacher/teacher_class/class_detail.vue | 31 ++++- 3 files changed, 188 insertions(+), 63 deletions(-) diff --git a/pages/Mystudent/addstu.vue b/pages/Mystudent/addstu.vue index 215860d..89d0a64 100644 --- a/pages/Mystudent/addstu.vue +++ b/pages/Mystudent/addstu.vue @@ -1,27 +1,33 @@ @@ -41,10 +52,13 @@ data() { return { bgc: { - backgroundColor: "#transparent", + backgroundColor: "#F6F9FC", }, checkindex: 1, - stulist:[] + stulist:[], + searchKeyword:'', + orgstulist:[], + selectedIds: [], } }, onLoad(option) { @@ -53,14 +67,81 @@ this.getallstu() }, methods: { + addstu() { + let data = { + memberId: this.selectedIds[0], + // memberId: '1522', + roomId: this.classid + }; + + this.$u.post(`https://api.admin-v2.langsi.online/admin-api/classroom/members/add`, data).then(res => { + if (res.code === 0) { + this.$refs.uToast.show({ + title: '添加成功', + type: 'success', + position:'top' + }) + this.selectedIds=[] + this.fuwei() + }else{ + this.$refs.uToast.show({ + title: '添加失败', + type: 'error', + position:'top' + + }) + this.selectedIds=[] + this.fuwei() + } + }); + }, + toggleSelection(item) { + const selectedIndex = this.selectedIds.indexOf(item.id); + + if (selectedIndex === -1) { + // If not selected, add to the array and apply the 'act1' class + this.selectedIds.push(item.id); + item.isSelected = true; // Add a property to the item to track selection + } else { + // If already selected, remove from the array and remove the 'act1' class + this.selectedIds.splice(selectedIndex, 1); + item.isSelected = false; + } + console.log(this.selectedIds,'selectedIdsselectedIdsselectedIds'); + }, + search() { + // 根据关键字过滤 this.classlist + if (this.searchKeyword !== '') { + const filteredList = JSON.parse(JSON.stringify(this.orgstulist)).filter(item => { + // 匹配 nickName 或者 id + return item.nickName.includes(this.searchKeyword) || item.id.toString().includes(this.searchKeyword); + }); + // 更新 this.classlist 为过滤后的列表 + this.stulist = filteredList; + } else { + this.fuwei(); + } + }, + fuwei() { + + this.stulist = JSON.parse(JSON.stringify(this.orgstulist)); + }, + highlightSearch(name) { + // 使用正则表达式替换匹配到的 searchKeyword 为带有颜色的文字 + if (this.searchKeyword) { + const regex = new RegExp(this.searchKeyword, 'gi'); + return name.replace(regex, match => `${match}`); + } + return name; + }, getallstu(){ this.$u.get(`https://api.admin-v2.langsi.online/admin-api/v2/ybs-user/page`).then(res => { if (res.code == 0) { - this.stulist=res.data.list - // this.classlist = res.data.list - // this.isloding = false + this.stulist=res.data.list + this.orgstulist = JSON.parse(JSON.stringify(res.data.list)); + } }) @@ -203,5 +284,29 @@ border: 2rpx solid #2D7CE6; } } + .botbtn{ + padding: 32rpx 32rpx 0 32rpx; + margin-left: -32rpx; + position: fixed; + bottom: 0; + width: 750rpx; + height: 200rpx; + background: #FFFFFF; + box-shadow: 0rpx -10rpx 16rpx 0rpx rgba(202,202,202,0.25); + border-radius: 40rpx 40rpx 0rpx 0rpx; + .btn{ + display: flex; + align-items: center; + justify-content: center; + font-size: 28rpx; + font-family:'PingFang','PingFang'; + font-weight: 800; + color: #FFFFFF; + width: 686rpx; + height: 80rpx; + background: linear-gradient(180deg, #74AFFF 0%, #2D7CE6 100%); + border-radius: 104rpx 104rpx 104rpx 104rpx; + } + } } \ No newline at end of file diff --git a/pages/Mystudent/formstu.vue b/pages/Mystudent/formstu.vue index 8a385f5..e174b40 100644 --- a/pages/Mystudent/formstu.vue +++ b/pages/Mystudent/formstu.vue @@ -20,9 +20,11 @@ + v-model="searchKeyword" + placeholder="搜索相关内容..." + class="input" + placeholder-style="color:#C7CDD3" + @input="search()"> @@ -32,51 +34,17 @@ - + - + - - 李斯丹妮 + + - ID:3324 - - - - - - - 平均成绩/分 - - - 6 - - - - - 作业完成度 - - - 80% - - - - - - - - - - - - - 李斯丹妮 - - - ID:3324 + ID:{{item.memberInfo.id}} @@ -101,6 +69,7 @@ + - - + + 去安排 + + + + + + - 雅思1班 - - - - - - 雅思1班 - - - - - - 雅思1班 + {{item.name}} + + @@ -72,58 +46,33 @@ 学员安排 - + - - + - 添加 - + + - - - - - - - - LULY - - - - - - Bright - - - - - - Bright - + + + + 暂未安排哦! - - - - - - - LULY - - - - - - Bright - - - - - - Bright - + + 去安排 + + + + + + + {{item.name}} + + + + + + @@ -300,34 +249,96 @@ export default { data() { return { - // 表单双向数据绑定 - form: { - value: '', - times:'', - + bgc: { + backgroundColor: "#F6F9FC", }, // prick 时间选择框数据 params: { - year: true, - month: true, - day: true, - hour: false, - minute: false, - second: false - }, - show: false, + year: true, + month: true, + day: true, + hour: true, + minute: false, + second: false + }, + show: false, radio: '', switchVal: false, + classinfo:[], + stuinfo:[], + worktit:'', + times:'', + } }, + onLoad(option) { + uni.removeStorageSync('selectedClassInfo'); + uni.removeStorageSync('selectedStuInfo'); + // this.classinfo=JSON.parse(decodeURIComponent(option.classinfo)) + let classinofs=[ + { + name:'阅读5班', + avatar:'Excepteur', + id:15, + + } + ] + this.classinfo=classinofs + + }, + onShow() { + // Read selectedClassInfo data + const selectedClassInfo = uni.getStorageSync('selectedClassInfo'); + console.log(selectedClassInfo,'selectedClassInfoselectedClassInfo'); + if (selectedClassInfo && selectedClassInfo.length > 0) { + this.classinfo=selectedClassInfo + // Remove duplicates from this.classinfo + // this.classinfo = this.classinfo.filter(item => !selectedClassInfo.some(selectedItem => selectedItem.id === item.id)); + + // // Add non-duplicate items from selectedClassInfo to this.classinfo + // this.classinfo = this.classinfo.concat(selectedClassInfo); + + } + const selectedstuInfo = uni.getStorageSync('selectedStuInfo'); + + if (selectedstuInfo && selectedstuInfo.length > 0) { + this.stuinfo=selectedstuInfo + // Remove duplicates from this.classinfo + // this.stuinfo = this.stuinfo.filter(item => !selectedstuInfo.some(selectedItem => selectedItem.id === item.id)); + + // // Add non-duplicate items from selectedClassInfo to this.classinfo + // this.stuinfo = this.stuinfo.concat(selectedstuInfo); + + } + }, methods:{ + toaddstu(){ + uni.navigateTo({ + url: "/pages_teacher/pages_add/add_studentsforwork?stuinfo=" + encodeURIComponent(JSON.stringify(this.stuinfo)) + + }).then(res => { + + }).catch(err => { + + }); + }, + addclass(){ + uni.navigateTo({ + url: "/pages/Mystudent/addclassforwork?classinfo=" + encodeURIComponent(JSON.stringify(this.classinfo)) + }).then(res => { + + }).catch(err => { + + }); + }, + // 获取截止时间 printValue(e){ - this.form.times=`${e.year}-${e.month}-${e.day}` + this.times=`${e.year}-${e.month}-${e.day}` }, submit() { - } + } } } @@ -366,16 +377,61 @@ justify-content: space-between; align-items: center; margin-top: 46rpx; + .view_tb{ + display: flex; + padding-left: 24rpx; + // align-items: center; + // padding: 11rpx 24rpx 11rpx 24rpx; + width: 120rpx; + height: 52rpx; + background: #FFFFFF; + border-radius: 26rpx 26rpx 26rpx 26rpx; + + border: 2rpx solid #F1F1F1; + + color: #F18F21 ; + font-size: 30rpx; + } + } + .noting{ + display: flex; + flex-wrap: nowrap; + align-items: center; + justify-content: center; + margin-top: 16rpx; + width: 686rpx; + height: 124rpx; + background: #FFFFFF; + border-radius: 20rpx 20rpx 20rpx 20rpx; + image{ + width: 58.19rpx; + height: 60rpx; + } + .text1{ + margin-left: 12rpx; + font-size: 24rpx; + font-family: PingFang SC, PingFang SC; + font-weight: 500; + color: #627698; + } + .text2{ + margin-left: 12rpx; + font-size: 24rpx; + font-family: PingFang SC, PingFang SC; + font-weight: 500; + color: #2D7CE6; + border-bottom: 2px solid #2D7CE6; + } } - .class_bj { margin-top: 16rpx; } .class_images { display: flex; - justify-content: space-between; - margin-top: 20rpx; + flex-wrap: wrap; + // justify-content: space-between; + // margin-top: 20rpx; } .class_tp { @@ -389,8 +445,12 @@ color: #2E4975; margin: 20rpx 0; } - + .class_ys:nth-child(3n) { + margin-right: 0; + } .class_ys { + margin-top: 20rpx; + margin-right: 20rpx; width: 215rpx; height: 96rpx; display: flex; @@ -402,18 +462,23 @@ background: #FFFFFF; border-radius: 20rpx 20rpx 20rpx 20rpx; } + .class_wz { - font-size: 28rpx; - font-family: 'PingFang'; - font-weight: 500; - color: #072F5A; + width: 125rpx; + font-size: 28rpx; + font-family: 'PingFang'; + font-weight: 500; + color: #072F5A; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } .view_form{ padding: 0rpx 32rpx; background: #FFFFFF; margin-top: 16rpx; -border-radius: 20rpx 20rpx 20rpx 20rpx; + border-radius: 20rpx 20rpx 20rpx 20rpx; } .view_textrea{ height: 260rpx; @@ -432,10 +497,10 @@ border-radius: 20rpx 20rpx 20rpx 20rpx; color: #FFFFFF; } .view_footer{ - width: 100%; + width: 100%; padding: 0 16rpx; height: 144rpx; - border-radius: 40rpx 40rpx 0rpx 0rpx; + border-radius: 40rpx 40rpx 0rpx 0rpx; padding: 32rpx 0rpx; background-color: #fff; box-shadow: 0rpx -10rpx 16rpx 0rpx rgba(202,202,202,0.25); From 317c54a1cf4c48dc6f6cc8c46ad0cd2fd8eff1bb Mon Sep 17 00:00:00 2001 From: taoxu <2622874537@qq.com> Date: Thu, 7 Dec 2023 22:13:54 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/Mystudent/addclassforwork.vue | 12 +++++++++ pages/upload/upload.vue | 27 ++++++++++++++----- .../pages_add/add_studentsforwork.vue | 12 +++++++++ .../teacher_teachers/teacher_addOperation.vue | 16 +++++++++-- 4 files changed, 59 insertions(+), 8 deletions(-) diff --git a/pages/Mystudent/addclassforwork.vue b/pages/Mystudent/addclassforwork.vue index f277030..50e8a14 100644 --- a/pages/Mystudent/addclassforwork.vue +++ b/pages/Mystudent/addclassforwork.vue @@ -106,6 +106,12 @@ export default { const filteredList = JSON.parse(JSON.stringify(this.changeclasslist)).filter(item => item.name.includes(this.searchKeyword)); // 更新 this.classlist 为过滤后的列表 this.classlist = filteredList; + this.selectclass.forEach(selectedItem => { + const index = this.classlist.findIndex(item => item.id === selectedItem.id); + if (index !== -1) { + this.$set(this.classlist, index, { ...this.classlist[index], isSelected: true }); + } + }); }else{ this.fuwei() } @@ -122,6 +128,12 @@ export default { fuwei() { this.classlist = JSON.parse(JSON.stringify(this.changeclasslist)); + this.selectclass.forEach(selectedItem => { + const index = this.classlist.findIndex(item => item.id === selectedItem.id); + if (index !== -1) { + this.$set(this.classlist, index, { ...this.classlist[index], isSelected: true }); + } + }); }, getclassList() { this.$u.get("https://api.admin-v2.langsi.online/admin-api/classroom/page").then(res => { diff --git a/pages/upload/upload.vue b/pages/upload/upload.vue index 9a7caf4..040281b 100644 --- a/pages/upload/upload.vue +++ b/pages/upload/upload.vue @@ -57,12 +57,27 @@ }, // 获取上传七牛云token getQiniuToken() { - this.$u.get('https://v2.ielts.langsi.online/file/getToken').then(res => { - console.log(res.data); - this.token = res.data.token - }).catch(err => { - console.log(err) - }) + wx.request({ + url: 'https://v2.ielts.langsi.online/file/getToken', + method: 'get', // Adjust the request method as needed + // data: yourData, + header: { + 'Authorization': 'eyJhbGciOiJIUzUxMiJ9.eyJub3RfeWJzX3VzZXJfa2V5IjoiNWZiYzA4YmUtNDZlMi00NDUzLThmYjQtMjFlNzhjZDIxY2EyIn0.jw2fyMnlNEW-zx8cH6aPh_H-WqEAHDQdh4oCpYg3qBIJZEmw6L4oNWJPvKHM9edmRdLO0p2z7_vlCYoY00NqxA ' + }, + success: (res) => { + console.log(res); + this.token = res.data.data.token + }, + fail: (err) => { + console.log(err); + } + }); + // this.$u.get('https://v2.ielts.langsi.online/file/getToken').then(res => { + // console.log(res.data); + // this.token = res.data.token + // }).catch(err => { + // console.log(err) + // }) }, } diff --git a/pages_teacher/pages_add/add_studentsforwork.vue b/pages_teacher/pages_add/add_studentsforwork.vue index 59e3b63..6ced2bc 100644 --- a/pages_teacher/pages_add/add_studentsforwork.vue +++ b/pages_teacher/pages_add/add_studentsforwork.vue @@ -111,6 +111,12 @@ }); // 更新 this.classlist 为过滤后的列表 this.stulist = filteredList; + this.selectedIds.forEach(selectedItem => { + const index = this.stulist.findIndex(item => item.id === selectedItem.id); + if (index !== -1) { + this.$set(this.stulist, index, { ...this.stulist[index], isSelected: true }); + } + }); } else { this.fuwei(); } @@ -118,6 +124,12 @@ fuwei() { this.stulist = JSON.parse(JSON.stringify(this.orgstulist)); + this.selectedIds.forEach(selectedItem => { + const index = this.stulist.findIndex(item => item.id === selectedItem.id); + if (index !== -1) { + this.$set(this.stulist, index, { ...this.stulist[index], isSelected: true }); + } + }); }, highlightSearch(name) { // 使用正则表达式替换匹配到的 searchKeyword 为带有颜色的文字 diff --git a/pages_teacher/teacher_teachers/teacher_addOperation.vue b/pages_teacher/teacher_teachers/teacher_addOperation.vue index 0d42a84..69e9398 100644 --- a/pages_teacher/teacher_teachers/teacher_addOperation.vue +++ b/pages_teacher/teacher_teachers/teacher_addOperation.vue @@ -31,7 +31,10 @@ - + + + + @@ -62,7 +65,10 @@ - + + + + @@ -312,6 +318,12 @@ } }, methods:{ + delcls(id){ + this.classinfo = this.classinfo.filter(item => item.id !== id); + }, + delstu(id){ + this.stuinfo = this.stuinfo.filter(item => item.id !== id); + }, toaddstu(){ uni.navigateTo({ url: "/pages_teacher/pages_add/add_studentsforwork?stuinfo=" + encodeURIComponent(JSON.stringify(this.stuinfo)) From f805ef513e0dfa59d08f82924822f3ff2f084a2c Mon Sep 17 00:00:00 2001 From: taoxu <2622874537@qq.com> Date: Fri, 8 Dec 2023 22:57:06 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E6=B8=B2=E6=9F=93=20=E9=A1=B5=E9=9D=A2=20?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=84=E7=90=86=20=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E8=A7=A3=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/Mystudent/addclassforwork.vue | 2 +- .../pages_add/add_studentsforwork.vue | 3 +- .../teacher_teachers/components/compose.vue | 279 +-- .../teacher_teachers/teacher_addOperation.vue | 1089 ++++++----- .../teacher_teachers/teacher_writeadd.vue | 1595 +++++++++++------ 5 files changed, 1875 insertions(+), 1093 deletions(-) diff --git a/pages/Mystudent/addclassforwork.vue b/pages/Mystudent/addclassforwork.vue index 50e8a14..24c840f 100644 --- a/pages/Mystudent/addclassforwork.vue +++ b/pages/Mystudent/addclassforwork.vue @@ -5,7 +5,7 @@ :background="bgc" title-color='#2E4975' title-size='36' - height='36'> + height='36' :custom-back="addclassinfo"> diff --git a/pages_teacher/pages_add/add_studentsforwork.vue b/pages_teacher/pages_add/add_studentsforwork.vue index 6ced2bc..43e338f 100644 --- a/pages_teacher/pages_add/add_studentsforwork.vue +++ b/pages_teacher/pages_add/add_studentsforwork.vue @@ -1,7 +1,7 @@