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
214facd6
Commit
214facd6
authored
Mar 08, 2024
by
David黄金龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
处理 学位类型的提示
parent
6d0c8de5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
10 deletions
+5
-10
YHEducationDetailVC.swift
...ation&Qualification(学历专业资格填写)/C/YHEducationDetailVC.swift
+0
-7
YHFormItemSelectSheetCell.swift
...)/FamilyMember(家庭成员信息表)/V/YHFormItemSelectSheetCell.swift
+1
-3
YHWholeScreenTipsView.swift
...y/galaxy/Classes/Tools/Helper/YHWholeScreenTipsView.swift
+4
-0
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/Education&Qualification(学历专业资格填写)/C/YHEducationDetailVC.swift
View file @
214facd6
...
...
@@ -236,13 +236,6 @@ extension YHEducationDetailVC : UITableViewDelegate, UITableViewDataSource {
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemSelectSheetCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemSelectSheetCell
cell
.
isShowTipsButton
=
(
detailItem
.
type
==
.
degreeType
)
cell
.
tipsBtnClickBlock
=
nil
if
detailItem
.
type
==
.
degreeType
{
cell
.
tipsBtnClickBlock
=
{
[
weak
self
]
in
guard
let
self
=
self
else
{
return
}
YHHUD
.
flash
(
message
:
"该内容在学位证上,通常是授予后面,如授予“理学”学士学位,则填理学"
)
}
}
cell
.
placeHolder
=
detailItem
.
placeHolder
cell
.
isMust
=
detailItem
.
isNeed
cell
.
title
=
detailItem
.
getTitle
()
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/ServiceProcess(流程)/FamilyMember(家庭成员信息表)/V/YHFormItemSelectSheetCell.swift
View file @
214facd6
...
...
@@ -171,9 +171,7 @@ class YHFormItemSelectSheetCell: UITableViewCell {
}
@objc
func
didTipsButtonClicked
()
{
if
let
tipsBtnClickBlock
=
tipsBtnClickBlock
{
tipsBtnClickBlock
()
}
YHWholeScreenTipsView
.
show
(
type
:
.
residenceInfo
,
targetView
:
tipsButton
)
}
func
setTips
(
_
tips
:
String
?,
isShow
:
Bool
)
{
...
...
galaxy/galaxy/Classes/Tools/Helper/YHWholeScreenTipsView.swift
View file @
214facd6
...
...
@@ -11,6 +11,7 @@ import UIKit
enum
YHWholeScreenTipsViewType
:
Int
{
case
unKnow
//默认情况
case
residenceInfo
//居住信息
case
degreeType
//学位类型
}
...
...
@@ -57,6 +58,9 @@ class YHWholeScreenTipsView: UIView {
switch
type
{
case
.
residenceInfo
:
return
"依日期顺序列出你自出生后曾居住12个月或更长时间的所有国家或地区,包括你的现居国家或地区"
case
.
degreeType
:
return
"该内容在学位证上,通常是授予后面,如授予“理学”学士学位,则填理学"
default
:
return
"--"
}
...
...
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