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
9a934738
Commit
9a934738
authored
Apr 10, 2025
by
pete谢兆麟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决moon提出的bug
parent
467cf1e3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
project.pbxproj
galaxy/galaxy.xcodeproj/project.pbxproj
+4
-4
YHMakePlanBottomView.swift
...es/Modules/Plan(方案)/MakePlan/V/YHMakePlanBottomView.swift
+1
-1
YHMakePlanPriceAlertView.swift
...odules/Plan(方案)/MakePlan/V/YHMakePlanPriceAlertView.swift
+7
-2
No files found.
galaxy/galaxy.xcodeproj/project.pbxproj
View file @
9a934738
...
...
@@ -8482,7 +8482,7 @@
CODE_SIGN_ENTITLEMENTS
=
galaxy/galaxyTestEnv.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
3
;
CURRENT_PROJECT_VERSION
=
5
;
DEVELOPMENT_TEAM
=
RXHYW88XR7
;
ENABLE_USER_SCRIPT_SANDBOXING
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
...
...
@@ -8628,7 +8628,7 @@
CODE_SIGN_ENTITLEMENTS
=
galaxy/galaxy.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
3
;
CURRENT_PROJECT_VERSION
=
5
;
DEVELOPMENT_TEAM
=
RXHYW88XR7
;
ENABLE_USER_SCRIPT_SANDBOXING
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
...
...
@@ -8836,7 +8836,7 @@
CODE_SIGN_ENTITLEMENTS
=
galaxy/galaxyDebug.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
3
;
CURRENT_PROJECT_VERSION
=
5
;
DEVELOPMENT_TEAM
=
RXHYW88XR7
;
ENABLE_USER_SCRIPT_SANDBOXING
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
...
...
@@ -8884,7 +8884,7 @@
CODE_SIGN_ENTITLEMENTS
=
galaxy/galaxy.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
3
;
CURRENT_PROJECT_VERSION
=
5
;
DEVELOPMENT_TEAM
=
RXHYW88XR7
;
ENABLE_USER_SCRIPT_SANDBOXING
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
...
...
galaxy/galaxy/Classes/Modules/Plan(方案)/MakePlan/V/YHMakePlanBottomView.swift
View file @
9a934738
...
...
@@ -20,7 +20,7 @@ class YHMakePlanBottomView: UIView {
return
label
}()
private
lazy
var
priceButton
:
UIButton
=
{
lazy
var
priceButton
:
UIButton
=
{
let
label
=
UIButton
()
label
.
setImage
(
UIImage
(
named
:
"make_plan_up"
),
for
:
.
normal
)
label
.
addTarget
(
self
,
action
:
#selector(
handleAction
)
,
for
:
.
touchUpInside
)
...
...
galaxy/galaxy/Classes/Modules/Plan(方案)/MakePlan/V/YHMakePlanPriceAlertView.swift
View file @
9a934738
...
...
@@ -40,12 +40,12 @@ class YHMakePlanPriceAlertView: UIView {
didSet
{
tableView
.
reloadData
()
let
totalPrice
=
dataSource
.
calculateTotalPrice
()
priceView
.
priceButton
.
setImage
(
UIImage
(
named
:
"make_plan_down"
),
for
:
.
normal
)
priceView
.
configure
(
price
:
totalPrice
,
actionText
:
"去办理"
)
{
self
.
dismiss
()
}
nextHandler
:
{
self
.
block
?(
1
)
}
}
}
...
...
@@ -346,10 +346,15 @@ class YHMakePlanLabelCell: UITableViewCell {
var
lastView
:
UIView
?
for
(
i
,
model
)
in
filteredModel
.
enumerated
()
{
let
name
=
model
.
sub_product
.
first
?
.
product_name
??
""
let
titleLabel
=
UILabel
()
titleLabel
.
font
=
UIFont
.
PFSC_M
(
ofSize
:
14
)
titleLabel
.
textColor
=
UIColor
.
mainTextColor
titleLabel
.
text
=
model
.
product_name
if
name
==
""
{
titleLabel
.
text
=
model
.
product_name
}
else
{
titleLabel
.
text
=
model
.
product_name
+
" | "
+
name
}
titleLabel
.
numberOfLines
=
0
mainItemView
.
addSubview
(
titleLabel
)
...
...
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