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
5979e168
Commit
5979e168
authored
Jul 02, 2024
by
pete谢兆麟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UI 8处细节修复
parent
2dc7e685
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
36 additions
and
13 deletions
+36
-13
YHInformationAuthorizationStepTwoViewController.swift
...)/C/YHInformationAuthorizationStepTwoViewController.swift
+1
-1
YHSetExplainView.swift
...xy/Classes/Modules/Community(社区)/V/YHSetExplainView.swift
+5
-6
YHFailPromptView.swift
...tService(服务中心)/MyDocuments(我的文书)/V/YHFailPromptView.swift
+1
-1
YHCommonAlertView.swift
...Service(服务中心)/MySignature(我的签字)/V/YHCommonAlertView.swift
+4
-2
YHAllowSettingTableViewCell.swift
...ses/Modules/Login(登录)/V/YHAllowSettingTableViewCell.swift
+1
-1
Contents.json
....xcassets/MyCard/my_card_set_alert.imageset/Contents.json
+22
-0
my_card_set_alert@2x.png
...yCard/my_card_set_alert.imageset/my_card_set_alert@2x.png
+0
-0
my_card_set_alert@3x.png
...yCard/my_card_set_alert.imageset/my_card_set_alert@3x.png
+0
-0
Contents.json
...xcassets/MyCard/set_example_people.imageset/Contents.json
+2
-2
Mask group@2x.png
...sets/MyCard/set_example_people.imageset/Mask group@2x.png
+0
-0
Mask group@3x.png
...sets/MyCard/set_example_people.imageset/Mask group@3x.png
+0
-0
set_example_people@2x.png
...ard/set_example_people.imageset/set_example_people@2x.png
+0
-0
set_example_people@3x.png
...ard/set_example_people.imageset/set_example_people@3x.png
+0
-0
No files found.
galaxy/galaxy/Classes/Modules/Community(社区)/C/YHInformationAuthorizationStepTwoViewController.swift
View file @
5979e168
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
import
UIKit
import
UIKit
class
YHInformationAuthorizationStepTwoViewController
:
UI
ViewController
{
class
YHInformationAuthorizationStepTwoViewController
:
YHBase
ViewController
{
var
stepOneView
:
UIView
!
var
stepOneView
:
UIView
!
var
stepTwoView
:
UIView
!
var
stepTwoView
:
UIView
!
var
nextButton
:
UIButton
!
var
nextButton
:
UIButton
!
...
...
galaxy/galaxy/Classes/Modules/Community(社区)/V/YHSetExplainView.swift
View file @
5979e168
...
@@ -52,7 +52,7 @@ class YHSetExplainView: UIView {
...
@@ -52,7 +52,7 @@ class YHSetExplainView: UIView {
}
}
func
setView
()
{
func
setView
()
{
backgroundColor
=
UIColor
(
hex
:
0x000000
,
alpha
:
0.
5
)
backgroundColor
=
UIColor
(
hex
:
0x000000
,
alpha
:
0.
68
)
centerView
=
{
centerView
=
{
let
view
=
UIView
()
let
view
=
UIView
()
view
.
backgroundColor
=
.
white
view
.
backgroundColor
=
.
white
...
@@ -111,7 +111,7 @@ class YHSetExplainView: UIView {
...
@@ -111,7 +111,7 @@ class YHSetExplainView: UIView {
let
label
=
UILabel
()
let
label
=
UILabel
()
label
.
text
=
"须使用二代身份证"
label
.
text
=
"须使用二代身份证"
label
.
font
=
UIFont
.
PFSC_R
(
ofSize
:
14
)
label
.
font
=
UIFont
.
PFSC_R
(
ofSize
:
14
)
label
.
textColor
=
UIColor
.
placeHolderColor
label
.
textColor
=
UIColor
.
mainTextColor50
label
.
textAlignment
=
.
left
label
.
textAlignment
=
.
left
label
.
numberOfLines
=
0
label
.
numberOfLines
=
0
return
label
return
label
...
@@ -126,15 +126,14 @@ class YHSetExplainView: UIView {
...
@@ -126,15 +126,14 @@ class YHSetExplainView: UIView {
topImageView
=
{
topImageView
=
{
let
imageView
=
UIImageView
()
let
imageView
=
UIImageView
()
imageView
.
image
=
UIImage
(
named
:
"service_card_id_back"
)
imageView
.
image
=
UIImage
(
named
:
"service_card_id_back"
)
imageView
.
layer
.
cornerRadius
=
kCornerRadius
6
imageView
.
layer
.
cornerRadius
=
kCornerRadius
3
imageView
.
clipsToBounds
=
true
imageView
.
clipsToBounds
=
true
return
imageView
return
imageView
}()
}()
centerView
.
addSubview
(
topImageView
)
centerView
.
addSubview
(
topImageView
)
topImageView
.
snp
.
makeConstraints
{
make
in
topImageView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalTo
(
21
)
make
.
centerX
.
equalToSuperview
()
make
.
right
.
equalTo
(
-
21
)
make
.
width
.
height
.
equalTo
(
333
)
make
.
height
.
equalTo
(
333
)
make
.
top
.
equalTo
(
73
)
make
.
top
.
equalTo
(
73
)
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/MyDocuments(我的文书)/V/YHFailPromptView.swift
View file @
5979e168
...
@@ -51,7 +51,7 @@ private extension YHFailPromptView {
...
@@ -51,7 +51,7 @@ private extension YHFailPromptView {
titleLable
.
snp
.
makeConstraints
{
make
in
titleLable
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalTo
(
38
)
make
.
left
.
equalTo
(
38
)
make
.
right
.
equalTo
(
-
18
)
make
.
right
.
equalTo
(
-
18
)
make
.
top
.
equalTo
(
8
)
make
.
top
.
equalTo
(
9
)
}
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/MySignature(我的签字)/V/YHCommonAlertView.swift
View file @
5979e168
...
@@ -63,6 +63,7 @@ class YHCommonAlertView: UIView {
...
@@ -63,6 +63,7 @@ class YHCommonAlertView: UIView {
make
.
right
.
equalTo
(
-
22
)
make
.
right
.
equalTo
(
-
22
)
make
.
height
.
greaterThanOrEqualTo
(
21
)
make
.
height
.
greaterThanOrEqualTo
(
21
)
make
.
top
.
equalTo
(
37
)
make
.
top
.
equalTo
(
37
)
make
.
bottom
.
equalTo
(
disAgressButton
.
snp
.
top
)
.
offset
(
-
20
)
}
}
...
@@ -74,6 +75,7 @@ class YHCommonAlertView: UIView {
...
@@ -74,6 +75,7 @@ class YHCommonAlertView: UIView {
make
.
right
.
equalTo
(
-
22
)
make
.
right
.
equalTo
(
-
22
)
make
.
height
.
greaterThanOrEqualTo
(
21
)
make
.
height
.
greaterThanOrEqualTo
(
21
)
make
.
top
.
equalTo
(
lineView
.
snp
.
bottom
)
.
offset
(
21
)
make
.
top
.
equalTo
(
lineView
.
snp
.
bottom
)
.
offset
(
21
)
make
.
bottom
.
equalTo
(
disAgressButton
.
snp
.
top
)
.
offset
(
-
20
)
}
}
}
}
...
@@ -84,7 +86,7 @@ class YHCommonAlertView: UIView {
...
@@ -84,7 +86,7 @@ class YHCommonAlertView: UIView {
disAgressButton
.
snp
.
remakeConstraints
{
make
in
disAgressButton
.
snp
.
remakeConstraints
{
make
in
make
.
top
.
equalTo
(
messageLabel
.
snp
.
bottom
)
.
offset
(
36
)
make
.
top
.
equalTo
(
messageLabel
.
snp
.
bottom
)
.
offset
(
36
)
make
.
left
.
equalTo
(
16
)
make
.
left
.
equalTo
(
16
)
make
.
bottom
.
equalTo
(
-
21
)
make
.
bottom
.
equalTo
(
-
16
)
make
.
width
.
equalTo
(
128
)
make
.
width
.
equalTo
(
128
)
make
.
height
.
equalTo
(
45
)
make
.
height
.
equalTo
(
45
)
}
}
...
@@ -135,7 +137,7 @@ class YHCommonAlertView: UIView {
...
@@ -135,7 +137,7 @@ class YHCommonAlertView: UIView {
centerView
.
snp
.
makeConstraints
{
make
in
centerView
.
snp
.
makeConstraints
{
make
in
make
.
center
.
equalToSuperview
()
make
.
center
.
equalToSuperview
()
make
.
width
.
equalTo
(
299
)
make
.
width
.
equalTo
(
299
)
make
.
height
.
equalTo
(
1
87
)
make
.
height
.
equalTo
(
1
43
)
}
}
titleLabel
=
{
titleLabel
=
{
...
...
galaxy/galaxy/Classes/Modules/Login(登录)/V/YHAllowSettingTableViewCell.swift
View file @
5979e168
...
@@ -60,7 +60,7 @@ class YHAllowSettingTableViewCell: UITableViewCell {
...
@@ -60,7 +60,7 @@ class YHAllowSettingTableViewCell: UITableViewCell {
exampleButton
=
{
exampleButton
=
{
let
button
=
UIButton
(
type
:
.
custom
)
let
button
=
UIButton
(
type
:
.
custom
)
button
.
setBackgroundImage
(
UIImage
(
named
:
"
work_experience
_alert"
),
for
:
.
normal
)
button
.
setBackgroundImage
(
UIImage
(
named
:
"
my_card_set
_alert"
),
for
:
.
normal
)
button
.
addTarget
(
self
,
action
:
#selector(
exampleClick
)
,
for
:
.
touchUpInside
)
button
.
addTarget
(
self
,
action
:
#selector(
exampleClick
)
,
for
:
.
touchUpInside
)
return
button
return
button
}()
}()
...
...
galaxy/galaxy/Res/Assets.xcassets/MyCard/my_card_set_alert.imageset/Contents.json
0 → 100644
View file @
5979e168
{
"images"
:
[
{
"idiom"
:
"universal"
,
"scale"
:
"1x"
},
{
"filename"
:
"my_card_set_alert@2x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"2x"
},
{
"filename"
:
"my_card_set_alert@3x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"3x"
}
],
"info"
:
{
"author"
:
"xcode"
,
"version"
:
1
}
}
galaxy/galaxy/Res/Assets.xcassets/MyCard/my_card_set_alert.imageset/my_card_set_alert@2x.png
0 → 100644
View file @
5979e168
1.32 KB
galaxy/galaxy/Res/Assets.xcassets/MyCard/my_card_set_alert.imageset/my_card_set_alert@3x.png
0 → 100644
View file @
5979e168
1.99 KB
galaxy/galaxy/Res/Assets.xcassets/MyCard/set_example_people.imageset/Contents.json
View file @
5979e168
...
@@ -5,12 +5,12 @@
...
@@ -5,12 +5,12 @@
"scale"
:
"1x"
"scale"
:
"1x"
},
},
{
{
"filename"
:
"
set_example_people
@2x.png"
,
"filename"
:
"
Mask group
@2x.png"
,
"idiom"
:
"universal"
,
"idiom"
:
"universal"
,
"scale"
:
"2x"
"scale"
:
"2x"
},
},
{
{
"filename"
:
"
set_example_people
@3x.png"
,
"filename"
:
"
Mask group
@3x.png"
,
"idiom"
:
"universal"
,
"idiom"
:
"universal"
,
"scale"
:
"3x"
"scale"
:
"3x"
}
}
...
...
galaxy/galaxy/Res/Assets.xcassets/MyCard/set_example_people.imageset/Mask group@2x.png
0 → 100644
View file @
5979e168
475 KB
galaxy/galaxy/Res/Assets.xcassets/MyCard/set_example_people.imageset/Mask group@3x.png
0 → 100644
View file @
5979e168
915 KB
galaxy/galaxy/Res/Assets.xcassets/MyCard/set_example_people.imageset/set_example_people@2x.png
deleted
100644 → 0
View file @
2dc7e685
481 KB
galaxy/galaxy/Res/Assets.xcassets/MyCard/set_example_people.imageset/set_example_people@3x.png
deleted
100644 → 0
View file @
2dc7e685
926 KB
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