feat: 接入戒烟首页 AI 计划与今日总结

This commit is contained in:
root
2026-03-13 21:31:28 +08:00
parent 525266afaf
commit 07482b8915
2 changed files with 519 additions and 0 deletions
+8
View File
@@ -48,6 +48,14 @@ export function unlockAiAdvice(data) {
return request.post('/smoke/ai/advice_unlocks', data) return request.post('/smoke/ai/advice_unlocks', data)
} }
export function getAINextSmokeTime(params = {}) {
return request.get('/smoke/ai/next_smoke_time', { mode: 'ai', ...params })
}
export function getAIDailySummary(params = {}) {
return request.get('/smoke/ai/daily_summary', params)
}
export function getStats(params = {}) { export function getStats(params = {}) {
return request.get('/smoke/stats', params) return request.get('/smoke/stats', params)
} }
+511
View File
@@ -41,11 +41,43 @@
<text class="timer-label">距上次抽烟</text> <text class="timer-label">距上次抽烟</text>
<text class="timer-value">{{ timerDisplay }}</text> <text class="timer-value">{{ timerDisplay }}</text>
<view class="next-time" v-if="nextSmokeTimeText"> <view class="next-time" v-if="nextSmokeTimeText">
<text class="next-time-source" v-if="suggestionSource === 'ai'">AI</text>
<text class="next-time-text"> 下次建议: {{ nextSmokeTimeText }}</text> <text class="next-time-text"> 下次建议: {{ nextSmokeTimeText }}</text>
</view> </view>
<view class="ai-btn-wrap" v-if="suggestionSource !== 'ai'">
<view class="ai-suggest-btn" @tap="handleAISuggest">
<text class="ai-suggest-icon">🤖</text>
<text class="ai-suggest-text">{{ aiLoading ? '生成中...' : 'AI 建议' }}</text>
</view> </view>
</view> </view>
</view> </view>
</view>
</view>
<!-- AI 今日计划卡片 -->
<view class="ai-plan-card" v-if="aiTimeNodes.length > 0">
<view class="ai-plan-header">
<text class="ai-plan-title">🤖 今日 AI 计划</text>
<view class="ai-plan-refresh" @tap="handleAISuggest">
<text class="ai-plan-refresh-text">{{ aiLoading ? '刷新中...' : '刷新' }}</text>
</view>
</view>
<view class="ai-plan-timeline">
<view
class="ai-plan-node"
v-for="(node, idx) in aiTimeNodesWithStatus"
:key="idx"
:class="{ 'node-past': node.status === 'past', 'node-current': node.status === 'current', 'node-future': node.status === 'future' }"
>
<view class="node-dot"></view>
<text class="node-time">{{ node.time }}</text>
<view class="node-line" v-if="idx < aiTimeNodesWithStatus.length - 1"></view>
</view>
</view>
<view class="ai-plan-advice" v-if="aiAdvice">
<text class="ai-plan-advice-text">{{ aiAdvice }}</text>
</view>
</view>
<view class="stats-row"> <view class="stats-row">
<view class="stat-card"> <view class="stat-card">
@@ -84,6 +116,36 @@
<text>想抽忍住了</text> <text>想抽忍住了</text>
</view> </view>
</view> </view>
<!-- 今日 AI 总结卡片 -->
<view class="ai-summary-card">
<view class="ai-summary-header">
<text class="ai-summary-title">🤖 今日 AI 总结</text>
<view class="ai-summary-action" @tap="handleDailySummary" v-if="dailySummaryData">
<text class="ai-summary-action-text">{{ summaryLoading ? '刷新中...' : '刷新' }}</text>
</view>
</view>
<view v-if="summaryLoading" class="ai-summary-loading">
<text class="ai-summary-loading-text">AI 正在分析今日数据...</text>
</view>
<view v-else-if="dailySummaryData" class="ai-summary-body">
<text class="ai-summary-text">{{ parsedSummary.summary }}</text>
<view class="ai-summary-highlights" v-if="parsedSummary.highlights && parsedSummary.highlights.length">
<view class="ai-summary-highlight" v-for="(item, idx) in parsedSummary.highlights" :key="idx">
<text class="highlight-dot">·</text>
<text class="highlight-text">{{ item }}</text>
</view>
</view>
<view class="ai-summary-suggestion" v-if="parsedSummary.suggestion">
<text class="suggestion-label">💡 明日建议</text>
<text class="suggestion-text">{{ parsedSummary.suggestion }}</text>
</view>
</view>
<view v-else class="ai-summary-empty" @tap="handleDailySummary">
<text class="ai-summary-empty-icon"></text>
<text class="ai-summary-empty-text">点击生成今日 AI 总结</text>
</view>
</view>
</view> </view>
<!-- 记录弹框组件 --> <!-- 记录弹框组件 -->
@@ -113,6 +175,8 @@ const navBarHeight = ref(0)
const showDialog = ref(false) const showDialog = ref(false)
const dialogType = ref('smoke') // 'smoke' 或 'resisted' const dialogType = ref('smoke') // 'smoke' 或 'resisted'
const homeData = ref(null) const homeData = ref(null)
const aiLoading = ref(false)
const summaryLoading = ref(false)
let timerInterval = null let timerInterval = null
const timerSeconds = ref(0) const timerSeconds = ref(0)
@@ -221,10 +285,51 @@ const nextSmokeTimeText = computed(() => {
return '' return ''
}) })
const suggestionSource = computed(() => {
return homeTimer.value?.suggestion_source || 'default'
})
const aiTimeNodes = computed(() => {
return homeTimer.value?.ai_time_nodes || []
})
const aiAdvice = computed(() => {
return homeTimer.value?.ai_advice || ''
})
const aiTimeNodesWithStatus = computed(() => {
const now = new Date()
const nowMinutes = now.getHours() * 60 + now.getMinutes()
let foundCurrent = false
return aiTimeNodes.value.map(time => {
const [h, m] = time.split(':').map(Number)
const nodeMinutes = h * 60 + m
if (foundCurrent) return { time, status: 'future' }
if (nodeMinutes > nowMinutes) {
foundCurrent = true
return { time, status: 'current' }
}
return { time, status: 'past' }
})
})
const dialogTitle = computed(() => { const dialogTitle = computed(() => {
return dialogType.value === 'smoke' ? '记录抽烟' : '想抽忍住了' return dialogType.value === 'smoke' ? '记录抽烟' : '想抽忍住了'
}) })
const dailySummaryData = computed(() => {
return homeData.value?.daily_summary?.status === 'available' ? homeData.value.daily_summary : null
})
const parsedSummary = computed(() => {
if (!dailySummaryData.value?.content) return {}
try {
return JSON.parse(dailySummaryData.value.content)
} catch {
return { summary: dailySummaryData.value.content, highlights: [], suggestion: '' }
}
})
function startTimer() { function startTimer() {
stopTimer() stopTimer()
if (timerBaseSeconds.value < 0) { if (timerBaseSeconds.value < 0) {
@@ -346,6 +451,151 @@ function closeAiTip() {
showAiTip.value = false showAiTip.value = false
} }
async function handleAISuggest() {
if (aiLoading.value) return
// 如果已有 AI 数据(今天已解锁),直接刷新
if (suggestionSource.value === 'ai') {
await fetchAISuggestion()
return
}
// 需要看广告解锁
// #ifdef MP-WEIXIN
try {
const videoAd = wx.createRewardedVideoAd({
adUnitId: 'adunit-fa0b2e5520a39e6a'
})
videoAd.onClose(async (res) => {
if (res && res.isEnded) {
await unlockAndFetchAI()
} else {
uni.showToast({ title: '需要看完广告哦', icon: 'none' })
}
})
videoAd.onError(() => {
// 广告加载失败,直接尝试解锁(可能已是 VIP)
unlockAndFetchAI()
})
await videoAd.show().catch(async () => {
await videoAd.load()
await videoAd.show()
})
} catch (e) {
// 非微信环境或广告不可用,直接尝试
await unlockAndFetchAI()
}
// #endif
// #ifndef MP-WEIXIN
await unlockAndFetchAI()
// #endif
}
async function unlockAndFetchAI() {
try {
const today = new Date().toISOString().split('T')[0]
await api.unlockAiAdvice({ date: today })
} catch (e) {
console.error('unlock error:', e)
}
await fetchAISuggestion()
}
async function fetchAISuggestion() {
aiLoading.value = true
try {
const res = await api.getAINextSmokeTime()
const data = res.data || {}
// 更新 homeData 中的 timer 字段
if (homeData.value && homeData.value.timer) {
if (data.suggested_at) {
homeData.value.timer.next_suggested_at = data.suggested_at
homeData.value.timer.suggestion_source = 'ai'
const t = new Date(data.suggested_at)
if (!isNaN(t.getTime())) {
homeData.value.timer.next_suggested_clock = `${String(t.getHours()).padStart(2, '0')}:${String(t.getMinutes()).padStart(2, '0')}`
}
}
if (data.time_nodes) {
homeData.value.timer.ai_time_nodes = data.time_nodes
}
if (data.advice) {
homeData.value.timer.ai_advice = data.advice
}
}
uni.showToast({ title: 'AI 计划已生成', icon: 'success' })
} catch (e) {
console.error('fetchAISuggestion error:', e)
uni.showToast({ title: '生成失败,请稍后重试', icon: 'none' })
} finally {
aiLoading.value = false
}
}
async function handleDailySummary() {
if (summaryLoading.value) return
// 如果已有总结数据,直接刷新(已解锁)
if (dailySummaryData.value) {
await fetchDailySummary()
return
}
// 需要看广告解锁
// #ifdef MP-WEIXIN
try {
const videoAd = wx.createRewardedVideoAd({
adUnitId: 'adunit-fa0b2e5520a39e6a'
})
videoAd.onClose(async (res) => {
if (res && res.isEnded) {
const today = new Date().toISOString().split('T')[0]
try { await api.unlockAiAdvice({ date: today }) } catch (e) { console.error('unlock error:', e) }
await fetchDailySummary()
} else {
uni.showToast({ title: '需要看完广告哦', icon: 'none' })
}
})
videoAd.onError(() => {
fetchDailySummary()
})
await videoAd.show().catch(async () => {
await videoAd.load()
await videoAd.show()
})
} catch (e) {
await fetchDailySummary()
}
// #endif
// #ifndef MP-WEIXIN
await fetchDailySummary()
// #endif
}
async function fetchDailySummary() {
summaryLoading.value = true
try {
const today = new Date().toISOString().split('T')[0]
const res = await api.getAIDailySummary({ date: today })
const data = res.data || {}
if (homeData.value) {
homeData.value.daily_summary = {
date: data.date || today,
content: data.content || '',
model: data.model || '',
status: 'available'
}
}
uni.showToast({ title: '总结已生成', icon: 'success' })
} catch (e) {
console.error('fetchDailySummary error:', e)
const msg = e?.data?.message || '生成失败,请稍后重试'
uni.showToast({ title: msg, icon: 'none' })
} finally {
summaryLoading.value = false
}
}
onMounted(() => { onMounted(() => {
initPage() initPage()
}) })
@@ -566,11 +816,48 @@ onShareAppMessage(() => {
border: 2rpx solid #D1FAE5; border: 2rpx solid #D1FAE5;
} }
.next-time-source {
font-size: 20rpx;
color: #FFFFFF;
background: linear-gradient(135deg, #34D399, #10B981);
padding: 2rpx 12rpx;
border-radius: 16rpx;
margin-right: 8rpx;
font-weight: 600;
}
.next-time-text { .next-time-text {
font-size: 24rpx; font-size: 24rpx;
color: #059669; color: #059669;
} }
.ai-btn-wrap {
display: flex;
justify-content: center;
margin-top: 16rpx;
}
.ai-suggest-btn {
display: inline-flex;
align-items: center;
gap: 8rpx;
background: linear-gradient(135deg, #34D399, #10B981);
color: #FFFFFF;
padding: 10rpx 28rpx;
border-radius: 32rpx;
font-size: 24rpx;
font-weight: 500;
box-shadow: 0 6rpx 16rpx rgba(16, 185, 129, 0.3);
}
.ai-suggest-icon {
font-size: 24rpx;
}
.ai-suggest-text {
font-size: 24rpx;
}
.stats-row { .stats-row {
display: flex; display: flex;
gap: 24rpx; gap: 24rpx;
@@ -659,6 +946,110 @@ onShareAppMessage(() => {
.stat-progress-red { background-color: #EF4444; } .stat-progress-red { background-color: #EF4444; }
.stat-progress-green { background-color: #10B981; } .stat-progress-green { background-color: #10B981; }
.ai-plan-card {
background-color: #FFFFFF;
border-radius: 24rpx;
padding: 28rpx;
margin-bottom: 24rpx;
border: 2rpx solid #D9FBE7;
box-shadow: 0 10rpx 22rpx rgba(16, 185, 129, 0.08);
}
.ai-plan-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24rpx;
}
.ai-plan-title {
font-size: 28rpx;
font-weight: 600;
color: #111827;
}
.ai-plan-refresh {
padding: 6rpx 20rpx;
border-radius: 24rpx;
background-color: #ECFDF5;
border: 2rpx solid #D1FAE5;
}
.ai-plan-refresh-text {
font-size: 22rpx;
color: #059669;
}
.ai-plan-timeline {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 8rpx;
margin-bottom: 20rpx;
}
.ai-plan-node {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
flex: 1;
}
.node-dot {
width: 20rpx;
height: 20rpx;
border-radius: 50%;
background-color: #D1FAE5;
margin-bottom: 8rpx;
}
.node-past .node-dot {
background-color: #9CA3AF;
}
.node-current .node-dot {
background-color: #10B981;
box-shadow: 0 0 12rpx rgba(16, 185, 129, 0.5);
width: 24rpx;
height: 24rpx;
}
.node-future .node-dot {
background-color: #D1FAE5;
}
.node-time {
font-size: 22rpx;
color: #9CA3AF;
}
.node-past .node-time {
color: #9CA3AF;
text-decoration: line-through;
}
.node-current .node-time {
color: #059669;
font-weight: 600;
}
.node-future .node-time {
color: #6B7280;
}
.ai-plan-advice {
background-color: #F0FDF4;
border-radius: 16rpx;
padding: 16rpx 20rpx;
}
.ai-plan-advice-text {
font-size: 24rpx;
color: #374151;
line-height: 1.6;
}
.action-buttons { .action-buttons {
display: flex; display: flex;
gap: 24rpx; gap: 24rpx;
@@ -692,4 +1083,124 @@ onShareAppMessage(() => {
.action-icon { .action-icon {
font-size: 32rpx; font-size: 32rpx;
} }
.ai-summary-card {
background-color: #FFFFFF;
border-radius: 24rpx;
padding: 28rpx;
margin-top: 24rpx;
border: 2rpx solid #D9FBE7;
box-shadow: 0 10rpx 22rpx rgba(16, 185, 129, 0.08);
}
.ai-summary-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20rpx;
}
.ai-summary-title {
font-size: 28rpx;
font-weight: 600;
color: #111827;
}
.ai-summary-action {
padding: 6rpx 20rpx;
border-radius: 24rpx;
background-color: #ECFDF5;
border: 2rpx solid #D1FAE5;
}
.ai-summary-action-text {
font-size: 22rpx;
color: #059669;
}
.ai-summary-loading {
padding: 40rpx 0;
text-align: center;
}
.ai-summary-loading-text {
font-size: 24rpx;
color: #9CA3AF;
}
.ai-summary-body {
display: flex;
flex-direction: column;
gap: 16rpx;
}
.ai-summary-text {
font-size: 26rpx;
color: #374151;
line-height: 1.6;
}
.ai-summary-highlights {
display: flex;
flex-direction: column;
gap: 8rpx;
}
.ai-summary-highlight {
display: flex;
align-items: flex-start;
gap: 8rpx;
}
.highlight-dot {
font-size: 28rpx;
color: #10B981;
font-weight: 700;
line-height: 1.5;
}
.highlight-text {
font-size: 24rpx;
color: #4B5563;
line-height: 1.5;
flex: 1;
}
.ai-summary-suggestion {
background-color: #F0FDF4;
border-radius: 16rpx;
padding: 16rpx 20rpx;
margin-top: 4rpx;
}
.suggestion-label {
font-size: 24rpx;
font-weight: 600;
color: #059669;
display: block;
margin-bottom: 6rpx;
}
.suggestion-text {
font-size: 24rpx;
color: #374151;
line-height: 1.5;
}
.ai-summary-empty {
display: flex;
align-items: center;
justify-content: center;
gap: 12rpx;
padding: 32rpx 0;
}
.ai-summary-empty-icon {
font-size: 32rpx;
}
.ai-summary-empty-text {
font-size: 26rpx;
color: #9CA3AF;
}
</style> </style>