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
dfffa92a
Commit
dfffa92a
authored
Feb 23, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 学历
parent
9c44f9d4
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
14 deletions
+18
-14
YHQualificationDetailVC.swift
...n&Qualification(学历专业资格填写)/C/YHQualificationDetailVC.swift
+1
-4
YHFormItemDegreeInfoCell.swift
...程)/FamilyMember(家庭成员信息表)/V/YHFormItemDegreeInfoCell.swift
+2
-2
YHFormItemDoubleChoiceCell.swift
.../FamilyMember(家庭成员信息表)/V/YHFormItemDoubleChoiceCell.swift
+1
-1
YHFormItemEnterDetailCell.swift
...)/FamilyMember(家庭成员信息表)/V/YHFormItemEnterDetailCell.swift
+1
-1
YHFormItemExpireDateCell.swift
...程)/FamilyMember(家庭成员信息表)/V/YHFormItemExpireDateCell.swift
+1
-3
YHFormItemInputTextCell.swift
...流程)/FamilyMember(家庭成员信息表)/V/YHFormItemInputTextCell.swift
+1
-1
YHFormItemQuestionsCell.swift
...流程)/FamilyMember(家庭成员信息表)/V/YHFormItemQuestionsCell.swift
+1
-1
YHFormItemTitleCell.swift
...ess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemTitleCell.swift
+10
-1
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/Education&Qualification(学历专业资格填写)/C/YHQualificationDetailVC.swift
View file @
dfffa92a
...
...
@@ -160,12 +160,9 @@ extension YHQualificationDetailVC : UITableViewDelegate, UITableViewDataSource {
let
item
:
YHFormItemProtocol
=
arr
[
indexPath
.
row
]
if
item
is
YHFormTitleItem
{
// 是标题
let
formItem
=
item
as!
YHFormTitleItem
// 配偶父母子女兄妹title
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemTitleCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemTitleCell
cell
.
setTitleAndSubTitle
(
title
:
formItem
.
getTitle
()
,
subTitle
:
formItem
.
getSubTitle
()
)
cell
.
setTitleAndSubTitle
(
title
:
formItem
.
getTitle
())
return
cell
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemDegreeInfoCell.swift
View file @
dfffa92a
...
...
@@ -40,7 +40,7 @@ class YHFormItemDegreeInfoCell: UITableViewCell {
titleLabel
.
attributedText
=
questionAttrStr
}
else
{
titleLabel
.
text
=
""
titleLabel
.
attributedText
=
nil
}
}
}
...
...
@@ -167,7 +167,7 @@ class HKDegreeInfoItemView: UIView {
titleLabel
.
attributedText
=
questionAttrStr
}
else
{
titleLabel
.
text
=
""
titleLabel
.
attributedText
=
nil
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemDoubleChoiceCell.swift
View file @
dfffa92a
...
...
@@ -54,7 +54,7 @@ class YHFormItemDoubleChoiceCell: UITableViewCell {
titleLabel
.
attributedText
=
questionAttrStr
}
else
{
titleLabel
.
text
=
""
titleLabel
.
attributedText
=
nil
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemEnterDetailCell.swift
View file @
dfffa92a
...
...
@@ -48,7 +48,7 @@ class YHFormItemEnterDetailCell: UITableViewCell {
}
titleLabel
.
attributedText
=
questionAttrStr
}
else
{
titleLabel
.
text
=
""
titleLabel
.
attributedText
=
nil
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemExpireDateCell.swift
View file @
dfffa92a
...
...
@@ -30,7 +30,6 @@ class YHFormItemExpireDateCell: UITableViewCell {
var
title
:
String
?
{
didSet
{
if
let
title
=
title
,
!
title
.
isEmpty
{
let
str
=
(
isMust
?
(
"*"
+
title
)
:
title
)
let
attributes
:
[
NSAttributedString
.
Key
:
Any
]
=
[
...
...
@@ -43,7 +42,7 @@ class YHFormItemExpireDateCell: UITableViewCell {
}
titleLabel
.
attributedText
=
questionAttrStr
}
else
{
titleLabel
.
text
=
""
titleLabel
.
attributedText
=
nil
}
}
}
...
...
@@ -56,7 +55,6 @@ class YHFormItemExpireDateCell: UITableViewCell {
var
detail
:
String
?
{
didSet
{
if
let
detail
=
detail
,
!
detail
.
isEmpty
{
detailLabel
.
text
=
detail
detailLabel
.
textColor
=
detailColor
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemInputTextCell.swift
View file @
dfffa92a
...
...
@@ -39,7 +39,7 @@ class YHFormItemInputTextCell: UITableViewCell {
}
titleLabel
.
attributedText
=
questionAttrStr
}
else
{
titleLabel
.
text
=
""
titleLabel
.
attributedText
=
nil
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemQuestionsCell.swift
View file @
dfffa92a
...
...
@@ -40,7 +40,7 @@ class YHFormItemQuestionsCell: UITableViewCell {
titleLabel
.
attributedText
=
questionAttrStr
}
else
{
titleLabel
.
text
=
""
titleLabel
.
attributedText
=
nil
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemTitleCell.swift
View file @
dfffa92a
...
...
@@ -104,7 +104,7 @@ class YHFormItemTitleCell: UITableViewCell {
titleLabel
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalToSuperview
()
.
offset
(
16
)
make
.
right
.
equalTo
(
cancelButton
.
snp
.
left
)
.
offset
(
-
3
)
make
.
right
.
equalTo
Superview
()
.
offset
(
-
horizonalGap
)
make
.
top
.
equalToSuperview
()
.
offset
(
16
)
make
.
bottom
.
equalToSuperview
()
.
offset
(
-
16
)
}
...
...
@@ -130,6 +130,8 @@ class YHFormItemTitleCell: UITableViewCell {
}
func
showEditType
(
type
:
YHFormTitleItemEditType
)
{
var
titleMaxRight
=
-
(
horizonalGap
)
switch
type
{
case
.
none
:
cancelButton
.
isHidden
=
true
...
...
@@ -137,10 +139,17 @@ class YHFormItemTitleCell: UITableViewCell {
case
.
canEdit
:
cancelButton
.
isHidden
=
true
editButton
.
isHidden
=
false
titleMaxRight
=
-
(
horizonalGap
+
24.0
+
5.0
)
case
.
canCancel
:
cancelButton
.
isHidden
=
false
editButton
.
isHidden
=
true
titleMaxRight
=
-
(
horizonalGap
+
92.0
+
5.0
)
}
titleLabel
.
snp
.
updateConstraints
{
make
in
make
.
right
.
equalToSuperview
()
.
offset
(
-
horizonalGap
)
}
self
.
setNeedsLayout
()
self
.
layoutIfNeeded
()
}
@objc
func
didClickOperatorBtn
(
btn
:
UIButton
)
{
...
...
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