傅行帆 4 years ago
parent
commit
27af38caea
2 changed files with 5 additions and 4 deletions
  1. 4
    2
      src/pages/activity/editActivity.jsx
  2. 1
    2
      src/pages/property/bill/list/index.jsx

+ 4
- 2
src/pages/activity/editActivity.jsx View File

@@ -225,7 +225,8 @@ const BasicForm = props => {
225 225
                 message: '请选择活动时间',
226 226
               },
227 227
             ],
228
-          })(<RangePicker format="YYYY-MM-DD HH:mm" />)}
228
+          })(<RangePicker showTime={{ format: 'HH:mm' }}
229
+          format="YYYY-MM-DD HH:mm" />)}
229 230
         </Form.Item>
230 231
         <Form.Item label="活动地点">
231 232
           {getFieldDecorator('address', {
@@ -273,7 +274,8 @@ const BasicForm = props => {
273 274
                 message: '请选择报名时间',
274 275
               },
275 276
             ],
276
-          })(<RangePicker format="YYYY-MM-DD HH:mm" onChange={changeTime} />)}
277
+          })(<RangePicker showTime={{ format: 'HH:mm' }}
278
+          format="YYYY-MM-DD HH:mm" onChange={changeTime} />)}
277 279
         </Form.Item>
278 280
         {/* <Form.Item label="权重">
279 281
           {getFieldDecorator('heavy', {

+ 1
- 2
src/pages/property/bill/list/index.jsx View File

@@ -210,9 +210,8 @@ export default props => {
210 210
   }
211 211
 
212 212
   const collectionBill = row => {
213
-    console.log(row,"-----------")
214 213
     collectionBillList({ data: {billId: row.id}}).then(res => {
215
-      console.log(res,"222222")
214
+      notification.success({ message: '催缴成功' })
216 215
     })
217 216
   }
218 217