44323
2023-11-21 1e64ef03770f4e3a7f357049a6fe744f39c2c4b6
cloud-server-management/src/main/webapp/static/modular/system/tShop/tShopOtherOne.js
@@ -35,7 +35,10 @@
        },
        {title: '操作', visible: role==1?true:false, align: 'center', valign: 'middle',
            formatter:function (value,row) {
                return '<a href="javascript:void(0);" style="color: blue" onclick="TCompetition.delete1(' + row.id +')">删除 </a>  <a href="javascript:void(0);" style="color: blue" onclick="TCompetition.openTCompetitionDetail(' + row.id +')">编辑</a>'
                return '<a href="javascript:void(0);" style="color: blue" ' +
                    'onclick="TCompetition.delete1(' + row.id +')">删除 </a>  ' +
                    '<a href="javascript:void(0);" style="color: blue" ' +
                    'onclick="TCompetition.openTCompetitionDetail(' + row.id +')">编辑</a>'
            }
        },
    ];
@@ -737,9 +740,14 @@
    let name = $("#name").val()
    let sort = $("#sort").val()
    if(name=='' || name ==null){
        Feng.info("请填写板块名称")
        return;
    }
    if(sort=='' || sort ==null){
        Feng.info("请填写排序")
        return;
    }
@@ -758,6 +766,7 @@
    });
    ajax.set("name",name);
    ajax.set("id",$("#id").val());
    ajax.set("sort",$("#sort").val());
    ajax.start();
}