Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
pidan
/
FuSiLive
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
686ab680
authored
Jul 16, 2024
by
ludi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改ui
parent
a514747d
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
11 deletions
FuSiLive/Classes/Foundation/Http/FUSURLDictionary.h
FuSiLive/Classes/Setting/Controller/FUSBlackListViewController.m
FuSiLive/Classes/Setting/Controller/FUSSettingViewController.m
FuSiLive/Classes/Zone/Controller/FUSMotoringWareHouseViewController.m
FuSiLive/Classes/Zone/View/FUSMotoringTableViewCell.h
FuSiLive/Classes/Zone/View/FUSMotoringTableViewCell.m
FuSiLive/FUSAPPConfigs/FUSFuSiWebViewEventHelper.m
FuSiLive/Classes/Foundation/Http/FUSURLDictionary.h
View file @
686ab680
...
@@ -839,7 +839,7 @@
...
@@ -839,7 +839,7 @@
#define URL_WEB_BACKPACK_CONSUME_RECORD DNS_WEB(@"/Nesting/backpack/consume.html")
#define URL_WEB_BACKPACK_CONSUME_RECORD DNS_WEB(@"/Nesting/backpack/consume.html")
// 账号管理
// 账号管理
#define URL_WEB_ACCOUNT_MANAGER DNS_WEB(@"/
Nesting
/logOff/index.html")
#define URL_WEB_ACCOUNT_MANAGER DNS_WEB(@"/
vestApp
/logOff/index.html")
// 首页-榜单
// 首页-榜单
#define URL_WEB_HOME_RANK DNS_WEB(@"/allRank/index.html")
#define URL_WEB_HOME_RANK DNS_WEB(@"/allRank/index.html")
...
...
FuSiLive/Classes/Setting/Controller/FUSBlackListViewController.m
View file @
686ab680
...
@@ -63,8 +63,10 @@
...
@@ -63,8 +63,10 @@
if
(
_blackListArray
.
count
>
0
)
{
if
(
_blackListArray
.
count
>
0
)
{
_tableView
.
tableFooterView
=
nil
;
_tableView
.
tableFooterView
=
nil
;
}
else
{
}
else
{
FUSEmptyView
*
emptyView
=
[[
FUSEmptyView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
0
,
UIView
.
fus_screenW
,
UIView
.
fus_screenH
/
2
.
0
f
)];
FUSEmptyView
*
emptyView
=
[[
FUSEmptyView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
0
,
UIView
.
fus_screenW
,
UIView
.
fus_screenH
-
[
UIView
fus_NavgationBarHeight
]
-
100
)];
[
emptyView
fus_setEmptyViewIcon
:[
UIImage
imageNamed
:
@"firefly_black_placeholder_img"
]
title
:[
NSString
fus_localString
:
@"空空如也"
]
buttonTittle
:
nil
];
[
emptyView
fus_setEmptyViewIcon
:[
UIImage
fus_emptyImg
]
title
:[
NSString
fus_localString
:
@"空空如也"
]
buttonTittle
:
nil
];
emptyView
.
contentVerticalOffset
=
-
20
;
emptyView
.
imageScale
=
0
.
3
;
_tableView
.
tableFooterView
=
emptyView
;
_tableView
.
tableFooterView
=
emptyView
;
}
}
[
_tableView
reloadData
];
[
_tableView
reloadData
];
...
...
FuSiLive/Classes/Setting/Controller/FUSSettingViewController.m
View file @
686ab680
...
@@ -517,7 +517,7 @@
...
@@ -517,7 +517,7 @@
FUSCustomSettingGroup
*
group7
=
[
FUSCustomSettingGroup
fus_settingGroup
];
FUSCustomSettingGroup
*
group7
=
[
FUSCustomSettingGroup
fus_settingGroup
];
group7
.
groupHeaderHeight
=
4
0
;
group7
.
groupHeaderHeight
=
0
;
group7
.
groupHeaderOriginY
=
10
;
group7
.
groupHeaderOriginY
=
10
;
group7
.
groupHeaderTextColor
=
[
UIColor
colorWithHex
:
@"#4D4D4D"
];
group7
.
groupHeaderTextColor
=
[
UIColor
colorWithHex
:
@"#4D4D4D"
];
group7
.
groupHeaderTextFont
=
[
UIFont
fus_themeFont
:
12
];
group7
.
groupHeaderTextFont
=
[
UIFont
fus_themeFont
:
12
];
...
...
FuSiLive/Classes/Zone/Controller/FUSMotoringWareHouseViewController.m
View file @
686ab680
...
@@ -209,11 +209,11 @@
...
@@ -209,11 +209,11 @@
cell
.
model
=
self
.
motoringArr
[
indexPath
.
section
];
cell
.
model
=
self
.
motoringArr
[
indexPath
.
section
];
//
if (indexPath.section == self.motoringArr.count - 1) {
if
(
indexPath
.
section
==
self
.
motoringArr
.
count
-
1
)
{
//
cell.cellLineView.hidden = YES;
cell
.
cellLineView
.
hidden
=
YES
;
//
}else{
}
else
{
//
cell.cellLineView.hidden = NO;
cell
.
cellLineView
.
hidden
=
NO
;
//
}
}
return
cell
;
return
cell
;
}
}
...
...
FuSiLive/Classes/Zone/View/FUSMotoringTableViewCell.h
View file @
686ab680
...
@@ -12,6 +12,6 @@
...
@@ -12,6 +12,6 @@
@property
(
nonatomic
,
strong
)
FUSZoneMotoringModel
*
model
;
@property
(
nonatomic
,
strong
)
FUSZoneMotoringModel
*
model
;
@property
(
weak
,
nonatomic
)
IBOutlet
UIView
*
cellLineView
;
@property
(
nonatomic
,
strong
)
UIView
*
cellLineView
;
@end
@end
FuSiLive/Classes/Zone/View/FUSMotoringTableViewCell.m
View file @
686ab680
...
@@ -34,6 +34,16 @@
...
@@ -34,6 +34,16 @@
self
.
layer
.
masksToBounds
=
YES
;
self
.
layer
.
masksToBounds
=
YES
;
self
.
motoringNameLabel
.
textColor
=
[
UIColor
fus_textColorRich
];
self
.
motoringNameLabel
.
textColor
=
[
UIColor
fus_textColorRich
];
self
.
cellLineView
=
[[
UIView
alloc
]
init
];
self
.
cellLineView
.
backgroundColor
=
[
UIColor
fus_lineColor
];
[
self
.
contentView
addSubview
:
self
.
cellLineView
];
[
self
.
cellLineView
mas_makeConstraints
:
^
(
MASConstraintMaker
*
make
)
{
make
.
left
.
right
.
inset
(
16
);
make
.
bottom
.
offset
(
0
);
make
.
height
.
offset
(
0
.
5
);
}];
}
}
-
(
void
)
setModel
:
(
FUSZoneMotoringModel
*
)
model
-
(
void
)
setModel
:
(
FUSZoneMotoringModel
*
)
model
...
...
FuSiLive/FUSAPPConfigs/FUSFuSiWebViewEventHelper.m
View file @
686ab680
...
@@ -705,7 +705,7 @@ static NSString *FUSWebRightBtnExtraInfoKey = @"FUSWebRightBtnExtraInfoKey";
...
@@ -705,7 +705,7 @@ static NSString *FUSWebRightBtnExtraInfoKey = @"FUSWebRightBtnExtraInfoKey";
FUSWebActionModel
*
model
=
[
FUSWebActionModel
fus_modelWithDict
:
action
];
FUSWebActionModel
*
model
=
[
FUSWebActionModel
fus_modelWithDict
:
action
];
if
(
model
)
{
if
(
model
)
{
UIButton
*
btn
=
[
UIButton
buttonWithType
:
UIButtonTypeCustom
];
UIButton
*
btn
=
[
UIButton
buttonWithType
:
UIButtonTypeCustom
];
[
btn
setWeb
BackgroundImageWithSubURLString
:
model
.
imgUr
l
];
[
btn
setWeb
ImageWithSubURLString
:
model
.
imgUrl
placeholder
:
ni
l
];
btn
.
imageView
.
contentMode
=
UIViewContentModeScaleAspectFit
;
btn
.
imageView
.
contentMode
=
UIViewContentModeScaleAspectFit
;
btn
.
frame
=
CGRectMake
(
lastX
,
y
,
btnSize
,
btnSize
);
btn
.
frame
=
CGRectMake
(
lastX
,
y
,
btnSize
,
btnSize
);
btn
.
imageEdgeInsets
=
UIEdgeInsetsMake
(
0
,
10
,
0
,
0
);
btn
.
imageEdgeInsets
=
UIEdgeInsetsMake
(
0
,
10
,
0
,
0
);
...
...
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