Authored by xuhongyun

build

... ... @@ -1287,6 +1287,11 @@ webpackJsonp([151],{
Bll.renderDialog("focus-template");
});
$(document).on("change", '#version_control', function () {
Bll.module.contentData.version_control = $(this).val();
Bll.renderDialog("splitJointImg-template");
});
$(document).on("change", '#position-select', function () {
Bll.module.contentData.data.ufo_position = $(this).val();
Bll.renderDialog("cpsShowBanner-template");
... ... @@ -2616,7 +2621,8 @@ webpackJsonp([151],{
}],
image_height:"",
image_width:"",
is_extend:"1"
is_extend:"1",
version_control:"1"
},
{
template_intro: "猜你喜欢",
... ...
... ... @@ -428,6 +428,17 @@
<div class="form-group">
<div class="col-sm-10">
<label>版本控制:</label>
<select class="form-control input-form" id="version_control" value="[[contentData.version_control]]">
<option value="1">全版本展示</option>
<option value="2">大于等于6.9.5展示</option>
<option value="3">小于6.9.5展示</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-10">
<label> 宽度:</label>
<input type="text" placeholder="图片宽度" class="observe number" id="split_image_width" data-field="image_width" value="[[contentData.image_width]]" style="width:100px;" >
&emsp;&emsp;
... ...