Authored by 陈峰

Merge branch 'release/0606' into 'gray'

Release/0606



See merge request !1430
@@ -39,7 +39,7 @@ const _err510 = (req, res, code, err) => { @@ -39,7 +39,7 @@ const _err510 = (req, res, code, err) => {
39 page: 'error', 39 page: 'error',
40 title: '服务器繁忙 | Yoho!Buy有货 | 潮流购物逛不停', 40 title: '服务器繁忙 | Yoho!Buy有货 | 潮流购物逛不停',
41 pageHeader: headerModel.setNav({ 41 pageHeader: headerModel.setNav({
42 - navTitle: '服务器繁忙请稍后重试!' 42 + navTitle: err.message || '服务器繁忙请稍后重试!'
43 }), 43 }),
44 pageFooter: true, 44 pageFooter: true,
45 isErr: true 45 isErr: true
1 { 1 {
2 "name": "yohobuywap-node", 2 "name": "yohobuywap-node",
3 - "version": "6.6.11", 3 + "version": "6.6.12",
4 "private": true, 4 "private": true,
5 "description": "A New Yohobuy Project With Express", 5 "description": "A New Yohobuy Project With Express",
6 "repository": { 6 "repository": {
@@ -86,7 +86,7 @@ @@ -86,7 +86,7 @@
86 "xml2js": "^0.4.19", 86 "xml2js": "^0.4.19",
87 "yoho-express-session": "^2.0.0", 87 "yoho-express-session": "^2.0.0",
88 "yoho-md5": "^2.0.0", 88 "yoho-md5": "^2.0.0",
89 - "yoho-node-lib": "=0.6.15", 89 + "yoho-node-lib": "=0.6.16",
90 "yoho-zookeeper": "^1.0.9" 90 "yoho-zookeeper": "^1.0.9"
91 }, 91 },
92 "devDependencies": { 92 "devDependencies": {
@@ -64,11 +64,14 @@ class GoodsShowYasRpter { @@ -64,11 +64,14 @@ class GoodsShowYasRpter {
64 this.lastShowSkns = cacheTheShowSkns; 64 this.lastShowSkns = cacheTheShowSkns;
65 65
66 if (typeof _yas !== 'undefined' && this.reportParams.DATA && this.reportParams.DATA.length) { 66 if (typeof _yas !== 'undefined' && this.reportParams.DATA && this.reportParams.DATA.length) {
67 - window._yas.sendCustomInfo({  
68 - op: 'YB_SHOW_EVENT',  
69 - appop: 'YB_SHOW_EVENT',  
70 - param: JSON.stringify(this.reportParams)  
71 - }, true); 67 + setTimeout(function() {
  68 + window._yas.sendCustomInfo && window._yas.sendCustomInfo({
  69 + op: 'YB_SHOW_EVENT',
  70 + appop: 'YB_SHOW_EVENT',
  71 + param: JSON.stringify(this.reportParams)
  72 + }, true);
  73 + }, 1000);
  74 +
72 } 75 }
73 } 76 }
74 77