feat: 将成长档案调整为近期实修回顾
This commit is contained in:
@@ -569,7 +569,7 @@ function errorMessage(error: unknown, fallback: string) {
|
||||
:remote-method="searchDebugUsers"
|
||||
:loading="debugUserLoading"
|
||||
:disabled="agentDebugging"
|
||||
placeholder="不选择则不注入学员权益和成长档案"
|
||||
placeholder="不选择则不注入学员权益和近期实修回顾"
|
||||
@change="handleDebugUserChange"
|
||||
>
|
||||
<el-option
|
||||
@@ -579,7 +579,7 @@ function errorMessage(error: unknown, fallback: string) {
|
||||
:value="user.id"
|
||||
/>
|
||||
</el-select>
|
||||
<div class="agent-form-help">加载该学员的权益和长期成长档案;不会消耗额度或改动正式会话。</div>
|
||||
<div class="agent-form-help">加载该学员的权益和近期实修回顾;只用于保持近期对话连续性,不会消耗额度或改动正式会话。</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="模拟主题(可选)">
|
||||
<el-select
|
||||
|
||||
@@ -37,8 +37,8 @@ const enabledCount = computed(() => props.plans.filter((plan) => plan.status ===
|
||||
const capabilityOptions = [
|
||||
{
|
||||
key: "enableGrowthProfile" as const,
|
||||
title: "成长档案",
|
||||
description: "持续沉淀学员主题、变化与成长记录",
|
||||
title: "近期实修回顾",
|
||||
description: "基于近期主题保持连续性,不做长期画像和成长评价",
|
||||
},
|
||||
{
|
||||
key: "enablePeriodicReports" as const,
|
||||
@@ -251,7 +251,7 @@ async function editPlan(plan: EntitlementPlan) {
|
||||
<el-table-column label="能力" min-width="360">
|
||||
<template #default="{ row }">
|
||||
<div class="entitlement-capabilities">
|
||||
<el-tag v-if="row.enableGrowthProfile" type="success" effect="plain">成长档案</el-tag>
|
||||
<el-tag v-if="row.enableGrowthProfile" type="success" effect="plain">近期实修回顾</el-tag>
|
||||
<el-tag v-if="row.enablePeriodicReports" type="success" effect="plain">周期报告</el-tag>
|
||||
<el-tag v-if="row.allowHelpCard" effect="plain">求助卡片</el-tag>
|
||||
<el-tag v-if="row.allowShareDraft" effect="plain">分享草稿</el-tag>
|
||||
|
||||
Reference in New Issue
Block a user