add-info.js
3.15 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
var $ = require('jquery'),
common = require('../../common/common');
var e = new common.edit('#addinfo-wrap'),
basicInfo = NETSALEDATA.baseProductInfo.baseProduct || '',
productExtBo = NETSALEDATA.productExtBo || '',
comfort = NETSALEDATA.specialAttrBo ? 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) {
$.each(option.data, function(key, value) {
if (value) {
option.data[key] = value.split('|').join(',');
}
});
option.data.productSkn = $('#productSkn').val();
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;
data.pattern = basicInfo.pattern;
data.brandModel = productExtBo.brandModel;
data.brandModelText = productExtBo.brandModelText;
data.brandSeriesText = productExtBo.brandSeriesText;
data.brandSeries = productExtBo.brandSeries;
data.makeCrafts = productExtBo.makeCrafts;
data.salesPhrase = productExtBo.salesPhrase;
data.isHostsell = productExtBo.isHostsell;
$.each(data, function(key, value) {
if (typeof value == 'string') {
data[key] = value.replace(/,/g, "|");
}
});
if (comfort) {
$.each(comfort, function(index, item) {
if (item.value) {
data.productComfort.data[index].value = item.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') {
$('.contentpanel').find('input').prop('disabled', true);
$('.contentpanel').find('select').prop('disabled', true);
$('.contentpanel').find('.btn').addClass('disabled');
}
e.init();
}
})