Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
manager-app-sz
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
manager-app-sz
Commits
49f53b31
提交
49f53b31
authored
10月 30, 2017
作者:
吴强
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Merge branch 'master' of
git://192.168.1.116/bolan-root/frontend/manager-app-sz
into wq
# Conflicts: # src/models/login.js # src/routes/login.js #新做出来的界面,列表。
上级
b70a1ed2
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
76 行增加
和
23 行删除
+76
-23
local.properties
android/local.properties
+1
-1
fwInfo.js
src/routes/main/fwInfo.js
+0
-2
FlatListItem.js
src/routes/main/houseinfo/FlatListItem.js
+26
-16
listhouse.js
src/routes/main/houseinfo/listhouse.js
+20
-4
index.js
src/routes/main/index.js
+29
-0
没有找到文件。
android/local.properties
浏览文件 @
49f53b31
...
...
@@ -8,4 +8,4 @@
# For customization when using a Version Control System, please read the
# header note.
#Fri Oct 27 18:29:04 CST 2017
sdk.dir
=
D
\:\\
A
ppData
\\
Local
\\
Android
\\
sdk1
sdk.dir
=
D
\:\\
A
ndroid
\\
sdk
src/routes/main/fwInfo.js
浏览文件 @
49f53b31
...
...
@@ -13,7 +13,6 @@ class HouseList extends Component {
};
action
=
()
=>
{
console
.
log
(
'I am clicked!'
);
this
.
props
.
dispatch
(
NavigationActions
.
navigate
({
routeName
:
'ERJi'
,
}));
...
...
@@ -36,7 +35,6 @@ class HouseList extends Component {
});
}}
/
>
<
Button
onClick
=
{
this
.
action
}
>
Click
me
!<
/Button
>
<
ListHouContent
navigation
=
{
this
.
props
.
navigation
}
/
>
<
/View
>
);
...
...
src/routes/main/houseinfo/FlatListItem.js
浏览文件 @
49f53b31
import
React
,
{
PureComponent
}
from
'react'
;
import
{
TouchableOpacity
,
Text
,
View
,
StyleSheet
,
Dimensions
,
Image
}
from
'react-native'
;
import
{
Card
,
WingBlank
,
WhiteSpace
}
from
'antd-mobile'
;
const
totalWidth
=
Dimensions
.
get
(
'window'
).
width
;
class
FlatListItem
extends
PureComponent
{
...
...
@@ -11,28 +12,29 @@ class FlatListItem extends PureComponent {
return
(
<
TouchableOpacity
{...
this
.
props
}
style
=
{{
height
:
6
0
}}
style
=
{{
height
:
12
0
}}
onPress
=
{
this
.
onPress
}
>
<
View
style
=
{
styles
.
item
}
>
<
View
style
=
{
styles
.
width50
}
>
<
Text
style
=
{{
color
:
'#1BB7FF'
,
fontSize
:
16
}}
>
{
this
.
props
.
item
.
fangWuZuoLuo
}
<
/Text
>
<
/View
>
<
View
style
=
{
styles
.
nameView
}
>
<
Text
style
=
{
styles
.
nm
}
>
发布时间:
2017
/
10
/
27
<
/Text
>
<
Text
style
=
{
styles
.
nm1
}
>
点击量:
5
<
/Text
>
<
/View
>
<
/View
>
<
View
style
=
{{
marginBottom
:
10
}}
>
<
Text
style
=
{
styles
.
rightIcon
}
>
dddd
<
/Text
>
<
Image
style
=
{
styles
.
rightIcon
}
source
=
{{
uri
:
'right_07'
}}
/
>
<
/View
>
<
WingBlank
size
=
"lg"
>
<
WhiteSpace
size
=
"lg"
/>
<
Card
>
<
Card
.
Header
title
=
{
this
.
props
.
item
.
fangWuZuoLuo
}
extra
=
{
<
Text
style
=
{
Styles
.
cardText
}
>&
gt
;
&
gt
;
详情
<
/Text>
}
/>
<
Card
.
Body
>
<
Text
style
=
{
Styles
.
cardBodyText
}
>
编号
:
<
Text
style
=
{
Styles
.
cardBodyText2
}
>
{
this
.
props
.
item
.
fwBianMa
}
<
/Text></
Text
>
<
Text
style
=
{
Styles
.
cardBodyText
}
>
面积
:
<
Text
style
=
{
Styles
.
cardBodyText2
}
>
350502199210236034
<
/Text></
Text
>
<
Text
style
=
{
Styles
.
cardBodyText
}
>
产权人
:
<
Text
style
=
{
Styles
.
cardBodyText2
}
>
户主
<
/Text></
Text
>
<
/Card.Body
>
<
/Card
>
<
WhiteSpace
size
=
"lg"
/>
<
/WingBlank
>
<
/TouchableOpacity
>
);
}
}
const
s
tyles
=
StyleSheet
.
create
({
const
S
tyles
=
StyleSheet
.
create
({
row
:
{
height
:
60
,
borderBottomWidth
:
1
,
...
...
@@ -103,6 +105,14 @@ const styles = StyleSheet.create({
height
:
15
,
width
:
15
,
},
cardText
:
{
color
:
'#2196F3'
,
textAlign
:
'right'
,
},
cardBodyText
:
{
marginBottom
:
10
,
marginLeft
:
13
,
},
});
export
default
FlatListItem
;
src/routes/main/houseinfo/listhouse.js
浏览文件 @
49f53b31
import
React
,
{
Component
}
from
'react'
;
import
{
View
,
FlatList
,
Text
}
from
'react-native'
;
import
{
Card
,
WingBlank
,
WhiteSpace
}
from
'antd-mobile'
;
import
{
connect
}
from
'react-redux'
;
import
{
createAction
}
from
'../../../utils'
;
import
FlatListItem
from
'./FlatListItem'
;
...
...
@@ -22,7 +23,7 @@ class ListHouContent extends Component {
this
.
props
.
navigation
.
navigate
(
'HouseDetail'
,
{
id
});
};
getItemLayout
=
(
data
,
index
)
=>
(
{
length
:
60
,
offset
:
(
6
0
+
1
)
*
index
,
index
}
{
length
:
120
,
offset
:
(
12
0
+
1
)
*
index
,
index
}
);
/**
* 此函数用于为给定的item生成一个不重复的Key。
...
...
@@ -43,11 +44,27 @@ class ListHouContent extends Component {
);
// Footer布局
renderFooter
=
()
=>
(
<
View
><
Text
>
Footer
<
/Text></
View
>
<
WingBlank
size
=
"lg"
>
<
WhiteSpace
size
=
"lg"
/>
<
Card
>
<
Card
.
Body
>
<
Text
>
到底了!!!
<
/Text
>
<
/Card.Body
>
<
/Card
>
<
WhiteSpace
size
=
"lg"
/>
<
/WingBlank
>
);
// 空布局
renderEmptyView
=
()
=>
(
<
View
><
Text
>
EmptyView
<
/Text></
View
>
<
WingBlank
size
=
"lg"
>
<
WhiteSpace
size
=
"lg"
/>
<
Card
>
<
Card
.
Body
>
<
Text
>
当前无内容
<
/Text
>
<
/Card.Body
>
<
/Card
>
<
WhiteSpace
size
=
"lg"
/>
<
/WingBlank
>
);
// 下拉刷新
renderRefresh
=
()
=>
{
...
...
@@ -84,7 +101,6 @@ class ListHouContent extends Component {
onEndReached
=
{
this
.
onEndReached
}
ListHeaderComponent
=
{
this
.
renderHeader
}
ListFooterComponent
=
{
this
.
renderFooter
}
ItemSeparatorComponent
=
{
this
.
renderItemSeparatorComponent
}
ListEmptyComponent
=
{
this
.
renderEmptyView
}
refreshing
=
{
this
.
props
.
loading
}
onRefresh
=
{
this
.
renderRefresh
}
...
...
src/routes/main/index.js
浏览文件 @
49f53b31
...
...
@@ -4,6 +4,7 @@ import { TabNavigator } from 'react-navigation';
import
userInfoPageScreen
from
'./userinfopage'
;
import
fwInfo
from
'./fwInfo'
;
import
chatsIcon
from
'../../../image/chats-icon.png'
;
import
Empty
from
'../empty'
;
const
Content
=
TabNavigator
({
FWInfo
:
{
...
...
@@ -20,6 +21,34 @@ const Content = TabNavigator({
),
},
},
DSRInfo
:
{
screen
:
Empty
(
'权利人信息的新增,修改,还可以添加人口信息'
,
'DSRInfoScreen'
),
navigationOptions
:
{
lazy
:
true
,
tabBarLabel
:
'权利人信息'
,
// Note: By default the icon is only shown on iOS. Search the showIcon option below.
tabBarIcon
:
()
=>
(
<
Image
source
=
{
chatsIcon
}
style
=
{[
styles
.
icon
]}
/
>
),
},
},
QSInfo
:
{
screen
:
Empty
(
'权属信息的新增,修改,还可以勾选房子'
,
'DSRInfoScreen'
),
navigationOptions
:
{
lazy
:
true
,
tabBarLabel
:
'权属信息'
,
// Note: By default the icon is only shown on iOS. Search the showIcon option below.
tabBarIcon
:
()
=>
(
<
Image
source
=
{
chatsIcon
}
style
=
{[
styles
.
icon
]}
/
>
),
},
},
UserInfoPageScreen
:
{
screen
:
userInfoPageScreen
,
navigationOptions
:
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论