修复whatshub工单数据同步

This commit is contained in:
root
2026-07-05 11:39:07 +08:00
parent f1acab12a7
commit a8a2551868
5 changed files with 692 additions and 67 deletions
@@ -147,12 +147,16 @@ class AntiBotConfigBuilder
{
if ($ticketType === 'whatshub') {
return [
'postCfReadyUrlContains' => 'work-order-sharing',
'postCfReadySelector' => '.el-input__inner',
'postCfReadyApiUrl' => '/api/whatshub-counter/workShare/open/statistics',
'postCfReadyTimeoutMs' => 60000,
'postCfSettleMs' => 500,
'postCfSpaWaitMs' => 4000,
'postCfReadyUrlContains' => 'work-order-sharing',
// 业务页表格就绪即可;密码框为 vxe-form,勿用泛化 .el-input__inner
'postCfReadySelector' => '.vxe-table, .vxe-grid',
'postCfReadySelectorOptional' => true,
// statistics 仅在密码验证后触发,禁止 pre-auth 等待(见 Node skipPostCfReadyApi
'postCfReadyTimeoutMs' => 60000,
'postCfSettleMs' => 500,
'postCfSpaWaitMs' => 4000,
'skipShortLinkCfPurgeOnReuse' => true,
'authSkipIfNoPasswordDialog' => true,
];
}