|
@@ -49,6 +49,16 @@ var limitProductCode, |
|
@@ -49,6 +49,16 @@ var limitProductCode, |
49
|
// 限购商品的skn。只有限购商品时才会设置。
|
49
|
// 限购商品的skn。只有限购商品时才会设置。
|
50
|
skn;
|
50
|
skn;
|
51
|
|
51
|
|
|
|
52
|
+//禁用数字编辑
|
|
|
53
|
+function disableNumEdit() {
|
|
|
54
|
+ var $numBtn = $('.chose-panel').find('.num .btn>.iconfont');
|
|
|
55
|
+
|
|
|
56
|
+ //添加disabled样式
|
|
|
57
|
+ $numBtn.hasClass('disabled') ? null : $numBtn.addClass('disabled');
|
|
|
58
|
+
|
|
|
59
|
+ $yohoPage.off('touchstart', '.btn-minus');
|
|
|
60
|
+ $yohoPage.off('touchstart', '.btn-plus');
|
|
|
61
|
+}
|
52
|
|
62
|
|
53
|
// 初始化购物车面板显示
|
63
|
// 初始化购物车面板显示
|
54
|
function init() {
|
64
|
function init() {
|
|
@@ -94,6 +104,7 @@ function setEditModeWithSknId(sknId, isThisGoodSelected) { |
|
@@ -94,6 +104,7 @@ function setEditModeWithSknId(sknId, isThisGoodSelected) { |
94
|
* @return {undefined}
|
104
|
* @return {undefined}
|
95
|
*/
|
105
|
*/
|
96
|
function setLimitGoodModeWithSknId(code, sknId) {
|
106
|
function setLimitGoodModeWithSknId(code, sknId) {
|
|
|
107
|
+ disableNumEdit();
|
97
|
$('#chose-btn-sure').html('立即购买');
|
108
|
$('#chose-btn-sure').html('立即购买');
|
98
|
limitProductCode = code;
|
109
|
limitProductCode = code;
|
99
|
skn = sknId;
|
110
|
skn = sknId;
|
|
@@ -127,16 +138,6 @@ function checkColorSizeNum() { |
|
@@ -127,16 +138,6 @@ function checkColorSizeNum() { |
127
|
return true;
|
138
|
return true;
|
128
|
}
|
139
|
}
|
129
|
|
140
|
|
130
|
-//禁用数字编辑
|
|
|
131
|
-function disableNumEdit() {
|
|
|
132
|
- var $numBtn = $('.chose-panel').find('.num .btn>.iconfont');
|
|
|
133
|
-
|
|
|
134
|
- //添加disabled样式
|
|
|
135
|
- $numBtn.hasClass('disabled') ? null : $numBtn.addClass('disabled');
|
|
|
136
|
-
|
|
|
137
|
- $yohoPage.off('touchstart', '.btn-minus');
|
|
|
138
|
- $yohoPage.off('touchstart', '.btn-plus');
|
|
|
139
|
-}
|
|
|
140
|
|
141
|
|
141
|
|
142
|
|
142
|
function show(html, cb) {
|
143
|
function show(html, cb) {
|