更新项目索引,新增2026-03-24的开发进度同步会议记录,补充各角色的项目索引信息,确保文档同步原则得到确认。
This commit is contained in:
@@ -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' })
|
||||
|
||||
Reference in New Issue
Block a user