Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
万
万科
Project
Project
Details
Activity
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
张杰
万科
Commits
ce6ab0c0
Commit
ce6ab0c0
authored
9 years ago
by
Achilles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交无数据时的图片
parent
2f49dc76
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
174 additions
and
19 deletions
+174
-19
project.pbxproj
vanke.xcodeproj/project.pbxproj
+162
-1
no_data@2x.png
vanke/view_iPhone/resource/img/no_data@2x.png
+0
-0
no_data@3x.png
vanke/view_iPhone/resource/img/no_data@3x.png
+0
-0
NoDataCell_iPhoneCell.h
vanke/view_iPhone/templates/common/NoDataCell_iPhoneCell.h
+0
-2
NoDataCell_iPhoneCell.m
vanke/view_iPhone/templates/common/NoDataCell_iPhoneCell.m
+0
-7
NoDataCell_iPhoneCell.xml
vanke/view_iPhone/templates/common/NoDataCell_iPhoneCell.xml
+8
-5
VankeFloorListBoard_iPhone.m
..._iPhone/templates/floor-list/VankeFloorListBoard_iPhone.m
+1
-1
VankeNoticeListBoard_iPhone.m
...iew_iPhone/templates/notice/VankeNoticeListBoard_iPhone.m
+1
-1
VankeStatementDetailListBoard_iPhone.m
...emplates/statement/VankeStatementDetailListBoard_iPhone.m
+1
-1
VankeStatementListBoard_iPhone.m
...hone/templates/statement/VankeStatementListBoard_iPhone.m
+1
-1
No files found.
vanke.xcodeproj/project.pbxproj
View file @
ce6ab0c0
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/resource/img/no_data@2x.png
0 → 100644
View file @
ce6ab0c0
13 KB
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/resource/img/no_data@3x.png
0 → 100644
View file @
ce6ab0c0
35 KB
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/templates/common/NoDataCell_iPhoneCell.h
View file @
ce6ab0c0
...
...
@@ -21,6 +21,4 @@
@interface
NoDataCell_iPhoneCell
:
BeeUICell
AS_OUTLET
(
BeeUILabel
,
lblMsg
)
@end
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/templates/common/NoDataCell_iPhoneCell.m
View file @
ce6ab0c0
...
...
@@ -24,8 +24,6 @@
SUPPORT_AUTOMATIC_LAYOUT
(
YES
)
SUPPORT_RESOURCE_LOADING
(
YES
)
DEF_OUTLET
(
BeeUILabel
,
lblMsg
)
-
(
void
)
load
{
}
...
...
@@ -36,11 +34,6 @@ DEF_OUTLET( BeeUILabel, lblMsg )
-
(
void
)
dataDidChanged
{
NSString
*
str
=
self
.
data
;
if
(
nil
==
str
)
{
str
=
@"没有数据,请稍后重试!"
;
}
$
(
self
.
lblMsg
).
DATA
(
str
);
}
-
(
void
)
layoutDidFinish
...
...
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/templates/common/NoDataCell_iPhoneCell.xml
View file @
ce6ab0c0
...
...
@@ -2,7 +2,7 @@
<ui
namespace=
"NoDataCell_iPhoneCell"
>
<linear
orientation=
"v"
class=
"wrapper"
>
<
label
id=
"lblMsg"
class=
"msg"
/>
<
image
class=
"bg"
/>
</linear>
<style
type=
"text/css"
>
...
...
@@ -12,10 +12,13 @@
align: center;
}
.msg {
width: auto;
height: 30px;
color: black;
.bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(no_data.png);
}
</style>
</ui>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/templates/floor-list/VankeFloorListBoard_iPhone.m
View file @
ce6ab0c0
...
...
@@ -77,7 +77,7 @@ ON_CREATE_VIEWS( signal )
self
.
list
.
total
=
1
;
BeeUIScrollItem
*
item
=
self
.
list
.
items
[
0
];
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
50
);
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
100
);
item
.
order
=
0
;
item
.
rule
=
BeeUIScrollLayoutRule_Fall
;
item
.
clazz
=
[
NoDataCell_iPhoneCell
class
];
...
...
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/templates/notice/VankeNoticeListBoard_iPhone.m
View file @
ce6ab0c0
...
...
@@ -90,7 +90,7 @@ ON_CREATE_VIEWS( signal )
self
.
list
.
total
=
1
;
BeeUIScrollItem
*
item
=
self
.
list
.
items
[
0
];
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
5
0
);
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
10
0
);
item
.
order
=
0
;
item
.
rule
=
BeeUIScrollLayoutRule_Fall
;
item
.
clazz
=
[
NoDataCell_iPhoneCell
class
];
...
...
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/templates/statement/VankeStatementDetailListBoard_iPhone.m
View file @
ce6ab0c0
...
...
@@ -296,7 +296,7 @@ ON_SIGNAL3(VankeStatementDetailListBoard_iPhone, btnConfirm, signal) {
self
.
list
.
total
=
1
;
BeeUIScrollItem
*
item
=
self
.
list
.
items
[
0
];
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
5
0
);
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
10
0
);
item
.
order
=
0
;
item
.
rule
=
BeeUIScrollLayoutRule_Fall
;
item
.
clazz
=
[
NoDataCell_iPhoneCell
class
];
...
...
This diff is collapsed.
Click to expand it.
vanke/view_iPhone/templates/statement/VankeStatementListBoard_iPhone.m
View file @
ce6ab0c0
...
...
@@ -215,7 +215,7 @@ ON_NOTIFICATION3( VankeStatementDetailListBoard_iPhone, STATE_CHANGED, notificat
self
.
list
.
total
=
1
;
BeeUIScrollItem
*
item
=
self
.
list
.
items
[
0
];
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
5
0
);
item
.
size
=
CGSizeMake
(
self
.
list
.
width
,
20
0
);
item
.
order
=
0
;
item
.
rule
=
BeeUIScrollLayoutRule_Fall
;
item
.
clazz
=
[
NoDataCell_iPhoneCell
class
];
...
...
This diff is collapsed.
Click to expand it.
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