...
|
...
|
@@ -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();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// 同步数据变化
|
...
|
...
|
|