Authored by 毕凯

完善券ID解密

@@ -40,7 +40,7 @@ class CouponList extends global.yoho.BaseModel { @@ -40,7 +40,7 @@ class CouponList extends global.yoho.BaseModel {
40 } 40 }
41 41
42 receive(params) { 42 receive(params) {
43 - if (params.couponid) { 43 + if (params.couponid && !_.isNumber(params.couponid)) {
44 params.couponid = hashids.decode(params.couponid)[0]; 44 params.couponid = hashids.decode(params.couponid)[0];
45 } 45 }
46 let options = { 46 let options = {
@@ -11,8 +11,8 @@ const isProduction = process.env.NODE_ENV === 'production'; @@ -11,8 +11,8 @@ const isProduction = process.env.NODE_ENV === 'production';
11 const isTest = process.env.NODE_ENV === 'test'; 11 const isTest = process.env.NODE_ENV === 'test';
12 12
13 const domains = { 13 const domains = {
14 - api: 'http://api-test3.yohops.com:9999/',  
15 - service: 'http://service-test3.yohops.com:9999/', 14 + api: 'http://api.yoho.cn/',
  15 + service: 'http://service.yoho.cn/',
16 liveApi: 'http://testapi.live.yohops.com:9999/', 16 liveApi: 'http://testapi.live.yohops.com:9999/',
17 singleApi: 'http://api-test3.yohops.com:9999/', 17 singleApi: 'http://api-test3.yohops.com:9999/',
18 imSocket: 'ws://socket.yohobuy.com:10240', 18 imSocket: 'ws://socket.yohobuy.com:10240',
@@ -74,7 +74,7 @@ module.exports = { @@ -74,7 +74,7 @@ module.exports = {
74 maxFiles: 7 74 maxFiles: 7
75 }, 75 },
76 console: { 76 console: {
77 - level: 'info', 77 + level: 'debug',
78 colorize: 'all', 78 colorize: 'all',
79 prettyPrint: true 79 prettyPrint: true
80 } 80 }