Authored by 周少峰

Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into feature/web-list

@@ -136,7 +136,7 @@ function picCaptchaAjaxFn(page, callback) { @@ -136,7 +136,7 @@ function picCaptchaAjaxFn(page, callback) {
136 type: 'POST', 136 type: 'POST',
137 url: url, 137 url: url,
138 data: { 138 data: {
139 - code: $ca.val() 139 + verifyCode: $ca.val()
140 140
141 //mobile: $pn.val(), 141 //mobile: $pn.val(),
142 //area: $region.text().split('+')[1] 142 //area: $region.text().split('+')[1]
@@ -169,7 +169,7 @@ function msgCaptchaAjaxFn(page, callback) { @@ -169,7 +169,7 @@ function msgCaptchaAjaxFn(page, callback) {
169 type: 'POST', 169 type: 'POST',
170 url: url, 170 url: url,
171 data: { 171 data: {
172 - code: $ca.val(), 172 + verifyCode: $ca.val(),
173 mobile: $pn.val(), 173 mobile: $pn.val(),
174 area: $region.text().split('+')[1] 174 area: $region.text().split('+')[1]
175 } 175 }
@@ -465,7 +465,7 @@ exports.init = function(page) { @@ -465,7 +465,7 @@ exports.init = function(page) {
465 465
466 $regionSelect.change(function() { 466 $regionSelect.change(function() {
467 467
468 - $region.text('+' + $('#region').val()); 468 + $region.text($('#region').val());
469 469
470 validateRule(page, $pn, showErrTip); //验证 470 validateRule(page, $pn, showErrTip); //验证
471 }); 471 });
@@ -493,7 +493,7 @@ exports.init = function(page) { @@ -493,7 +493,7 @@ exports.init = function(page) {
493 data: { 493 data: {
494 area: $region.text().split('+')[1], 494 area: $region.text().split('+')[1],
495 mobile: $pn.val(), 495 mobile: $pn.val(),
496 - code: $ca.val() 496 + verifyCode: $ca.val()
497 } 497 }
498 }).then(function(data) { 498 }).then(function(data) {
499 if (data.code === 200) { 499 if (data.code === 200) {
@@ -5,16 +5,17 @@ @@ -5,16 +5,17 @@
5 */ 5 */
6 6
7 .product-search-page { 7 .product-search-page {
8 -  
9 - 8 + @import "shop-entry";
10 .goods-container { 9 .goods-container {
11 height: auto; 10 height: auto;
12 padding: 25px 0 0 0; 11 padding: 25px 0 0 0;
13 position: relative; 12 position: relative;
14 width: 1150px + 10px;//每列增加右边距 13 width: 1150px + 10px;//每列增加右边距
15 - }  
16 14
17 - @import "shop-entry"; 15 + .good-info {
  16 + width: 222px;
  17 + }
  18 + }
18 } 19 }
19 20
20 21