首页添加统计模板

This commit is contained in:
RuoYi
2019-06-23 13:44:53 +08:00
parent 2565627e7e
commit b743caeb6c
12 changed files with 4853 additions and 8 deletions

View File

@ -164,7 +164,7 @@ jQuery.tableDnD = {
// Iterate through each row, the row is bound to "this"
if (! $(this).hasClass("nodrag")) {
$(this).bind(startEvent, function(e) {
if (e.target.tagName === "TD") {
if (e.target.tagName === "TD" && event.target.className !== "nodrag") {
$.tableDnD.initialiseDrag(this, table, this, e, config);
return false;
}