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
efce4f4c
Commit
efce4f4c
authored
Nov 26, 2024
by
David黄金龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
几处 文案修改
parent
36f4f4a5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
4 deletions
+10
-4
YHHKPlanDocModel.swift
...)/QMAS(优才)/MyDocuments(我的文书)/Model/YHHKPlanDocModel.swift
+4
-0
YHHKPlanItemView.swift
...服务中心)/QMAS(优才)/MyDocuments(我的文书)/V/YHHKPlanItemView.swift
+3
-1
YHHKPlanTipsCell.swift
...服务中心)/QMAS(优才)/MyDocuments(我的文书)/V/YHHKPlanTipsCell.swift
+1
-1
YHPreviewViewModel.swift
...的信息流程)/PersonInfoList(个人信息预览)/VM/YHPreviewViewModel.swift
+2
-2
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/MyDocuments(我的文书)/Model/YHHKPlanDocModel.swift
View file @
efce4f4c
...
...
@@ -22,10 +22,14 @@ enum HKPlanDocQuestionType {
class
YHHKPlanDocModel
{
var
title
:
String
=
""
var
content
:
String
=
""
var
contentCount
:
Int
=
0
// content的长度
var
type
:
HKPlanDocQuestionType
=
.
unknow
var
other
:
String
=
""
//本地使用
var
canEditFlag
:
Bool
=
true
var
isFirstData
:
Bool
=
false
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/MyDocuments(我的文书)/V/YHHKPlanItemView.swift
View file @
efce4f4c
...
...
@@ -326,7 +326,7 @@ private extension YHHKPlanItemView {
}
else
{
subHoldView2
.
isHidden
=
false
skillLabel
.
text
=
model
.
other
skillLabel
.
text
=
"所属专业名称(如有):"
+
model
.
other
subHoldView
.
snp
.
removeConstraints
()
subHoldView2
.
snp
.
removeConstraints
()
...
...
@@ -519,6 +519,8 @@ extension YHHKPlanItemView : UITextViewDelegate {
// }
model
.
content
=
text
model
.
contentCount
=
txtNum
if
txtNum
>
maxNumbler
{
numberLabel
.
textColor
=
.
failColor
}
else
{
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/MyDocuments(我的文书)/V/YHHKPlanTipsCell.swift
View file @
efce4f4c
...
...
@@ -84,7 +84,7 @@ private extension YHHKPlanTipsCell {
let
a
:
ASAttributedString
=
.
init
(
"应香港入境处最新要求,"
,
.
font
(
UIFont
.
PFSC_R
(
ofSize
:
12
)),
.
foreground
(
UIColor
.
labelTextColor2
))
let
b
:
ASAttributedString
=
.
init
(
"赴港计划书格式、内容作出调整,共分为七部分,每部分不得超过
对应字数
"
,
.
font
(
UIFont
.
PFSC_R
(
ofSize
:
12
)),
.
foreground
(
UIColor
.
brandMainColor
))
let
b
:
ASAttributedString
=
.
init
(
"赴港计划书格式、内容作出调整,共分为七部分,每部分不得超过
100字(含标点)
"
,
.
font
(
UIFont
.
PFSC_R
(
ofSize
:
12
)),
.
foreground
(
UIColor
.
brandMainColor
))
let
c
:
ASAttributedString
=
.
init
(
"。其中“赴港具体计划”仅代表个人预期规划,无须严格执行。"
,
.
font
(
UIFont
.
PFSC_R
(
ofSize
:
12
)),
.
foreground
(
UIColor
.
labelTextColor2
))
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/ServiceProcess(我的信息流程)/PersonInfoList(个人信息预览)/VM/YHPreviewViewModel.swift
View file @
efce4f4c
...
...
@@ -256,10 +256,10 @@ private extension YHPreviewViewModel {
do
{
//1.基本信息
let
tmp1
=
YHPreviewQuestionAndAnswerModel
(
question
:
"用人单位:"
,
answer
:
model
.
company_name
)
let
tmp2
=
YHPreviewQuestionAndAnswerModel
(
question
:
"公司是否
上市
:"
,
answer
:
model
.
is_ipo_company
?
"是"
:
"否"
)
let
tmp2
=
YHPreviewQuestionAndAnswerModel
(
question
:
"公司是否
为上市公司
:"
,
answer
:
model
.
is_ipo_company
?
"是"
:
"否"
)
arr1
.
append
(
contentsOf
:
[
tmp1
,
tmp2
])
if
model
.
is_ipo_company
{
let
tmp2
=
YHPreviewQuestionAndAnswerModel
(
question
:
"您
是否拥有此公司所有权(10%以上股权)
:"
,
answer
:
model
.
has_ipo_company_equity
?
"是"
:
"否"
)
let
tmp2
=
YHPreviewQuestionAndAnswerModel
(
question
:
"您
目前是否拥有此公司10%以上股权
:"
,
answer
:
model
.
has_ipo_company_equity
?
"是"
:
"否"
)
arr1
.
append
(
tmp2
)
if
model
.
has_ipo_company_equity
{
...
...
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