From a228095220eac38f33bcf36334598a2a2cb2d84c Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 31 May 2026 19:56:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20get=5Forganizations/get=5Fupapps?= =?UTF-8?q?=E8=BF=94=E5=9B=9Eproviderid=5Ftext/upappid=5Ftext=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E5=8C=B9=E9=85=8Dalters=E5=AD=97=E6=AE=B5=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wwwroot/api/get_organizations.dspy | 2 +- wwwroot/api/get_upapps.dspy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wwwroot/api/get_organizations.dspy b/wwwroot/api/get_organizations.dspy index 5cc13eb..2b96525 100644 --- a/wwwroot/api/get_organizations.dspy +++ b/wwwroot/api/get_organizations.dspy @@ -8,7 +8,7 @@ try: ) if orgs: for r in orgs: - result.append({'value': str(r.id), 'text': r.orgname or ''}) + result.append({'providerid': str(r.id), 'providerid_text': r.orgname or ''}) except Exception as e: debug(f'get_organizations error: {e}') diff --git a/wwwroot/api/get_upapps.dspy b/wwwroot/api/get_upapps.dspy index f408bd7..63e4622 100644 --- a/wwwroot/api/get_upapps.dspy +++ b/wwwroot/api/get_upapps.dspy @@ -9,7 +9,7 @@ try: ) if apps: for r in apps: - result.append({'value': str(r.id), 'text': r.name or ''}) + result.append({'upappid': str(r.id), 'upappid_text': r.name or ''}) except Exception as e: debug(f'get_upapps error: {e}')