更新项目索引,新增2026-03-24的开发进度同步会议记录,补充各角色的项目索引信息,确保文档同步原则得到确认。

This commit is contained in:
Alex-larget
2026-03-25 15:47:31 +08:00
parent f3d74ce94a
commit c040e5609b
21 changed files with 2939 additions and 1509 deletions

View File

@@ -137,10 +137,17 @@ async function submitCkbLead(app, opts) {
})
wx.hideLoading()
if (res && res.success) {
try {
wx.setStorageSync('lead_last_submit_ts', Date.now())
} catch (e) {}
wx.showToast({ title: res.message || '提交成功,对方会尽快联系您', icon: 'success' })
const data = res.data && typeof res.data === 'object' ? res.data : {}
const skipped = !!(data.skipped || data.alreadySubmitted)
if (!skipped) {
try {
wx.setStorageSync('lead_last_submit_ts', Date.now())
} catch (e) {}
}
wx.showToast({
title: res.message || (skipped ? '无需重复提交' : '提交成功,对方会尽快联系您'),
icon: skipped ? 'none' : 'success',
})
return true
}
wx.showToast({ title: (res && res.message) || '提交失败', icon: 'none' })