浏览代码

修改表格行内编辑示例旧值参数

RuoYi 4 年之前
父节点
当前提交
7aedaf2085
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ruoyi-admin/src/main/resources/templates/demo/table/editable.html

+ 1 - 1
ruoyi-admin/src/main/resources/templates/demo/table/editable.html

@@ -108,7 +108,7 @@
             $.table.init(options);
         });
         
-        function onEditableSave (field, row, oldValue, $el) {
+        function onEditableSave (field, row, rowIndex, oldValue, $el) {
         	alert("字段名:" + field + ",当前值:" + row[field]  + ",旧值:" + oldValue);
         }