Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
star7th committed Nov 16, 2024
1 parent 4107347 commit 37f755a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ public function batUpdate()
));
}
}
D("ItemChangeLog")->addLog($login_user['uid'], $item_id, 'drag', 'tree', 0, '目录树');
}

$this->sendResult(array());
Expand Down
6 changes: 6 additions & 0 deletions server/Application/Api/Model/ItemChangeLogModel.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ public function renderOneLog($one)
case 'unbound':
$one['op_action_type_desc'] = '解绑';
break;
case 'drag':
$one['op_action_type_desc'] = '拖曳修改';
break;
default:
$one['op_action_type_desc'] = '未定义';
break;
Expand All @@ -99,6 +102,9 @@ public function renderOneLog($one)
case 'member':
$one['op_object_type_desc'] = '成员';
break;
case 'tree':
$one['op_object_type_desc'] = '目录树';
break;
default:
$one['op_object_type_desc'] = '未定义';
break;
Expand Down

0 comments on commit 37f755a

Please sign in to comment.