Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
galaxy-iOS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile-group
galaxy-iOS
Commits
10cbac0d
Commit
10cbac0d
authored
Nov 15, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 学历
parent
4d99b056
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
YHEducationCertificateConfirmCell.swift
...ation(学历专业资格填写)/V/YHEducationCertificateConfirmCell.swift
+18
-2
YHEducationMarkView.swift
...ation&Qualification(学历专业资格填写)/V/YHEducationMarkView.swift
+6
-0
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/ServiceProcess(我的信息流程)/Education&Qualification(学历专业资格填写)/V/YHEducationCertificateConfirmCell.swift
View file @
10cbac0d
...
...
@@ -227,9 +227,25 @@ class YHEducationCertificateConfirmCell: UITableViewCell {
make
.
bottom
.
equalTo
(
-
16
)
}
for
tips
in
tipsArr
{
var
lastTipsView
:
YHEducationMarkView
?
=
nil
for
(
index
,
tips
)
in
tipsArr
.
enumerated
()
{
let
tipsView
=
YHEducationMarkView
(
frame
:
.
zero
)
tipsView
.
title
=
tips
markContentView
.
addSubview
(
tipsView
)
tipsView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalTo
(
16
)
make
.
right
.
equalTo
(
-
16
)
if
let
lastTipsView
=
lastTipsView
{
make
.
top
.
equalTo
(
lastTipsView
.
snp
.
bottom
)
.
offset
(
12
)
}
else
{
make
.
top
.
equalTo
(
16
)
}
if
index
==
tipsArr
.
count
-
1
{
make
.
bottom
.
equalTo
(
-
16
)
}
}
lastTipsView
=
tipsView
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/ServiceProcess(我的信息流程)/Education&Qualification(学历专业资格填写)/V/YHEducationMarkView.swift
View file @
10cbac0d
...
...
@@ -9,6 +9,12 @@
import
UIKit
class
YHEducationMarkView
:
UIView
{
var
title
:
String
=
""
{
didSet
{
titleLabel
.
text
=
title
}
}
var
dotView
:
UIView
=
{
let
view
=
UIView
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment