Authored by leo

Fixed: 解决跳转类型变更问题

... ... @@ -38,6 +38,7 @@ var Bll = {
// 请求查询数据
Bll.renderAjax();
Bll.base = new base();
// 加载模板列表
let index = 0;
$.each(shopTemplates, function(_index, template) {
... ... @@ -64,8 +65,6 @@ var Bll = {
Bll.validator = new validator({
shopId: Bll.shopId
});
Bll.base = new base();
},
// 切换模板、执行模块的删除、上下移等动作时,需要重新加载模板装修内容
... ... @@ -1959,8 +1958,8 @@ $(document).on('change', '.link-type', function() {
var linkResource = $(this).parent().parent().find('.link-resource');
var showProductInfo = $(this).parent().parent().find('.input-showProductInfo');
// 清空resource的值
$(linkResource).find('.input-resource').val('');
$(linkResource).find('.category-resource').val('-1');
// $(linkResource).find('.input-resource').val('');
// $(linkResource).find('.category-resource').val('-1');
if(linkType.length > 0 && linkType == 0) {
$(linkResource).find('.category-resource').show();
... ... @@ -1979,6 +1978,7 @@ $(document).on('change', '.link-type', function() {
// 同步数据变化
var index = $(this).data("index");
Bll.moduleGrid.__rows[index].linkType = linkType;
Bll.moduleGrid.__rows[index].resource = '';
Bll.moduleGrid.reload();
});
... ...