Edit.js
7.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
'use strict';
var $ = require('jquery'),
common = require('../../../common/common');
//require('../util/custom.js');
/*
* 获取业务数据
*/
window.NETSALEDATA= window.ViewModel.data;
var param = location.href.match(/(edit|info)\/(\d+)/)[2];
//如果是info页,所有input btn置灰
if ($('.contentpanel').data('type') == 'info') {
$('.contentpanel').find('input').prop('disabled', true);
$('.contentpanel').find('.btn').addClass('disabled');
}
$("#productSkn").val(window.NETSALEDATA.baseProductInfo.baseProduct.productSkn);
console.log(window.NETSALEDATA);
// window.GOLABDATA = {
// on: function(key, callback) {
// var that = this;
// if (!that.registerEvent) {
// that.registerEvent = {};
// }
// if (!that.registerEvent[key]) {
// that.registerEvent[key] = [];
// }
// if (that.registerEvent[key].indexOf(callback) == -1) {
// that.registerEvent[key].push(callback);
// }
// },
// fire: function(key) {
// var that = this;
// if (!this.registerEvent) return;
// if (key) {
// if (!this.registerEvent[key]) return;
// var listeners = that.registerEvent[key];
// var args = [].slice.call(arguments, 1);
// for (var i in listeners) {
// return listeners[i].apply(this, args);
// }
// } else {
// var map = {},
// args = [].slice.call(arguments, 1),
// listeners = null;
// for (var key in that.registerEvent) {
// listeners = that.registerEvent[key];
// for (var i in listeners) {
// map[key] = listeners[i].apply(this, args);
// }
// }
// return map;
// }
// }
// };
//获取skn
// if (NETSALEDATA && NETSALEDATA.baseProductInfo && NETSALEDATA.baseProductInfo.baseProduct) {
// $('#productSkn').val(NETSALEDATA.baseProductInfo.baseProduct.productSkn);
// } else {
// common.util.__tip("SKN不存在");
// }
/*加载其他模块*/
require('./partials/basic-info');
require('./partials/editor_recommend');
require('./partials/model');
require('./partials/add-info');
require('./partials/netsale-ty.js');
if ($('.contentpanel').data('type') == 'info') {
$('.contentpanel').find('input').prop('disabled', true);
$('.contentpanel').find('.btn').addClass('disabled');
$('.panel-footer').remove();
$('#edit-recommender, #edit-descriptioner').prop('contenteditable', false);
$('#saveAllInfo').hide();
$(".goods-img i").remove();
$("#search-key-list").hide();
$(".brand-list").hide();
// 上架审核的查看页面
if ($('.contentpanel').data('action') != 'audit') {
$('#passBtn').hide();
$('#rejectBtn').hide();
} else {
var status = NETSALEDATA.baseProductInfo.baseProduct.status;
//待审核状态 或者 再上架待审核
if (status != 2 && status != 5) {
$('#passBtn').hide();
$('#rejectBtn').hide();
}
}
} else {
$('#backBtn').hide();
$('#passBtn').hide();
$('#rejectBtn').hide();
}
window.saveAllInfoCondition=function(){
if(window.EXECUTRCNT==8){
window.IS_OVER=true;
if(window.WARNMSG == ""){
common.util.__tip("商品保存成功", 'success');
history.go(-1);
}else{
common.util.__tip(window.WARNMSG, 'danger');
window.WARNMSG="";
window.EXECUTRCNT = 0;
}
}
}
window.IS_OVER = true;
window.EXECUTRCNT = 0;
window.WARNMSG = "";
//保存完整网销信息
// var e = new common.edit('#netsaleAllInfo');
$(document).on("click", "#saveAllInfo", function() {
window.IS_OVER = false;
window.EXECUTRCNT = 0;
window.WARNMSG = "";
if($.trim($("#productName").val()) == ""){
window.IS_OVER = true;
common.util.__tip("商品名称为空", 'warning');
}else{
$("#saveBasicInfo").click();
$("#fenMainSave").click();
$("#btn-descriptioner").click();
/*$("#add-saveBtn").click();*/
$("#propertySave").click();
/*$("#sort-save").click();*/
$("#save-searchKey").click();
$("#saveAddInfo").click();
$("#btn-recommand").click();
$("#save-urlList").click();
$("#modelTry-save").click();
}
// if($.trim($("txt").val())){
// // $("#a").add("#b").add("..")....click();
// }else{
// alert("ziduan buweikong");
// }
// 此功能暂时停止使用
// var data = {};
// var error = '';
// var allData = GOLABDATA.fire();
// $.each(allData, function(key, value) {
// if (typeof value == 'string') {
// console.log(value);
// error += value;
// return;
// }
// $.extend(data, value, true);
// });
// if (error !== '') {
// common.util.__tip(error, 'warning');
// } else {
// e.submit('/goods/product/saveNetSaleAllInfo', function(option) {
// option.data = data;
// option.success = function(res) {
// res = res;
// if (res.code == '200') {
// e.$tip(res.message, function() {
// history.go(-1);
// }, 'growl-success');
// } else {
// e.$tip(res.message);
// }
// return false;
// }
// });
// }
});
var Bll = {
toast: function(content, fn) {
common.dialog.confirm("温馨提示", content, function() {
common.util.__ajax({
url: '/supplier/baseproduct/auditReject',
data: fn()
}, function() {
//g.reload();
//loadTab();
history.go(-1);
});
});
}
}
// 单个驳回
$(document).on("click", "#rejectBtn", function() {
//auditOperation([],3,)
var data = function() {
var reason = $('#reason').val();
if (reason === '' || $.trim(reason) === '') {
return "请填写驳回原因";
}
return {
productSknList: JSON.stringify([NETSALEDATA.baseProductInfo.baseProduct.productSkn]),
targetStatus: 3, // 驳回
rejectReason: reason
};
}
Bll.toast($("#template").html(), data);
});
// 单个通过
$(document).on("click", "#passBtn", function() {
//auditOperation([],3,)
var data = function() {
return {
productSknList: JSON.stringify([NETSALEDATA.baseProductInfo.baseProduct.productSkn]),
targetStatus: 4, //通过
rejectReason: ""
};
}
Bll.toast("确定要通过该申请吗?", data);
});
//类似描点跳转,描点会影响history.go(-1)
$('.floatnav').on('click', 'li', function() {
var name = $(this).attr('name');
//控制隐藏缩放
var idx= name.replace("position","");
var idxName= "";
if(idx >= 9 && idx != 14){
idxName = "position9";
}else{
idxName = name ;
}
if(parseInt(idx) >= 8 && idx != 14){
$('.netsale-position[name="' + idxName + '"]').parent().next().css("display","");
$('.netsale-position[name="' + idxName + '"]').parent().next().next().css("display","");
$('.netsale-position[name="' + idxName + '"]').parent().find(".tooltips").find("i").removeClass("fa-plus").addClass("fa-minus");
$('.netsale-position[name="' + idxName + '"]').parent().find(".tooltips").removeClass("maximize")
if(parseInt(idx) > 8){
$('.netsale-position[name="position9"]').parent().next().find(".panel-body").css("display","");
$('.netsale-position[name="position9"]').parent().next().find(".panel-footer").css("display","");
}
} else if (idx == 14) {
$('.netsale-position[name="' + idxName + '"]').parent().next().css("display","");
$('.netsale-position[name="' + idxName + '"]').parent().next().next().css("display","");
$('.netsale-position[name="' + idxName + '"]').parent().find(".tooltips").find("i").removeClass("fa-plus").addClass("fa-minus");
$('.netsale-position[name="' + idxName + '"]').parent().find(".tooltips").removeClass("maximize")
$('.netsale-position[name="position14"]').parent().next().find(".panel-body").css("display","");
$('.netsale-position[name="position14"]').parent().next().find(".panel-footer").css("display","");
}
var scrollTop = $('.netsale-position[name="' + name + '"]').offset().top;
$(window).scrollTop(scrollTop);
return false;
});
//导航样式
$('.floatnav').on('mouseenter', function() {
$('.floatnav').addClass('show');
}).on('mouseleave', function() {
$('.floatnav').removeClass('show');
});
if (location.hash) {
var hashPos = location.hash.substring(1);
setTimeout(function() {
$('.floatnav').find('li[data-pos="' + hashPos + '"]').trigger('click');
}, 500);
}