Commit 4f1dc278 authored by Achilles's avatar Achilles

首页 社区2049 中点击进入当前客流后,查阅客流详细分布功能未实现;应该类似销售展示饼状图

parent ce6ab0c0
...@@ -184,7 +184,18 @@ ON_SIGNAL3( VankeFloorListBoard_iPhone, searchBar, signal ) ...@@ -184,7 +184,18 @@ ON_SIGNAL3( VankeFloorListBoard_iPhone, searchBar, signal )
ON_SIGNAL3( VankeFloorListBoardCell_iPhone, mask, signal ) ON_SIGNAL3( VankeFloorListBoardCell_iPhone, mask, signal )
{ {
FloorCellValue *cellValue = signal.sourceCell.data; FloorCellValue *cellValue = signal.sourceCell.data;
[self showDetailView:cellValue];
}
#pragma mark VankePassengerListBoardCell_iPhone
ON_SIGNAL3( VankePassengerListBoardCell_iPhone, mask, signal )
{
FloorCellValue *cellValue = signal.sourceCell.data;
[self showDetailView:cellValue];
}
-(void) showDetailView: (FloorCellValue*) cellValue {
if (self.listType == CELL_TYPE_PASSENGER) { if (self.listType == CELL_TYPE_PASSENGER) {
VankePassengerDetailBoard_iPhone * board = [VankePassengerDetailBoard_iPhone board]; VankePassengerDetailBoard_iPhone * board = [VankePassengerDetailBoard_iPhone board];
board.data = cellValue.project; board.data = cellValue.project;
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
height: 100%; height: 100%;
position: absolute; position: absolute;
background-color: white; background-color: white;
image-mode: fit; image-mode: fill;
image-src: url(login_bg.png); image-src: url(login_bg.png);
} }
......
...@@ -90,7 +90,7 @@ ON_CREATE_VIEWS( signal ) ...@@ -90,7 +90,7 @@ ON_CREATE_VIEWS( signal )
self.list.total = 1; self.list.total = 1;
BeeUIScrollItem * item = self.list.items[0]; BeeUIScrollItem * item = self.list.items[0];
item.size = CGSizeMake( self.list.width, 100); item.size = CGSizeMake( self.list.width, 150);
item.order = 0; item.order = 0;
item.rule = BeeUIScrollLayoutRule_Fall; item.rule = BeeUIScrollLayoutRule_Fall;
item.clazz = [NoDataCell_iPhoneCell class]; item.clazz = [NoDataCell_iPhoneCell class];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment