From 2aac1ba6449741aedbf97d75c340719a7b67d7db Mon Sep 17 00:00:00 2001 From: 无故事王国 <841720330@qq.com> Date: 星期四, 07 八月 2025 21:12:23 +0800 Subject: [PATCH] fix --- WanPai/Root/Other/View/StudentChooseView.swift | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/WanPai/Root/Other/View/StudentChooseView.swift b/WanPai/Root/Other/View/StudentChooseView.swift index 30d7110..7338d08 100644 --- a/WanPai/Root/Other/View/StudentChooseView.swift +++ b/WanPai/Root/Other/View/StudentChooseView.swift @@ -226,10 +226,10 @@ cell.cons_handleCenterY.constant = -7 if self.selectStudents.contains(where: {($0 as! CourseDetailStudentModel).id == item.id}){ cell.btn_handle.setImage(UIImage(named: "btn_choose_s"), for: .normal) - cell.view_container.borderColor = UIColor(hexStr: "#FD7902").withAlphaComponent(0.28) + cell.view_container.jq_borderColor = UIColor(hexStr: "#FD7902").withAlphaComponent(0.28) }else{ cell.btn_handle.setImage(nil, for: .normal) - cell.view_container.borderColor = UIColor(hexStr: "#ADADAD").withAlphaComponent(0.28) + cell.view_container.jq_borderColor = UIColor(hexStr: "#ADADAD").withAlphaComponent(0.28) } cell.studentModel = item return cell @@ -241,11 +241,11 @@ cell.activityDetailPartModel = item if self.selectStudents.contains(where: {($0 as! ActivityDetailPartModel).id == item.id}){ cell.img_radio.image = UIImage(named: "btn_choose_s") - cell.view_container.borderColor = UIColor(hexStr: "#FD7902").withAlphaComponent(0.28) + cell.view_container.jq_borderColor = UIColor(hexStr: "#FD7902").withAlphaComponent(0.28) cell.img_radio.isHidden = false }else{ cell.img_radio.image = UIImage(named: "") - cell.view_container.borderColor = UIColor(hexStr: "#ADADAD").withAlphaComponent(0.28) + cell.view_container.jq_borderColor = UIColor(hexStr: "#ADADAD").withAlphaComponent(0.28) cell.img_radio.isHidden = true } return cell -- Gitblit v1.7.1