Authored by zhaoqing

模块化店铺

... ... @@ -167,6 +167,9 @@
<!-- 图片上传 -->
<script type="text/template" id="upload-image-template">
<div class="input-group">
[[if data.linkType == 1]]
<label class="input-showProductInfo" ><input name="showProductInfo" type="checkbox" value="" />商品信息展示 </label>
[[/if]]
<div class="input-group-addon">
<input type="file" name="file" size="500" class="upload-image" data-index="[[item.__index]]" title="上传图片">
<span class="glyphicon glyphicon-upload"></span>
... ...
... ... @@ -514,12 +514,14 @@ var Bll = {
columns: [
{
display: '关联类型',
width:150,
render: function(item) {
return common.util.__template2($('#link-type-template').html(), {data: item, index: item.__index});
}
},
{
display: '关联到',
width:150,
render: function(item) {
return common.util.__template2($('#link-resource-template').html(), {data: item, index: item.__index, categoryList: Bll.shopCategoryList});
}
... ... @@ -1833,9 +1835,15 @@ $(document).on('change', '.link-type', function() {
if(linkType.length > 0 && linkType == 0) {
$(linkResource).find('.category-resource').show();
$(linkResource).find('.input-resource').hide();
$(linkResource).find('.input-showProductInfo').hide();
} else {
$(linkResource).find('.category-resource').hide();
$(linkResource).find('.input-resource').show();
if(linkType.length > 0 && linkType == 1){
$(linkResource).find('.iinput-showProductInfo').show();
}else{
$(linkResource).find('.input-showProductInfo').hide();
}
}
// 同步数据变化
... ...