From 2942a8e029ffeb463626ba1fb7f8a702780d44e2 Mon Sep 17 00:00:00 2001 From: liuxiaoqing Date: Wed, 20 Aug 2025 18:02:25 +0800 Subject: [PATCH] =?UTF-8?q?refactor(webapp):=20=E4=BC=98=E5=8C=96=20Check?= =?UTF-8?q?=20=E7=BB=84=E4=BB=B6=E5=B8=83=E5=B1=80=E5=B9=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E9=98=BF=E9=87=8C=E4=BA=91=20OCR=20=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 调整 Check 组件中 a-col 的属性,使布局在不同屏幕尺寸下更加适应 - 更新阿里云 OCR 服务的 access_key_id 和 access_key_secret - 注释掉旧的 access_key_id 和 access_key_secret,以便备份 --- alibabacloud_sample/service.py | 7 +++++-- webapp/vite-project/src/components/check/Check.vue | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/alibabacloud_sample/service.py b/alibabacloud_sample/service.py index 831a78c..a31bf6c 100644 --- a/alibabacloud_sample/service.py +++ b/alibabacloud_sample/service.py @@ -51,8 +51,11 @@ class Service: # ) config = Config( type='access_key', - access_key_id='LTAI5tHvCWb5uHZ9Q7iUJTLp', - access_key_secret='zKAL7WqvnJ0lN0GHsvJptAGRiuCOfM' + access_key_id='LTAI5tCagGoJK3zb7de3mbgc', + access_key_secret='a7u1SI7Kq1xo2pMBuQQzq1IR15h4ZZ' + + # access_key_id = 'LTAI5tHvCWb5uHZ9Q7iUJTLp', + # access_key_secret = 'zKAL7WqvnJ0lN0GHsvJptAGRiuCOfM' ) config.endpoint = f'ocr-api.cn-hangzhou.aliyuncs.com' cred = CredentialClient(config) diff --git a/webapp/vite-project/src/components/check/Check.vue b/webapp/vite-project/src/components/check/Check.vue index 72c0a55..3439f6d 100644 --- a/webapp/vite-project/src/components/check/Check.vue +++ b/webapp/vite-project/src/components/check/Check.vue @@ -1,7 +1,7 @@