Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
服务请求状态和工作流程转换。
DRAFT
QC
PENDING
REJECTED
APPROVED
COMPLETE
UNDERWAY
ASSIGNED
CANCELLED
QC + REJECTED
COMPLETE + APPROVED
COMPLETE + REJECTED
// 基本状态处理 function handleServiceRequestUpdate(sr) { if (sr.state.primary === 'QC' && sr.state.supplement === 'REJECTED') { showAttentionRequired(sr); // 需要合作伙伴操作 } if (sr.state.primary === 'COMPLETE') { if (sr.state.supplement === 'APPROVED') { handleAuthentic(sr); // 认证通过 } else { handleNotAuthentic(sr); // 认证失败 } } }
state_change
media_rejected
invalidate_sr