style: adjust order source cell spacing

This commit is contained in:
2026-07-07 16:26:34 +08:00
parent 97060c2a32
commit f1937e23d4
2 changed files with 6 additions and 2 deletions

View File

@ -77,7 +77,9 @@ final class OrderSourceLeadCell: UITableViewCell {
cardView.addSubview(actionButton) cardView.addSubview(actionButton)
cardView.snp.makeConstraints { make in cardView.snp.makeConstraints { make in
make.edges.equalToSuperview().inset(UIEdgeInsets(top: 0, left: 0, bottom: 12, right: 0)) make.edges.equalToSuperview().inset(
UIEdgeInsets(top: 0, left: AppSpacing.md, bottom: 12, right: AppSpacing.md)
)
} }
tagLabel.snp.makeConstraints { make in tagLabel.snp.makeConstraints { make in
make.leading.top.equalToSuperview().inset(12) make.leading.top.equalToSuperview().inset(12)

View File

@ -66,7 +66,9 @@ final class OrderSourcePersonCell: UITableViewCell {
cardView.addSubview(chevronView) cardView.addSubview(chevronView)
cardView.snp.makeConstraints { make in cardView.snp.makeConstraints { make in
make.edges.equalToSuperview().inset(UIEdgeInsets(top: 0, left: 0, bottom: 10, right: 0)) make.edges.equalToSuperview().inset(
UIEdgeInsets(top: 0, left: AppSpacing.md, bottom: 10, right: AppSpacing.md)
)
} }
nameLabel.snp.makeConstraints { make in nameLabel.snp.makeConstraints { make in
make.leading.top.equalToSuperview().inset(14) make.leading.top.equalToSuperview().inset(14)