周立森 5 anni fa
parent
commit
50a4e42a54

+ 1
- 1
src/pages/activity/drainage/Detail.jsx Vedi File

@@ -156,7 +156,7 @@ const header = (props) => {
156 156
       <Form layout="inline" onSubmit={e => handleSubmit(e, props)}>
157 157
         <Form.Item>
158 158
         {getFieldDecorator('time')(
159
-            <RangePicker showTime format="YYYY-MM-DD" 
159
+            <RangePicker showTime format="YYYY-MM-DD HH:mm:ss" 
160 160
             showTime
161 161
             onChange={onChangetime}
162 162
             />,

+ 1
- 1
src/pages/activity/groupActivity/list.jsx Vedi File

@@ -282,7 +282,7 @@ const header = props => {
282 282
       <AuthButton name="admin.taShareActivity.post" noRight={null}>
283 283
         <Button type="danger" className={styles.addBtn} onClick={toEditActivity()}>新增</Button>
284 284
       </AuthButton>
285
-      <Table dataSource={data.records} columns={columns} pagination={false} rowKey="activityList" />
285
+      <Table style={{marginTop:'30px'}} dataSource={data.records} columns={columns} pagination={false} rowKey="activityList" />
286 286
       <div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: '30px' }}>
287 287
         <Pagination showQuickJumper defaultCurrent={1} total={data.total} onChange={changePageNum} current={data.current} />
288 288
       </div>

+ 1
- 1
src/pages/building/list/index.jsx Vedi File

@@ -324,7 +324,7 @@ function body(props) {
324 324
       </Row>
325 325
       {/* 分页 */}
326 326
       <div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: '30px' }}>
327
-        <Pagination showQuickJumper defaultCurrent={1} total={dataSource.total} onChange={onChange} pageSize={dataSource.size} current={dataSource.current}/>
327
+        <Pagination showQuickJumper defaultCurrent={1} total={dataSource.total} onChange={onChange} pageSize={dataSource.size} />
328 328
       </div>
329 329
     </>
330 330
   );