Showing
1 changed file
with
4 additions
and
4 deletions
@@ -38,6 +38,7 @@ var Bll = { | @@ -38,6 +38,7 @@ var Bll = { | ||
38 | // 请求查询数据 | 38 | // 请求查询数据 |
39 | Bll.renderAjax(); | 39 | Bll.renderAjax(); |
40 | 40 | ||
41 | + Bll.base = new base(); | ||
41 | // 加载模板列表 | 42 | // 加载模板列表 |
42 | let index = 0; | 43 | let index = 0; |
43 | $.each(shopTemplates, function(_index, template) { | 44 | $.each(shopTemplates, function(_index, template) { |
@@ -64,8 +65,6 @@ var Bll = { | @@ -64,8 +65,6 @@ var Bll = { | ||
64 | Bll.validator = new validator({ | 65 | Bll.validator = new validator({ |
65 | shopId: Bll.shopId | 66 | shopId: Bll.shopId |
66 | }); | 67 | }); |
67 | - | ||
68 | - Bll.base = new base(); | ||
69 | }, | 68 | }, |
70 | 69 | ||
71 | // 切换模板、执行模块的删除、上下移等动作时,需要重新加载模板装修内容 | 70 | // 切换模板、执行模块的删除、上下移等动作时,需要重新加载模板装修内容 |
@@ -1959,8 +1958,8 @@ $(document).on('change', '.link-type', function() { | @@ -1959,8 +1958,8 @@ $(document).on('change', '.link-type', function() { | ||
1959 | var linkResource = $(this).parent().parent().find('.link-resource'); | 1958 | var linkResource = $(this).parent().parent().find('.link-resource'); |
1960 | var showProductInfo = $(this).parent().parent().find('.input-showProductInfo'); | 1959 | var showProductInfo = $(this).parent().parent().find('.input-showProductInfo'); |
1961 | // 清空resource的值 | 1960 | // 清空resource的值 |
1962 | - $(linkResource).find('.input-resource').val(''); | ||
1963 | - $(linkResource).find('.category-resource').val('-1'); | 1961 | + // $(linkResource).find('.input-resource').val(''); |
1962 | + // $(linkResource).find('.category-resource').val('-1'); | ||
1964 | 1963 | ||
1965 | if(linkType.length > 0 && linkType == 0) { | 1964 | if(linkType.length > 0 && linkType == 0) { |
1966 | $(linkResource).find('.category-resource').show(); | 1965 | $(linkResource).find('.category-resource').show(); |
@@ -1979,6 +1978,7 @@ $(document).on('change', '.link-type', function() { | @@ -1979,6 +1978,7 @@ $(document).on('change', '.link-type', function() { | ||
1979 | // 同步数据变化 | 1978 | // 同步数据变化 |
1980 | var index = $(this).data("index"); | 1979 | var index = $(this).data("index"); |
1981 | Bll.moduleGrid.__rows[index].linkType = linkType; | 1980 | Bll.moduleGrid.__rows[index].linkType = linkType; |
1981 | + Bll.moduleGrid.__rows[index].resource = ''; | ||
1982 | Bll.moduleGrid.reload(); | 1982 | Bll.moduleGrid.reload(); |
1983 | }); | 1983 | }); |
1984 | 1984 |
-
Please register or login to post a comment