fix: 桌面端支局长/领导新建记录时客户经理栏显示UUID

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-12 20:50:07 +08:00
parent 20f5b01987
commit 82755e14a1
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ async function loadPlans() {
function openCreate() {
dialogMode.value = 'create'
form.value = { customer_id: '', plan_content: '', plan_date: todayStr(), status: '计划中', manager_id: auth.userId || '' }
form.value = { customer_id: '', plan_content: '', plan_date: todayStr(), status: '计划中', manager_id: (auth.isDirector || auth.isLeader) ? '' : (auth.userId || '') }
dialogVisible.value = true
}