修复删除场景获客时间错误逻辑

This commit is contained in:
wong
2025-06-25 11:42:04 +08:00
parent fcce32f04c
commit 8e3ce4ca01

View File

@@ -754,7 +754,7 @@ class WorkbenchController extends Controller
// 软删除
$workbench->isDel = 1;
$workbench->deleteTime = date('Y-m-d H:i:s');
$workbench->deleteTime = time();
$workbench->save();
return json(['code' => 200, 'msg' => '删除成功']);