Files
miniapi/config/mini_app_catalog.php

66 lines
3.2 KiB
PHP

<?php
return [
'brand_name' => env('APP_BRAND_NAME', '九州签'),
'privacy_version' => env('APP_PRIVACY_VERSION', '1.0'),
'user_agreement_version' => env('APP_USER_AGREEMENT_VERSION', '1.0'),
'support_hours' => env('APP_SUPPORT_HOURS', '工作日 09:00-18:00'),
'upload_limits' => [
'image_mb' => 10,
'pdf_mb' => 20,
],
'service_guarantees' => [
['title' => '资料安全', 'description' => '敏感资料加密传输与存储'],
['title' => '进度清晰', 'description' => '订单状态和补充材料要求及时可查'],
['title' => '电话客服', 'description' => '办理过程中可通过电话联系客服'],
],
'products' => [
[
'id' => 'evus',
'business' => 'evus',
'name' => '美国 EVUS',
'country_code' => 'US',
'country_name' => '美国',
'country_name_en' => 'United States',
'continent' => '北美洲',
'product_type' => 'EVUS',
'service_type' => '电子登记',
'processing_time' => '以所选服务套餐说明为准',
'applicable_audience' => '具体适用条件以相关机构最新要求和申请页面提示为准',
'validity' => '以相关机构审核结果为准',
'stay_duration' => '不适用',
'entries' => '不适用',
'materials_summary' => ['护照资料', '美国签证资料', '个人及行程信息'],
'notices' => ['请提交真实、完整的信息,提交前仔细核对。'],
'refund_rule' => '以订单确认页展示的退款规则为准',
'disclaimer' => '九州签为代办服务平台,最终结果以相关机构审核为准。',
'keywords' => ['美国', 'EVUS', '电子登记'],
'featured' => true,
'schema' => ['schema_version' => 1, 'sections' => [], 'materials' => []],
],
[
'id' => 'esta',
'business' => 'esta',
'name' => '美国 ESTA',
'country_code' => 'US',
'country_name' => '美国',
'country_name_en' => 'United States',
'continent' => '北美洲',
'product_type' => 'ESTA',
'service_type' => '旅行授权',
'processing_time' => '以所选服务套餐说明为准',
'applicable_audience' => '具体适用条件以相关机构最新要求和申请页面提示为准',
'validity' => '以相关机构审核结果为准',
'stay_duration' => '以入境机构决定为准',
'entries' => '以相关机构审核结果为准',
'materials_summary' => ['护照资料', '个人资料', '行程与资格信息'],
'notices' => ['请提交真实、完整的信息,提交前仔细核对。'],
'refund_rule' => '以订单确认页展示的退款规则为准',
'disclaimer' => '九州签为代办服务平台,最终结果以相关机构审核为准。',
'keywords' => ['美国', 'ESTA', '旅行授权'],
'featured' => true,
'schema' => ['schema_version' => 1, 'sections' => [], 'materials' => []],
],
],
];