add-info.js
3.07 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
var $ = require('jquery'),
common = require('../../common/common');
var e = new common.edit('#addinfo-wrap'),
basicInfo = NETSALEDATA.baseProductInfo.baseProduct || '',
productExtBo = NETSALEDATA.productExtBo || '',
comfort = NETSALEDATA.specialAttrBo.wearSenses;
$('#saveAddInfo').on('click', function() {
e.submit('/goods/product/saveAfterSaleInfo', function(option) {
option.data = GOLABDATA.fire('LYaddInfo');
option.success = function(res) {
res = res.data;
if (res.code == '200') {
e.$tip(res.message, function() {}, 'growl-success');
} else {
e.$tip(res.message);
}
return false;
}
});
});
GOLABDATA.on("LYaddInfo", function() {
return e.submit('', function(option) {
option.data.productSkn = $('#productSkn').val();
option.data.style = option.data.style.split('|').join(',');
option.data.pattern = option.data.pattern.split('|').join(',');
option.data.makeCrafts = option.data.makeCrafts.split('|').join(',');
option.data.wearSense = sense();
function sense() {
var arr = [];
$('#wearSenseWrap').find('select').each(function() {
if ($(this).val()) {
arr.push({
id: $(this).attr('name'),
value: $(this).val()
});
}
});
return JSON.stringify(arr);
}
option.debug = true;
});
});
$.ajax({
type: 'POST',
url: '/goods/product/queryAfterSaleInfo',
data: {
displayPosition: 2,
categoryId: basicInfo.maxSortId
},
dataType: 'json',
success: function(res) {
var data = res.data;
data.style = basicInfo.style.replace(/,/g, "|");
data.pattern = basicInfo.pattern.replace(/,/g, "|");
data.brandModel = productExtBo.brandModel;
data.brandModelText = productExtBo.brandModelText;
data.brandSeriesText = productExtBo.brandSeriesText;
data.brandSeries = productExtBo.brandSeries;
data.makeCrafts = productExtBo.makeCrafts.replace(/,/g, "|");
data.salesPhrase = productExtBo.salesPhrase;
data.isHostsell = productExtBo.isHostsell;
if (comfort) {
$.each(data.productComfort.data, function(index, item) {
item.value = comfort[index].value;
});
}
$('#addinfo-wrap').html(common.util.__template2($('#addInfoTemp').html(), data));
e.on("bind", function() {
$('#brandModelSelect').on('change', function() {
$('#brandModel').val($(this).val());
});
$('#brandSeriesSelect').on('change', function() {
$('#brandSeries').val($(this).val());
});
});
$('#wearSenseWrap').find('select').each(function() {
$(this).val($(this).siblings('input:hidden').val());
});
new common.dropDown({
el: '#brandModelSelect',
ajax: 'queryAll4Select',
params: {
type: 1,
status: 1,
shopsId: basicInfo.shopId,
brandId: basicInfo.brandId
}
});
new common.dropDown({
el: '#brandSeriesSelect',
ajax: 'queryAll4Select',
params: {
type: 2,
status: 1,
shopsId: basicInfo.shopId,
brandId: basicInfo.brandId
}
});
if ($('.contentpanel').data('type') == 'info') {
$('form').find('input').prop('disabled', true);
$('form').find('select').prop('disabled', true);
$('form').find('.btn').addClass('disabled');
}
e.init();
}
})