Authored by zhaoqing

模块化店铺

@@ -167,6 +167,9 @@ @@ -167,6 +167,9 @@
167 <!-- 图片上传 --> 167 <!-- 图片上传 -->
168 <script type="text/template" id="upload-image-template"> 168 <script type="text/template" id="upload-image-template">
169 <div class="input-group"> 169 <div class="input-group">
  170 + [[if data.linkType == 1]]
  171 + <label class="input-showProductInfo" ><input name="showProductInfo" type="checkbox" value="" />商品信息展示 </label>
  172 + [[/if]]
170 <div class="input-group-addon"> 173 <div class="input-group-addon">
171 <input type="file" name="file" size="500" class="upload-image" data-index="[[item.__index]]" title="上传图片"> 174 <input type="file" name="file" size="500" class="upload-image" data-index="[[item.__index]]" title="上传图片">
172 <span class="glyphicon glyphicon-upload"></span> 175 <span class="glyphicon glyphicon-upload"></span>
@@ -514,12 +514,14 @@ var Bll = { @@ -514,12 +514,14 @@ var Bll = {
514 columns: [ 514 columns: [
515 { 515 {
516 display: '关联类型', 516 display: '关联类型',
  517 + width:150,
517 render: function(item) { 518 render: function(item) {
518 return common.util.__template2($('#link-type-template').html(), {data: item, index: item.__index}); 519 return common.util.__template2($('#link-type-template').html(), {data: item, index: item.__index});
519 } 520 }
520 }, 521 },
521 { 522 {
522 display: '关联到', 523 display: '关联到',
  524 + width:150,
523 render: function(item) { 525 render: function(item) {
524 return common.util.__template2($('#link-resource-template').html(), {data: item, index: item.__index, categoryList: Bll.shopCategoryList}); 526 return common.util.__template2($('#link-resource-template').html(), {data: item, index: item.__index, categoryList: Bll.shopCategoryList});
525 } 527 }
@@ -1833,9 +1835,15 @@ $(document).on('change', '.link-type', function() { @@ -1833,9 +1835,15 @@ $(document).on('change', '.link-type', function() {
1833 if(linkType.length > 0 && linkType == 0) { 1835 if(linkType.length > 0 && linkType == 0) {
1834 $(linkResource).find('.category-resource').show(); 1836 $(linkResource).find('.category-resource').show();
1835 $(linkResource).find('.input-resource').hide(); 1837 $(linkResource).find('.input-resource').hide();
  1838 + $(linkResource).find('.input-showProductInfo').hide();
1836 } else { 1839 } else {
1837 $(linkResource).find('.category-resource').hide(); 1840 $(linkResource).find('.category-resource').hide();
1838 $(linkResource).find('.input-resource').show(); 1841 $(linkResource).find('.input-resource').show();
  1842 + if(linkType.length > 0 && linkType == 1){
  1843 + $(linkResource).find('.iinput-showProductInfo').show();
  1844 + }else{
  1845 + $(linkResource).find('.input-showProductInfo').hide();
  1846 + }
1839 } 1847 }
1840 1848
1841 // 同步数据变化 1849 // 同步数据变化