...
|
...
|
@@ -50,45 +50,55 @@ |
|
|
</div>
|
|
|
|
|
|
<script type="text/template" id="template">
|
|
|
<div>
|
|
|
<span>SKN:[[productSkn]]</span>
|
|
|
<span>产品名称:[[productName]]</span>
|
|
|
<br>
|
|
|
<div id="baseform" style="height: 400px;overflow: auto">
|
|
|
<div>
|
|
|
<span class="col-sm-2">SKN: [[productSkn]]</span>
|
|
|
<span class="col-sm-6 pull-left">产品名称: [[productName]]</span>
|
|
|
<br>
|
|
|
</div>
|
|
|
<table class="table table-bordered">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>模特名</th>
|
|
|
<th>试穿尺码</th>
|
|
|
<th>试穿描述</th>
|
|
|
<th>试穿备注</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
[[each modelLists as item index]]
|
|
|
<tr>
|
|
|
<th>
|
|
|
<span>[[item.modelName]]</span>
|
|
|
</th>
|
|
|
<th>
|
|
|
<select name="fit_size" data-name="fit_size" data-index="[[index]]" title="" class="select2-offscreen brandBtn-group fit_size tryInfo1">
|
|
|
<option value='[[item.tryInfo.fit_size]]'>[[item.tryInfo.fit_size||'请选择试穿尺码']]</option>
|
|
|
</select>
|
|
|
</th>
|
|
|
<th>
|
|
|
[[if item.tryInfo.feel_id]]
|
|
|
<select name="status" data-name="feel_id" data-index="[[index]]" title="" class="form-controller col-sm-8 tryInfo1">
|
|
|
<option value="[[item.tryInfo.feel_id]]">[[item.tryInfo.fell_name]]</option>
|
|
|
</select>
|
|
|
[[else]]
|
|
|
<select name="status" data-name="feel_id" data-index="[[index]]" title="" class="form-controller col-sm-8 tryInfo1">
|
|
|
<option value="-1">[['请选择试穿描述']]</option>
|
|
|
<option value="1">[['合适']]</option>
|
|
|
<option value="2">[['偏大']]</option>
|
|
|
<option value="3">[['偏小']]</option>
|
|
|
</select>
|
|
|
[[/if]]
|
|
|
</th>
|
|
|
<th>
|
|
|
<input type="text" data-name="fit_remark" data-index="[[index]]" value="[[item.tryInfo.fit_remark]]" name="fit_remark" id="fit_remark" class="tryInfo1 "
|
|
|
placeholder="添加备注,不超过12字">
|
|
|
</th>
|
|
|
</tr>
|
|
|
[[/each]]
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
<table class="table table-bordered">
|
|
|
<tbody>
|
|
|
[[each modelLists as item index]]
|
|
|
<tr>
|
|
|
<th>
|
|
|
<span>[[item.modelName]]</span>
|
|
|
</th>
|
|
|
<th>
|
|
|
<select name="fit_size" data-name="fit_size" data-index="[[index]]" title="" class="select2-offscreen brandBtn-group fit_size tryInfo1">
|
|
|
<option value='[[item.tryInfo.fit_size]]'>[[item.tryInfo.fit_size||'请选择试穿尺码']]</option>
|
|
|
</select>
|
|
|
</th>
|
|
|
<th>
|
|
|
[[if item.tryInfo.feel_id]]
|
|
|
<select name="status" data-name="feel_id" data-index="[[index]]" title="" class="form-controller col-sm-8 tryInfo1">
|
|
|
<option value="[[item.tryInfo.feel_id]]">[[item.tryInfo.fell_name]]</option>
|
|
|
</select>
|
|
|
[[else]]
|
|
|
<select name="status" data-name="feel_id" data-index="[[index]]" title="" class="form-controller col-sm-8 tryInfo1">
|
|
|
<option value="-1">[['请选择试穿描述']]</option>
|
|
|
<option value="1">[['合适']]</option>
|
|
|
<option value="2">[['偏大']]</option>
|
|
|
<option value="3">[['偏小']]</option>
|
|
|
</select>
|
|
|
[[/if]]
|
|
|
</th>
|
|
|
<th>
|
|
|
<input type="text" data-name="fit_remark" data-index="[[index]]" value="[[item.tryInfo.fit_remark]]" name="fit_remark" id="fit_remark" class="tryInfo1 "
|
|
|
placeholder="添加备注,不超过12字">
|
|
|
</th>
|
|
|
</tr>
|
|
|
[[/each]]
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</script>
|
|
|
|
|
|
|
...
|
...
|
|