add-info.html
6.05 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
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-btns" style="display: none;">
<a href="" class="panel-minimize tooltips" data-toggle="tooltip" title=""><i class="fa fa-minus"></i></a>
</div>
<h2 class="panel-title">补全信息</h2>
</div>
<div id="addinfo-wrap" class="panel-body addinfo-wrap">
</div>
<div class="panel-footer">
<a id="saveAddInfo" href="javascript:;" class="btn btn-primary">保存</a>
</div>
</div>
<!-- <div id="productStyleWrap" class="form-group">
<div class="col-sm-1">商品风格:</div>
<div class="col-sm-11">
[[each productStyle as a index]]
[[if index=="data"]]
[[each a as b index]]
[[if index=="attributeValueList"]]
[[each b as c index]]
<label style="cursor: pointer;"><input type="checkbox" name="style" value="[[c]]">[[c]]</label>
[[/each]]
[[/if]]
[[/each]]
[[/if]]
[[/each]]
<input id="style" type="hidden" for="checkbox" value="[[style]]">
</div>
</div>
<div id="productElementsWrap" class="form-group">
<div class="col-sm-1">图案纹理:</div>
<div class="col-sm-11">
[[each productElements as a index]]
[[if index=="data"]]
[[each a as b index]]
[[if index=="attributeValueList"]]
[[each b as c index]]
<label style="cursor: pointer;"><input type="checkbox" name="pattern" value="[[c]]">[[c]]</label>
[[/each]]
[[/if]]
[[/each]]
[[/if]]
[[/each]]
<input id="pattern" type="hidden" for="checkbox" value="[[pattern]]">
</div>
</div>
<div class="making-process-wrap form-group">
<label>制作工艺:</label>
<span>
[[each makingProcess as a index]]
[[each a.items as b index]]
<label style="cursor: pointer;"><input type="checkbox" name="makeCrafts" value="[[b]]">[[b]]</label>
[[/each]]
[[/each]]
<input id="makeCrafts" type="hidden" for="checkbox" value="[[makeCrafts]]">
</span>
</div>
<div id="wearSenseWrap" class="form-group">
<label>舒适度:</label>
[[each productComfort as a index]]
[[if index=="data"]]
[[each a as b index]]
<div style="display: inline-block;width: 140px;">
<label>[[b.text]]</label>
<select name="[[b.id]]" class="form-control">
<option value="">请选择</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<input type="hidden" value="[[b.value]]">
</div>
[[/each]]
[[/if]]
[[/each]]
</div>-->
<script type="text/template" id="addInfoTemp">
[[each data as b index]]
<div class="attribute-group form-group">
<label>[[b.attributeName]]:</label>
[[if b.inputType=='select']]
<div style="display: inline-block;width: 280px;">
<select class="form-control" id="[[b.attributeId]]" value="[[b.selectedValues||'']]">
[[each b.idNameList as c index]]
<option value="[[c.id]]">[[c.text]]</option>
[[/each]]
</select>
</div>
[[else]]
<span>
[[each b.idNameList as c index]]
<label style="cursor: pointer;"><input name="[[b.attributeId]]" type="[[b.inputType]]" value="[[c.id]]">[[c.text]]</label>
[[/each]]
</span>
<input id="[[b.attributeId]]" type="hidden" for="[[b.inputType]]" value="[[b.selectedValues||'']]">
[[/if]]
</div>
[[/each]]
<div id="brandModelWrap" class="form-group">
<label>品牌款型:</label>
<div style="display: inline-block;width: 280px;">
<select name="brandModelSelect" id="brandModelSelect" tabindex="-1" title="" class="form-control" >
[[if brandModelText]]
<option value="[[brandModel]]">[[brandModelText]]</option>
[[else]]
<option value="">请选择品牌款型</option>
[[/if]]
</select>
</div>
<input type="hidden" id="brandModel" value="[[brandModel]]">
</div>
<div id="brandSeriesWrap" class="form-group">
<label>品牌系列:</label>
<div style="display: inline-block;width: 280px;">
<select name="brandSeriesSelect" id="brandSeriesSelect" tabindex="-1" title="" class="form-control">
[[if brandSeriesText]]
<option value="[[brandSeries]]">[[brandSeriesText]]</option>
[[else]]
<option value="">请选择品牌系列</option>
[[/if]]
</select>
</div>
<input type="hidden" id="brandSeries" value="[[brandSeries]]">
</div>
<div class="form-group">
<label>促销短语:</label>
<input id="salesPhrase" class="form-control" type="text" value="[[salesPhrase]]" style="display: inline-block;width: 280px;">
</div>
<div class="form-group">
<label>是否热销:</label>
<span>
<label class="radio-inline"><input type="radio" name="isHostsell" value="Y">是</label>
<label class="radio-inline"><input type="radio" name="isHostsell" value="N">否</label>
<input id="isHostsell" type="hidden" for="radio" value="[[isHostsell]]">
</span>
</div>
</script>