|
@@ -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
|
// 同步数据变化
|