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
a0ac7d24
Commit
a0ac7d24
authored
Nov 27, 2015
by
Achilles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
“租售比”调回“车流”/“客单价”改为“WIFI登录数” VK-14
parent
29b3c4ec
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
167 additions
and
20 deletions
+167
-20
project.pbxproj
vanke.xcodeproj/project.pbxproj
+152
-15
VankeProjectSummaryAPI.h
vanke/controller/VankeProjectSummaryAPI.h
+6
-0
VankeProjectSummaryAPI.m
vanke/controller/VankeProjectSummaryAPI.m
+2
-0
VankeAffairsBoard_iPhone.m
.../view_iPhone/templates/affairs/VankeAffairsBoard_iPhone.m
+3
-1
VankeServiceDashBoard_iPhone.m
...view_iPhone/templates/main/VankeServiceDashBoard_iPhone.m
+4
-4
No files found.
vanke.xcodeproj/project.pbxproj
View file @
a0ac7d24
This diff is collapsed.
Click to expand it.
vanke/controller/VankeProjectSummaryAPI.h
View file @
a0ac7d24
...
...
@@ -45,6 +45,12 @@
// 当前车流
@property
(
nonatomic
,
strong
)
NSNumber
*
trafficVolume
;
// 租售比
@property
(
nonatomic
,
strong
)
NSNumber
*
salesPerArea
;
// wifi登录数
@property
(
nonatomic
,
strong
)
NSNumber
*
wifiLoginTimes
;
@end
...
...
vanke/controller/VankeProjectSummaryAPI.m
View file @
a0ac7d24
...
...
@@ -71,6 +71,8 @@
@synthesize
passengerFlowVolume
;
@synthesize
trafficVolume
;
@synthesize
salesAmount
;
@synthesize
salesPerArea
;
@synthesize
wifiLoginTimes
;
@end
...
...
vanke/view_iPhone/templates/affairs/VankeAffairsBoard_iPhone.m
View file @
a0ac7d24
...
...
@@ -21,6 +21,7 @@
#import "VankeAppBoard_iPhone.h"
#import "VankeNoticeListBoard_iPhone.h"
#import "VankeStatementListBoard_iPhone.h"
#import "ICRAnnouncementViewController.h"
#pragma mark -
...
...
@@ -92,7 +93,8 @@ ON_DID_DISAPPEAR( signal )
ON_SIGNAL3
(
VankeAffairsBoard_iPhone
,
btnNotice
,
signal
)
{
[[
VankeAppBoard_iPhone
sharedInstance
]
hideMenu
];
VankeNoticeListBoard_iPhone
*
board
=
[
VankeNoticeListBoard_iPhone
board
];
// VankeNoticeListBoard_iPhone *board = [VankeNoticeListBoard_iPhone board];
ICRAnnouncementViewController
*
board
=
[
ICRAnnouncementViewController
board
];
[
self
.
stack
pushBoard
:
board
animated
:
YES
];
}
...
...
vanke/view_iPhone/templates/main/VankeServiceDashBoard_iPhone.m
View file @
a0ac7d24
...
...
@@ -48,9 +48,9 @@ DEF_OUTLET( VankeServiceBoardCell_iPhone, complaint );
{
self
.
salesInfo
.
imgRightBg
.
backgroundColor
=
[
UIColor
colorWithRed
:
237
/
255
.
0
green
:
27
/
255
.
0
blue
:
35
/
255
.
0
alpha
:
1
];
[
self
.
passenger
loadDefaults
:
@"people.png"
title
:
@"当前客流"
bgColor
:
[
UIColor
colorWithRed
:
0
green
:
195
/
255
.
0
blue
:
230
/
255
.
0
alpha
:
1
]
unit
:
@"人"
defValue
:
[
NSNumber
numberWithInt
:
0
]];
[
self
.
traffic
loadDefaults
:
@"car.png"
title
:
@"
租售比"
bgColor
:
[
UIColor
colorWithRed
:
79
/
255
.
0
green
:
143
/
255
.
0
blue
:
248
/
255
.
0
alpha
:
1
]
unit
:
@"%
"
defValue
:
[
NSNumber
numberWithInt
:
0
]];
[
self
.
traffic
loadDefaults
:
@"car.png"
title
:
@"
车流"
bgColor
:
[
UIColor
colorWithRed
:
79
/
255
.
0
green
:
143
/
255
.
0
blue
:
248
/
255
.
0
alpha
:
1
]
unit
:
@"人
"
defValue
:
[
NSNumber
numberWithInt
:
0
]];
[
self
.
energy
loadDefaults
:
@"energy.png"
title
:
@"坪效"
bgColor
:
[
UIColor
colorWithRed
:
149
/
255
.
0
green
:
200
/
255
.
0
blue
:
8
/
255
.
0
alpha
:
1
]
unit
:
@"元"
defValue
:
[
NSNumber
numberWithInt
:
0
]];
[
self
.
complaint
loadDefaults
:
@"complaint.png"
title
:
@"
客单价"
bgColor
:
[
UIColor
colorWithRed
:
252
/
255
.
0
green
:
67
/
255
.
0
blue
:
62
/
255
.
0
alpha
:
1
]
unit
:
@"元
"
defValue
:
[
NSNumber
numberWithInt
:
0
]];
[
self
.
complaint
loadDefaults
:
@"complaint.png"
title
:
@"
WIFI登录数"
bgColor
:
[
UIColor
colorWithRed
:
252
/
255
.
0
green
:
67
/
255
.
0
blue
:
62
/
255
.
0
alpha
:
1
]
unit
:
@"次
"
defValue
:
[
NSNumber
numberWithInt
:
0
]];
}
-
(
void
)
unload
...
...
@@ -66,9 +66,9 @@ DEF_OUTLET( VankeServiceBoardCell_iPhone, complaint );
if
(
nil
!=
summary
)
{
[
self
.
salesInfo
setData
:
summary
.
salesAmount
];
[
self
.
passenger
setData
:
summary
.
passengerFlowVolume
];
[
self
.
traffic
setData
:[
NSNumber
numberWithFloat
:
1
5
.
16
]];
[
self
.
traffic
setData
:[
NSNumber
numberWithFloat
:
1
22
]];
[
self
.
energy
setData
:[
NSNumber
numberWithInt
:
789
]];
[
self
.
complaint
setData
:
[
NSNumber
numberWithInt
:
103
]
];
[
self
.
complaint
setData
:
summary
.
wifiLoginTimes
];
}
}
...
...
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