ソースを参照

任务列表修改编辑模式关闭逻辑

xinyan 8 ヶ月 前
コミット
f10dd8435e
1 ファイル変更2 行追加1 行削除
  1. 2 1
      src/views/reportManage/TaskManage/index.vue

+ 2 - 1
src/views/reportManage/TaskManage/index.vue

@@ -196,11 +196,12 @@ const handleEditActived = ({ row, column }) => {
 };
 
 const handleEditClosed = ({ row, column }) => {
+  // const $grid = xGrid.value;
   if (column.property === 'user_name') {
     // 将 user 转换为 user_name 并更新 row
     row.user_name = userToUserName(row.user);
     // 强制刷新视图
-    $grid.refreshRow(row);
+    // $grid.refreshRow(row);
   }
 };