|
@@ -103,59 +103,60 @@ function header(props) {
|
103
|
103
|
</Button>
|
104
|
104
|
|
105
|
105
|
{/* 卡片内容,显示楼盘项目 */}
|
106
|
|
- <Card
|
107
|
|
- hoverable
|
108
|
|
- style={{ width: '300px', height: '400px', borderRadius: '12px', boxShadow: '0px 0px 20px #e7e7e7e7' }}
|
109
|
|
- cover={<img alt="example" src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" style={{ width: '299px', height: '203px' }}></img>}
|
110
|
|
- bodyStyle={{ padding: '10px' }}
|
111
|
|
- >
|
112
|
|
- <Row className={ Styles.cardText }>
|
113
|
|
- <Col span={7}>楼盘编号:</Col>
|
114
|
|
- <Col span={12}>S101</Col>
|
115
|
|
- <Col span={5}>
|
116
|
|
- <span className={ Styles.ediText }>编辑</span>
|
117
|
|
- <Icon type="form" style={{ color: '#C0C4CC' }}/>
|
|
106
|
+ <Row style={{ padding: ' 0 10px' }}>
|
|
107
|
+ <Col span={8}>
|
|
108
|
+ <Card
|
|
109
|
+ hoverable
|
|
110
|
+ style={{ minWidth: '400px', borderRadius: '12px',margin:'10px', boxShadow: '0px 0px 16px 2px rgba(0,0,0,0.12)', }}
|
|
111
|
+ cover={<img alt="example" src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" style={{ borderRadius: '12px 12px 0 0', width: '100%', height: '14vw' }}></img>}
|
|
112
|
+ bodyStyle={{ padding: '10px 20px' }}
|
|
113
|
+ >
|
|
114
|
+ <p className={Styles.cardText}>
|
|
115
|
+ <span className={Styles.title}>楼盘编号</span>
|
|
116
|
+ <span >:S101</span>
|
|
117
|
+ <span className={Styles.ediText}>
|
|
118
|
+ 编辑
|
|
119
|
+ <Icon type="form" style={{ color: '#C0C4CC', marginLeft: '10px' }} />
|
|
120
|
+ </span>
|
|
121
|
+ </p>
|
|
122
|
+ <p className={Styles.cardText}>
|
|
123
|
+ <span className={Styles.title}>楼盘名称</span>
|
|
124
|
+ <span >:城开花园</span>
|
|
125
|
+ </p>
|
|
126
|
+ <p className={Styles.cardItem}>
|
|
127
|
+ <span className={Styles.title}>均价</span>
|
|
128
|
+ <span >
|
|
129
|
+ :约<span style={{ color: '#FF0707', fontSize: '20px' }}> 111 </span>元/m
|
|
130
|
+ </span>
|
|
131
|
+ </p>
|
|
132
|
+ <p className={Styles.cardItem}>
|
|
133
|
+ <span className={Styles.title}>项目地址</span>
|
|
134
|
+ <span >:顾戴路1801弄</span>
|
|
135
|
+ </p>
|
|
136
|
+ <p className={Styles.cardItem}>
|
|
137
|
+ <span className={Styles.title}>发布状态</span>
|
|
138
|
+ <span >:已发布</span>
|
|
139
|
+ </p>
|
|
140
|
+ <p className={Styles.cardItem}>
|
|
141
|
+ <span className={Styles.title}>录入时间</span>
|
|
142
|
+ <span >:2019-08-28 17</span>
|
|
143
|
+ </p>
|
|
144
|
+ <p style={{ margin: '15px 0', position: 'relative', fontSize: '18px' }}>
|
|
145
|
+ <span style={{ color: '#1990FF' }}>
|
|
146
|
+ 取消发布
|
|
147
|
+ <Icon type="close-circle" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
|
|
148
|
+ </span>
|
|
149
|
+ <span style={{
|
|
150
|
+ color: '#FF4A4A', position: 'absolute',
|
|
151
|
+ right: '0'
|
|
152
|
+ }} >
|
|
153
|
+ 删除
|
|
154
|
+ <Icon type="rest" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
|
|
155
|
+ </span>
|
|
156
|
+ </p>
|
|
157
|
+ </Card>
|
118
|
158
|
</Col>
|
119
|
159
|
</Row>
|
120
|
|
- <Row>
|
121
|
|
- <Col span={7}>楼盘名称:</Col>
|
122
|
|
- <Col span={17}>城开花园</Col>
|
123
|
|
- </Row>
|
124
|
|
- <Row>
|
125
|
|
- <Col span={7}>均 价:</Col>
|
126
|
|
- <Col span={17}>
|
127
|
|
- 约<span style={{ color: '#FF0707', fontWeight: 'bold' }}>111</span>元/m
|
128
|
|
- </Col>
|
129
|
|
- </Row>
|
130
|
|
- <Row>
|
131
|
|
- <Col span={7}>项目地址:</Col>
|
132
|
|
- <Col span={17}>顾戴路1801弄</Col>
|
133
|
|
- </Row>
|
134
|
|
- <Row>
|
135
|
|
- <Col span={7}>发布状态:</Col>
|
136
|
|
- <Col span={17}>已发布</Col>
|
137
|
|
- </Row>
|
138
|
|
- <Row>
|
139
|
|
- <Col span={7}>录入时间:</Col>
|
140
|
|
- <Col span={17}>2019-08-28 17</Col>
|
141
|
|
- </Row>
|
142
|
|
- <Row style={{ marginTop: '15px' }}>
|
143
|
|
- <Col span={7}>
|
144
|
|
- <span style={{ color: '#1990FF', fontWeight: 'bold' }}>
|
145
|
|
- 取消发布
|
146
|
|
- </span>
|
147
|
|
- <Icon type="close-circle" style={{ color: '#C0C4CC' }} />
|
148
|
|
- </Col>
|
149
|
|
- <Col span={12}></Col>
|
150
|
|
- <Col span={5}>
|
151
|
|
- <span style={{ color: '#FF4A4A', fontWeight: 'bold' }}>
|
152
|
|
- 删除
|
153
|
|
- </span>
|
154
|
|
- <Icon type="rest" style={{ color: '#C0C4CC' }} />
|
155
|
|
- </Col>
|
156
|
|
- </Row>
|
157
|
|
- </Card>
|
158
|
|
-
|
159
|
160
|
{/* 分页 */}
|
160
|
161
|
<div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: '30px' }}>
|
161
|
162
|
<Pagination showQuickJumper defaultCurrent={1} total={500} onChange={onChange} />
|