fix: bugs

This commit is contained in:
xingyu4j
2025-06-27 22:39:03 +08:00
parent 0fbff4997f
commit d0210be4cd
5 changed files with 13 additions and 7 deletions

View File

@@ -64,14 +64,14 @@ const [TransferModal, transferModalApi] = useVbenModal({
destroyOnClose: true,
});
/** 加载线索详情 */
/** 加载合同详情 */
async function loadContractDetail() {
loading.value = true;
const data = await getContract(contractId.value);
contract.value = data;
// 操作日志
const logList = await getOperateLogPage({
bizType: BizTypeEnum.CRM_CLUE,
bizType: BizTypeEnum.CRM_CONTRACT,
bizId: contractId.value,
});
contractLogList.value = logList.list;