1
|
var $ = require('jquery'),
|
1
|
var $ = require('jquery'),
|
2
|
- util = require('../util');
|
2
|
+ common = require('../../../../common/common');
|
3
|
|
3
|
|
4
|
var validator = function(option) {
|
4
|
var validator = function(option) {
|
5
|
this.option = option || {};
|
5
|
this.option = option || {};
|
|
@@ -33,12 +33,12 @@ validator.prototype = { |
|
@@ -33,12 +33,12 @@ validator.prototype = { |
33
|
// 校验店招模块
|
33
|
// 校验店招模块
|
34
|
validatorShopBanner: function(moduleData) {
|
34
|
validatorShopBanner: function(moduleData) {
|
35
|
if(moduleData === undefined) {
|
35
|
if(moduleData === undefined) {
|
36
|
- util.__tip('店招模块装修数据为空,请先编辑模块信息!', 'warning');
|
36
|
+ common.util.__tip('店招模块装修数据为空,请先编辑模块信息!', 'warning');
|
37
|
return false;
|
37
|
return false;
|
38
|
}
|
38
|
}
|
39
|
|
39
|
|
40
|
if(! moduleData[0].pic) {
|
40
|
if(! moduleData[0].pic) {
|
41
|
- util.__tip('店招图片地址为空,请确认!', 'warning');
|
41
|
+ common.util.__tip('店招图片地址为空,请确认!', 'warning');
|
42
|
return false;
|
42
|
return false;
|
43
|
}
|
43
|
}
|
44
|
|
44
|
|
|
@@ -48,12 +48,12 @@ validator.prototype = { |
|
@@ -48,12 +48,12 @@ validator.prototype = { |
48
|
// 校验单图模块
|
48
|
// 校验单图模块
|
49
|
validateSingleImage: function(moduleData) {
|
49
|
validateSingleImage: function(moduleData) {
|
50
|
if(moduleData === undefined) {
|
50
|
if(moduleData === undefined) {
|
51
|
- util.__tip('单图模块装修内容为空,请先编辑模块信息!', 'warning');
|
51
|
+ common.util.__tip('单图模块装修内容为空,请先编辑模块信息!', 'warning');
|
52
|
return false;
|
52
|
return false;
|
53
|
}
|
53
|
}
|
54
|
|
54
|
|
55
|
if(! moduleData[0].pic) {
|
55
|
if(! moduleData[0].pic) {
|
56
|
- util.__tip('一张图模块中图片地址为空,请确认!', 'warning');
|
56
|
+ common.util.__tip('一张图模块中图片地址为空,请确认!', 'warning');
|
57
|
return false;
|
57
|
return false;
|
58
|
}
|
58
|
}
|
59
|
|
59
|
|
|
@@ -65,7 +65,7 @@ validator.prototype = { |
|
@@ -65,7 +65,7 @@ validator.prototype = { |
65
|
}
|
65
|
}
|
66
|
|
66
|
|
67
|
if(! resource) {
|
67
|
if(! resource) {
|
68
|
- util.__tip('一张图模块中关联数据为空,请确认!', 'warning');
|
68
|
+ common.util.__tip('一张图模块中关联数据为空,请确认!', 'warning');
|
69
|
return false;
|
69
|
return false;
|
70
|
}
|
70
|
}
|
71
|
|
71
|
|
|
@@ -76,7 +76,7 @@ validator.prototype = { |
|
@@ -76,7 +76,7 @@ validator.prototype = { |
76
|
|
76
|
|
77
|
// 校验是否是内网地址
|
77
|
// 校验是否是内网地址
|
78
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
78
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
79
|
- util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
79
|
+ common.util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
80
|
return false;
|
80
|
return false;
|
81
|
}
|
81
|
}
|
82
|
|
82
|
|
|
@@ -86,13 +86,13 @@ validator.prototype = { |
|
@@ -86,13 +86,13 @@ validator.prototype = { |
86
|
// 校验标题模块
|
86
|
// 校验标题模块
|
87
|
validateTitle: function(moduleData) {
|
87
|
validateTitle: function(moduleData) {
|
88
|
if(moduleData === undefined) {
|
88
|
if(moduleData === undefined) {
|
89
|
- util.__tip('标题模块内容为空,请先编辑模块信息!', 'warning');
|
89
|
+ common.util.__tip('标题模块内容为空,请先编辑模块信息!', 'warning');
|
90
|
return false;
|
90
|
return false;
|
91
|
}
|
91
|
}
|
92
|
|
92
|
|
93
|
var title = moduleData[0].text;
|
93
|
var title = moduleData[0].text;
|
94
|
if(!title || title.trim().length === 0) {
|
94
|
if(!title || title.trim().length === 0) {
|
95
|
- util.__tip('标题模块的标题内容不能为空,请确认!', 'warning');
|
95
|
+ common.util.__tip('标题模块的标题内容不能为空,请确认!', 'warning');
|
96
|
return false;
|
96
|
return false;
|
97
|
}
|
97
|
}
|
98
|
|
98
|
|
|
@@ -105,7 +105,7 @@ validator.prototype = { |
|
@@ -105,7 +105,7 @@ validator.prototype = { |
105
|
|
105
|
|
106
|
// 未填写关联内容
|
106
|
// 未填写关联内容
|
107
|
if(!resource) {
|
107
|
if(!resource) {
|
108
|
- util.__tip('标题模块选择了关联类型,但未选择关联内容,请确认!', 'warning');
|
108
|
+ common.util.__tip('标题模块选择了关联类型,但未选择关联内容,请确认!', 'warning');
|
109
|
return false;
|
109
|
return false;
|
110
|
}
|
110
|
}
|
111
|
|
111
|
|
|
@@ -116,7 +116,7 @@ validator.prototype = { |
|
@@ -116,7 +116,7 @@ validator.prototype = { |
116
|
|
116
|
|
117
|
// 校验是否是内网地址
|
117
|
// 校验是否是内网地址
|
118
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
118
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
119
|
- util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
119
|
+ common.util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
120
|
return false;
|
120
|
return false;
|
121
|
}
|
121
|
}
|
122
|
|
122
|
|
|
@@ -127,7 +127,7 @@ validator.prototype = { |
|
@@ -127,7 +127,7 @@ validator.prototype = { |
127
|
validateMultiImage: function(moduleData, moduleName) {
|
127
|
validateMultiImage: function(moduleData, moduleName) {
|
128
|
var _self = this;
|
128
|
var _self = this;
|
129
|
if(moduleData === undefined) {
|
129
|
if(moduleData === undefined) {
|
130
|
- util.__tip(moduleName + "内容为空,请先编辑模块信息!", 'warning');
|
130
|
+ common.util.__tip(moduleName + "内容为空,请先编辑模块信息!", 'warning');
|
131
|
return false;
|
131
|
return false;
|
132
|
}
|
132
|
}
|
133
|
|
133
|
|
|
@@ -137,7 +137,7 @@ validator.prototype = { |
|
@@ -137,7 +137,7 @@ validator.prototype = { |
137
|
var resource = data.resource;
|
137
|
var resource = data.resource;
|
138
|
|
138
|
|
139
|
if(!data.pic) {
|
139
|
if(!data.pic) {
|
140
|
- util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中图片地址为空,请确认!', 'warning');
|
140
|
+ common.util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中图片地址为空,请确认!', 'warning');
|
141
|
validateResult = false;
|
141
|
validateResult = false;
|
142
|
return;
|
142
|
return;
|
143
|
}
|
143
|
}
|
|
@@ -147,7 +147,7 @@ validator.prototype = { |
|
@@ -147,7 +147,7 @@ validator.prototype = { |
147
|
}
|
147
|
}
|
148
|
|
148
|
|
149
|
if(!resource) {
|
149
|
if(!resource) {
|
150
|
- util.__tip(moduleName + "中,第" + (index + 1) + "条装修内容选择了关联类型,但未选择关联内容,请确认!", 'warning');
|
150
|
+ common.util.__tip(moduleName + "中,第" + (index + 1) + "条装修内容选择了关联类型,但未选择关联内容,请确认!", 'warning');
|
151
|
validateResult = false;
|
151
|
validateResult = false;
|
152
|
return;
|
152
|
return;
|
153
|
}
|
153
|
}
|
|
@@ -157,7 +157,7 @@ validator.prototype = { |
|
@@ -157,7 +157,7 @@ validator.prototype = { |
157
|
}
|
157
|
}
|
158
|
|
158
|
|
159
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
159
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
160
|
- util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中的关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
160
|
+ common.util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中的关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
161
|
validateResult = false;
|
161
|
validateResult = false;
|
162
|
return;
|
162
|
return;
|
163
|
}
|
163
|
}
|
|
@@ -168,17 +168,17 @@ validator.prototype = { |
|
@@ -168,17 +168,17 @@ validator.prototype = { |
168
|
|
168
|
|
169
|
validateVideo: function(moduleData) {
|
169
|
validateVideo: function(moduleData) {
|
170
|
if(moduleData == undefined) {
|
170
|
if(moduleData == undefined) {
|
171
|
- util.__tip('直播模块内容为空,请先编辑!', 'warning');
|
171
|
+ common.util.__tip('直播模块内容为空,请先编辑!', 'warning');
|
172
|
return false;
|
172
|
return false;
|
173
|
}
|
173
|
}
|
174
|
|
174
|
|
175
|
if(! moduleData[0].pic) {
|
175
|
if(! moduleData[0].pic) {
|
176
|
- util.__tip('直播模块中,直播封面图为空,请确认!', 'warning');
|
176
|
+ common.util.__tip('直播模块中,直播封面图为空,请确认!', 'warning');
|
177
|
return false;
|
177
|
return false;
|
178
|
}
|
178
|
}
|
179
|
|
179
|
|
180
|
if(! moduleData[0].video) {
|
180
|
if(! moduleData[0].video) {
|
181
|
- util.__tip('直播模块中,直播地址为空,请确认!', 'warning');
|
181
|
+ common.util.__tip('直播模块中,直播地址为空,请确认!', 'warning');
|
182
|
return false;
|
182
|
return false;
|
183
|
}
|
183
|
}
|
184
|
|
184
|
|
|
@@ -189,13 +189,13 @@ validator.prototype = { |
|
@@ -189,13 +189,13 @@ validator.prototype = { |
189
|
validateSkn: function(skn) {
|
189
|
validateSkn: function(skn) {
|
190
|
var _self = this;
|
190
|
var _self = this;
|
191
|
if(! $.isNumeric(skn)) {
|
191
|
if(! $.isNumeric(skn)) {
|
192
|
- util.__tip('[' + skn + ']不是数字,请输入正确格式的SKN!', 'warning');
|
192
|
+ common.util.__tip('[' + skn + ']不是数字,请输入正确格式的SKN!', 'warning');
|
193
|
return false;
|
193
|
return false;
|
194
|
}
|
194
|
}
|
195
|
|
195
|
|
196
|
var result = true;
|
196
|
var result = true;
|
197
|
|
197
|
|
198
|
- util.__ajax({
|
198
|
+ common.util.__ajax({
|
199
|
url: '/shop/ShopsDecoratorRest/findProductBySKN',
|
199
|
url: '/shop/ShopsDecoratorRest/findProductBySKN',
|
200
|
data: {
|
200
|
data: {
|
201
|
productSkn: skn,
|
201
|
productSkn: skn,
|
|
@@ -204,13 +204,13 @@ validator.prototype = { |
|
@@ -204,13 +204,13 @@ validator.prototype = { |
204
|
async: false
|
204
|
async: false
|
205
|
}, function(resp) {
|
205
|
}, function(resp) {
|
206
|
if(resp.code != 200) {
|
206
|
if(resp.code != 200) {
|
207
|
- util.__tip(resp.message, 'warning');
|
207
|
+ common.util.__tip(resp.message, 'warning');
|
208
|
result = false;
|
208
|
result = false;
|
209
|
return;
|
209
|
return;
|
210
|
}
|
210
|
}
|
211
|
|
211
|
|
212
|
if(!resp.data) {
|
212
|
if(!resp.data) {
|
213
|
- util.__tip('店铺下不包含该SKN[' + skn + '],请确保SKN已上架且有库存!', 'warning');
|
213
|
+ common.util.__tip('店铺下不包含该SKN[' + skn + '],请确保SKN已上架且有库存!', 'warning');
|
214
|
result = false;
|
214
|
result = false;
|
215
|
return;
|
215
|
return;
|
216
|
}
|
216
|
}
|