remove console.log

This commit is contained in:
Jay 2018-08-23 00:23:16 +08:00
parent 754c9f823f
commit a02212bbb7

View File

@ -132,13 +132,11 @@ r.put('/channel/:chid/opay/setting', checkSession, getChannelList, hasChannel('c
"target_amount" = $4, "target_amount" = $4,
"title" = $5` "title" = $5`
let values = [c.state.channel.id, sd, ed, amount, c.request.body.title] let values = [c.state.channel.id, sd, ed, amount, c.request.body.title]
let result = await c.db.query({ await c.db.query({
text, text,
values values
}) })
console.log(result)
c.obj = resObject('Success') c.obj = resObject('Success')
}) })