Commit 8a6ad1ea authored by Steven杜宇's avatar Steven杜宇

// 预约

parent e48940a5
......@@ -107,6 +107,15 @@ class YHResignScheduleMultipleInfoCell: UITableViewCell {
func updateModel(_ model: YHResignAppointGroup) {
var lineMargin = 0.0
if model.batchIndex > 1 {
lineMargin = 18.0
}
lineView.snp.updateConstraints { make in
make.left.equalToSuperview().offset(lineMargin)
make.right.equalToSuperview().offset(-lineMargin)
}
titleLabel.text = "第\(String.convertNumberToChineseText(model.batchIndex))批"
var names = "申请人:"
for (index, user) in model.user_list.enumerated() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment