傅行帆 4 年前
父节点
当前提交
27af38caea
共有 2 个文件被更改,包括 5 次插入4 次删除
  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 查看文件

225
                 message: '请选择活动时间',
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
         </Form.Item>
230
         </Form.Item>
230
         <Form.Item label="活动地点">
231
         <Form.Item label="活动地点">
231
           {getFieldDecorator('address', {
232
           {getFieldDecorator('address', {
273
                 message: '请选择报名时间',
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
         </Form.Item>
279
         </Form.Item>
278
         {/* <Form.Item label="权重">
280
         {/* <Form.Item label="权重">
279
           {getFieldDecorator('heavy', {
281
           {getFieldDecorator('heavy', {

+ 1
- 2
src/pages/property/bill/list/index.jsx 查看文件

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