From 6fd1212298513dbc5532d73c347aa13bc39f1af3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=BF=97=E9=B9=8F?= <2916022834@qq.com> Date: Mon, 11 May 2026 10:01:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/icons/home.svg | 3 +++ src/lang/cn.ts | 3 ++- src/lang/en.ts | 3 ++- src/views/HomeMain.vue | 6 +++++- .../BecomeSeller/sellerReview.vue | 17 +++++++++++++++-- 5 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 src/assets/icons/home.svg diff --git a/src/assets/icons/home.svg b/src/assets/icons/home.svg new file mode 100644 index 00000000..7f5a4d9d --- /dev/null +++ b/src/assets/icons/home.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/lang/cn.ts b/src/lang/cn.ts index 1b09096d..986ba498 100644 --- a/src/lang/cn.ts +++ b/src/lang/cn.ts @@ -24,6 +24,7 @@ export default { SubscribeNow: '立即订阅', TaskList: '任务列表', ViewOrders: '查询订单', + PersonalCenter: '个人中心', BecomeSeller: '成为卖家', SellerDashboard: '卖家中心', toolsToProduct: '转产品图', @@ -1877,7 +1878,7 @@ export default { agreementAgreement: '我已经阅读并同意了卖家协议,清楚地了解了自己在 AiDA 平台上作为卖家所应承担的责任和义务。', submitApplication: '提交申请', applicationSubmitted: '申请已提交', - applicationSubmittedTip: '我们的团队将审核您的申请,并在1-3个工作日回复您。您会在邮箱中收到相关通知。', + applicationSubmittedTip: '审批即将完成。一旦通过,请在卖家控制面板中关联您的收款账户,然后再上架商品。您的 AiDA 账户还提供买家端访问权限,以便查看您的商品(详情请见个人中心)。', auditStatus1_title: "步骤 1:提交申请", auditStatus1_tip: "请填写店铺信息并同意服务条款。", auditStatus2_title: "步骤 2:审核验证", diff --git a/src/lang/en.ts b/src/lang/en.ts index 1c602e0b..eaacc450 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -24,6 +24,7 @@ export default { SubscribeNow: 'Subscribe now', TaskList: 'Task List', ViewOrders: 'View Orders', + PersonalCenter: 'Personal Center', BecomeSeller: 'Become a Seller', SellerDashboard: 'Seller Dashboard', toolsToProduct: 'To product image', @@ -1931,7 +1932,7 @@ export default { agreementAgreement: "I have read and agree to the Seller Agreement, understanding my responsibilities and obligations as a seller on the AiDA platform.", submitApplication: "Submit Application", applicationSubmitted: "Application Submitted", - applicationSubmittedTip: "Our team will review your application and get back to you within 1–3 business days. You'll receive a notification in your email once a decision has been made.", + applicationSubmittedTip: "Approval is imminent. Once granted, link your payout account in the Seller Dashboard before listing. Your AiDA account also grants buyer-side access to view your products (details in Personal Center).", auditStatus1_title: "Step 1: Submit Application", auditStatus1_tip: "Fill out the seller information form and agree to our terms", auditStatus2_title: "Step 2: Review & Verification", diff --git a/src/views/HomeMain.vue b/src/views/HomeMain.vue index d5f9a7a7..939aa5c6 100644 --- a/src/views/HomeMain.vue +++ b/src/views/HomeMain.vue @@ -318,7 +318,7 @@
-
+
@@ -373,6 +373,10 @@ {{ $t('Header.ViewOrders') }}
+
+ + {{ $t('Header.PersonalCenter') }} +
{{ $t('Header.BecomeSeller') }} diff --git a/src/views/SellerDashboard/BecomeSeller/sellerReview.vue b/src/views/SellerDashboard/BecomeSeller/sellerReview.vue index 9957b953..496f4f67 100644 --- a/src/views/SellerDashboard/BecomeSeller/sellerReview.vue +++ b/src/views/SellerDashboard/BecomeSeller/sellerReview.vue @@ -2,7 +2,10 @@
{{ $t("ApplySeller.applicationSubmitted") }}
-
{{ $t("ApplySeller.applicationSubmittedTip") }}
+
@@ -13,7 +16,9 @@
- +
ID: {{ userId }}
@@ -51,6 +56,9 @@ const onBackToHome = () => { router.push({ name: "home" }) } + window.onPersonalCenter = () => { + router.push("/home/account") + }