撤销提交

This commit is contained in:
杨丹华
2025-06-04 14:25:24 +08:00
parent 6cc0d79779
commit c81e217f80
28 changed files with 329 additions and 566 deletions

View File

@@ -22,7 +22,6 @@ return [
app()->getAppPath() . '/lang/en-us/' . (request()->isMobile() ? 'mobile' : 'pc') . '.php', app()->getAppPath() . '/lang/en-us/' . (request()->isMobile() ? 'mobile' : 'pc') . '.php',
app()->getAppPath() . '/lang/en-us/validate.php', app()->getAppPath() . '/lang/en-us/validate.php',
], ],
'zh-cn' => app()->getAppPath() . '/lang/zh-cn/' . (request()->isMobile() ? 'mobile' : 'pc') . '.php',
], ],
// Accept-Language转义为对应语言包名称 // Accept-Language转义为对应语言包名称
'accept_language' => [ 'accept_language' => [

View File

@@ -452,9 +452,9 @@ class Product extends Common
'message' => $post['message'], 'message' => $post['message'],
]); ]);
if ($ret->isEmpty()) { if ($ret->isEmpty()) {
return error(lang('product_detail.send_fail')); return error(lang('提交成功'));
} }
return success(lang('product_detail.send_success')); return success(lang('提交失败'));
} }
/** /**

View File

@@ -226,7 +226,7 @@ class TopicNas extends Common
View::assign('article', $article); View::assign('article', $article);
// 获取文章分类及文章数据 // 获取文章分类及文章数据
$parent = ArticleCategoryModel::uniqueLabel('CATEGORY_681182e0a4529')->value('id'); $parent = ArticleCategoryModel::uniqueLabel('CATEGORY_681182e0a4529')->language($this->lang_id)->value('id');
$article_categorys = ArticleCategoryModel::with(['article' => function ($query) { $article_categorys = ArticleCategoryModel::with(['article' => function ($query) {
$query->field(['id', 'title', 'category_id']); $query->field(['id', 'title', 'category_id']);
}]) }])

View File

@@ -11,8 +11,11 @@ return [
'联系方式' => 'Contact', '联系方式' => 'Contact',
// 返回文本 // 返回文本
'提交成功' => 'success',
'提交失败' => 'fail',
'信息已成功提交!' => 'Add Success', '信息已成功提交!' => 'Add Success',
'信息提交失败!' => 'Add Fail', '信息提交失败!' => 'Add Fail',
'当前选定语言的采购可选品类配置出错' => 'Current language configuration of purchase optional categories is incorrect',
// 首页 // 首页
'index/index' => [ 'index/index' => [

View File

@@ -1,226 +1,213 @@
<?php <?php
return [ return [
'header_navigation' => [ '产品列表' => 'Products',
'product_categorys' => 'Products', '店铺' => 'Store',
'store' => 'Store' '搜索记录' => 'Search History',
], '热销产品' => 'Popular Products',
'header_search' => [ '产品' => 'Product',
'history' => 'Search History', '联系我们' => 'Contact',
'hot_product' => 'Popular Products',
],
'footer_navigation' => [
'product_categorys' => 'Product'
],
'footer_contact' => 'Contact',
'index' => [
'featured_products' => 'Featured Products',
'view_all' => 'View All',
'learn_more' => 'Learn More',
'orico_technology' => 'ORICO Technology',
'orico_technology_desc' => 'Designed to be just as easy to learn as iPhone.Chatting with friends.',
'faq' => 'FAQ',
'faq_short_desc' => 'What are you most concerned about',
'faq_desc' => 'Our customer support is available Manday to Friday 9am600pmAverage arswer time 24h',
],
'article' => [
'detail_share' => 'SHARE',
'detail_leave_reply' => 'Leave a Reply',
'detail_leave_reply_name' => 'Name',
'detail_leave_reply_email' => 'Email',
'detail_leave_reply_email_tip' => 'Your email address will not be pulished.',
'detail_leave_reply_comment' => 'Comment',
'detail_leave_reply_submit' => 'POST COMMENT',
'detail_recommend' => 'Recommended for you',
],
'attachment' => [
'software_drives' => 'Software and Drivers',
'video' => 'Videos',
'support_model' => 'Supported Models',
'support_platform' => 'Supported Systems',
'search_placeholder' => 'Search model',
'no_data' => 'No Result',
'no_video' => 'No Video',
],
'aboutus_introduction' => [
'title' => 'Introduction of the Brand',
'section_why_title' => 'Why Choose Us',
'section_service_title' => 'How We Can Help with Customization',
'section_difference_title' => 'For Different Situation',
],
'aboutus_mileage' => [
'achievement' => 'Our Achievement',
'events' => 'Brand Events',
'development' => 'Tech Development',
],
'aboutus_policy' => [
'title' => 'After-Sales Policy',
'banner_1_title' => 'After-sale Policy',
'banner_1_desc' => 'ORICO commits to provide 7-day Refund, 15-day Exchange, 1-year Quality Warranty. ',
'banner_3_title' => 'For your own benefits, please mind the following information',
'banner_3_desc' => 'For a smooth return and refund, quality warranty, please follow these steps:',
'banner_5_title' => 'ORICO is not liable for:'
],
'contact_index' => [
'title' => 'contact us',
],
'contact_message' => [
'title' => 'contact us',
'our_information' => 'Our Information',
'send_question' => 'Send Us Your Question',
'form_name' => 'Yuor Name',
'form_name_placeholder' => 'This is your placeholder text',
'form_email' => 'Your Email',
'form_email_placeholder' => 'This is your placeholder text',
'form_question' => 'Your Message',
'form_question_placeholder' => 'This is your placeholder text',
'form_submit' => 'SEND',
'become_a_distributor' => 'Become a Distributor',
// 验证器中文本
'validate_name_required' => 'Name is required',
'validate_name_max' => 'Name cannot exceed 64 characters',
'validate_email_required' => 'Email is required',
'validate_email_email' => 'Email format is incorrect',
'validate_email_max' => 'Email cannot exceed 128 characters',
'validate_content_required' => 'Message is required',
'validate_content_max' => 'Message cannot exceed 1024 characters',
// 返回文本 // 返回文本
'send_success' => 'success', '提交成功' => 'success',
'send_fail' => 'fail', '提交失败' => 'fail',
'信息已成功提交!' => 'Add Success',
'信息提交失败!' => 'Add Fail',
'当前选定语言的采购可选品类配置出错' => 'Current language configuration of purchase optional categories is incorrect',
// 首页
'index/index' => [
'查看所有' => 'View All',
'明星产品/热点产品' => 'Featured Products',
'了解更多' => 'Learn More',
'ORICO 技术' => 'ORICO Technology',
'强大功能、简单使用' => 'Designed to be just as easy to learn as iPhone.Chatting with friends.',
'常见问题' => 'FAQ',
'回答您最关心的问题' => 'What are you most concerned about',
'客服团队的工作时间周一到周五早9点到晚6点 平均应答时间24小时内' => 'Our customer support is available Manday to Friday 9am600pmAverage arswer time 24h',
], ],
'contact_distributor' => [
'title' => 'Become a Distributor', // 文章详情页
'section_title' => 'To Be Our Distributor', 'article/detail' => [
'section_desc_1' => 'Ready to join us?', '分享' => 'SHARE',
'section_desc_2' => 'Enter your details below and our Sales team will get back to you within 2 business days.', '留言' => 'Leave a Reply',
'form_corp_name' => 'Company Name', '名称' => 'Name',
'form_corp_name_placeholder' => 'Enter your Company Name', '电子邮箱' => 'Email',
'form_email' => 'Contact Email', '您的电子邮件地址不会被公开' => 'Your email address will not be pulished.',
'form_email_placeholder' => 'Enter your Email', '留言内容' => 'Comment',
'form_phone' => 'Phone Number', '提交留言' => 'POST COMMENT',
'form_phone_placeholder' => 'This is your placeholder text', '你可能还喜欢' => 'Recommended for you',
'form_business_type' => 'Type of Business', '链接复制成功' => 'Link copied successfully',
'form_online_shop_url' => 'Online Shop URL',
'form_online_shop_url_placeholder' => 'This is your placeholder URL',
'form_enterprise_size' => 'Enterprise size',
'form_corp_address' => 'Company Address',
'form_corp_address_placeholder' => 'Enter Address',
'form_message' => 'Message',
'form_message_placeholder' => 'Enter your message',
'form_submit' => 'SUBMIT',
// 验证器中文本
'validate_name_required' => 'Company Name is required',
'validate_name_max' => 'Company Name cannot exceed 64 characters',
'validate_email_required' => 'Email is required',
'validate_email_email' => 'Email format is incorrect',
'validate_email_max' => 'Email cannot exceed 128 characters',
'validate_phone_required' => 'Phone Number is required',
'validate_phone_max' => 'Phone Number cannot exceed 64 characters',
'validate_business_type_required' => 'Type of Business is required',
'validate_business_type_max' => 'Type of Business cannot exceed 128 characters',
'validate_enterprise_size_required' => 'Enterprise size is required',
'validate_enterprise_size_max' => 'Enterprise size cannot exceed 128 characters',
'validate_address_required' => 'Company Address is required',
'validate_address_max' => 'Company Address cannot exceed 255 characters',
'validate_message_required' => 'Message is required',
// 返回文本
'send_success' => 'Add Success',
'send_fail' => 'Add Fail',
], ],
'contact_bulkbuy' => [
'title' => '', // 附件页 - 软件下载
'form_title' => 'Bulk Buy', 'attachment/index' => [
'form_corp_name_label' => 'Company Name', '软件和驱动程序' => 'Software and Drivers',
'form_corp_name_placeholder' => 'Legal business name', '视频' => 'Videos',
'form_website_url_label' => 'Official website', '支持型号' => 'Supported Models',
'form_website_url_placeholder' => 'Please paste the URL', '支持系统' => 'Supported Systems',
'form_username_label' => 'Your Name', '搜索型号' => 'Search model',
'form_firstname_placeholder' => 'First name', '查询无结果!' => 'No Result',
'form_lastname_placeholder' => 'Last name',
'form_email_label' => 'Email',
'form_email_placeholder' => 'Please enter your email',
'form_phone_label' => 'Phone Numbe',
'form_phone_placeholder' => 'Please enter your phone number',
'form_checkbox_label' => 'Products you are interested in?',
'form_message_label' => 'Message',
'form_message_placeholder' => 'Methods used',
'form_submit' => 'SUBMIT',
// 验证器中文本
'validate_corp_name_require' => 'Company Name is required',
'validate_corp_name_max' => 'Company Name cannot exceed 128 characters',
'validate_url_max' => 'URL cannot exceed 255 characters',
'validate_first_name_require' => 'First Name is required',
'validate_first_name_max' => 'First Name cannot exceed 64 characters',
'validate_last_name_require' => 'Last Name is required',
'validate_last_name_max' => 'Last Name cannot exceed 64 characters',
'validate_email_require' => 'Email is required',
'validate_email_email' => 'Email format is incorrect',
'validate_email_max' => 'Email cannot exceed 128 characters',
'validate_phone_max' => 'Phone Number cannot exceed 32 characters',
'validate_interested_max' => 'Interested in cannot exceed 255 characters',
'validate_message_require' => 'Message is required',
'validate_message_max' => 'Message cannot exceed 1024 characters',
// 返回文本
'send_success' => 'Add Success',
'send_fail' => 'Add Fail',
], ],
'product_newpro' => [
'view_all' => 'View all' // 附件页 - 视频
'attachment/video' => [
'软件和驱动程序' => 'Software and Drivers',
'搜索型号' => 'Search model',
'视频' => 'Videos',
'查询无此视频!' => 'No Video',
], ],
'product_detail' => [
'detail_section_title' => 'Product Description', // 关于我们 - 品牌介绍
'related_products' => 'Related Products', 'aboutus/introduction' => [
'display_form' => 'Send Inquiry', '品牌介绍' => 'Introduction of the Brand',
'form_name' => 'Name', '选择我们的理由' => 'Why Choose Us',
'form_first_name_placeholder' => 'First name', '为您提供专属定制服务' => 'How We Can Help with Customization',
'form_last_name_placeholder' => 'Last name', '对于不同的情况' => 'For Different Situation',
'form_corp' => 'Company/Organization',
'form_email' => 'Email Address',
'form_phone' => 'Phone Number',
'form_country' => 'Country',
'form_country_placeholder' => '--- Select your country ---',
'form_industry' => 'Industry',
'form_inquiry' => 'Inquiry',
'form_submit' => 'SUBMIT',
// 验证器中文本
'validate_first_name_require' => 'First Name is required',
'validate_first_name_max' => 'First Name cannot exceed 64 characters',
'validate_last_name_require' => 'Last Name is required',
'validate_last_name_max' => 'Last Name cannot exceed 64 characters',
'validate_email_require' => 'Email is required',
'validate_email_email' => 'Email format is incorrect',
'validate_email_max' => 'Email cannot exceed 128 characters',
'validate_phone_max' => 'Phone Number cannot exceed 32 characters',
'validate_country_name_require' => 'Country is required',
'validate_country_name_max' => 'Country cannot exceed 128 characters',
'validate_corp_name_require' => 'Company/Organization is required',
'validate_corp_name_max' => 'Company/Organization cannot exceed 128 characters',
'validate_industry_require' => 'Industry is required',
'validate_industry_max' => 'Industry cannot exceed 64 characters',
'validate_message_require' => 'Message is required',
'validate_message_max' => 'Message cannot exceed 1024 characters',
// 返回文本
'send_success' => 'Add Success',
'send_fail' => 'Add Fail',
], ],
'topic_nas_index' => [
'solution_section_title' => '<span style="color:#004BFA;">ORICO</span>网络存储解决方案', // 关于我们 - 品牌历程
'software_section_title' => '<span style="color:#004BFA">NAS</span>配套软件', 'aboutus/mileage' => [
'ORICO荣耀' => 'Our Achievement',
'品牌里程' => 'Brand Events',
'品牌活动' => 'Tech Development',
], ],
'topic_nas_cooperation' => [
'advantages_section_title' => 'Cooperation advantages', // 关于我们 - 售后政策
'contacts_section_title' => 'Looking forward to working with you' 'aboutus/policy' => [
'售后政策_注意事项' => 'After-Sales Policy',
'售后政策' => 'After-sale Policy',
'ORICO/奥睿科商城为您提供七天包退、15天换新、1年保修、终身维护的服务承诺' => 'ORICO commits to provide 7-day Refund, 15-day Exchange, 1-year Quality Warranty. ',
'为了保障您的合法权益,敬请关注以下信息' => 'For your own benefits, please mind the following information',
'为了得到深圳市元创时代科技有限公司给予您的“包修、包换、包退”的权益,请您:' => 'For a smooth return and refund, quality warranty, please follow these steps:',
'特别说明' => 'ORICO is not liable for:'
], ],
'topic_nas_download' => [
'cyber_tab_title' => 'CyberData', // 关于我们 - 文化介绍
'weline_tab_title' => 'Weline' 'aboutus/culture' => [
'文化介绍' => 'Culture Introduction',
],
// 联系我们
'contactus/index' => [
'客户服务' => 'contact us',
],
// 联系我们 - 留言
'contactus/message' => [
'联系我们' => 'contact us',
'我们的信息' => 'Our Information',
'提交您的问题' => 'Send Us Your Question',
'姓名' => 'Yuor Name',
'请输入你的姓名' => 'This is your placeholder text',
'电子邮箱' => 'Your Email',
'请输入你的邮箱' => 'This is your placeholder text',
'您的问题' => 'Your Message',
'请输入你的问题' => 'This is your placeholder text',
'发送' => 'SEND',
'成为经销商' => 'Become a Distributor',
],
// 联系我们 - 成为经销商
'contactus/distributor' => [
'成为经销商' => 'To Be Our Distributor',
'准备好加入我们了吗?' => 'Ready to join us?',
'在下面输入您的详细信息我们的销售团队将在2个工作日内回复您。' => 'Enter your details below and our Sales team will get back to you within 2 business days.',
'公司名称' => 'Company Name',
'请输入公司名称' => 'Enter your Company Name',
'电子邮箱' => 'Contact Email',
'请输入邮箱' => 'Enter your Email',
'电话号码' => 'Phone Number',
'请输入电话号码' => 'This is your placeholder text',
'业务类型' => 'Type of Business',
'在线商店网址' => 'Online Shop URL',
'请输入网址' => 'This is your placeholder URL',
'企业规模' => 'Enterprise size',
'公司地址' => 'Company Address',
'请输入地址' => 'Enter Address',
'留言' => 'Message',
'请输入留言' => 'Enter your message',
'提交' => 'SUBMIT',
],
// 联系我们 - 批量购买
'contactus/bulkbuy' => [
'商务订单' => 'Bulk Buy',
'批量购买' => 'Bulk Buy',
'公司名称' => 'Company Name',
'法定营业名称' => 'Legal business name',
'官方网站' => 'Official website',
'请粘贴网址' => 'Please paste the URL',
'姓名' => 'Your Name',
'名' => 'First name',
'姓' => 'Last name',
'电子邮箱' => 'Email',
'请输入邮箱' => 'Please enter your email',
'电话号码' => 'Phone Numbe',
'请输入电话号码' => 'Please enter your phone number',
'您对哪个产品品类感兴趣?' => 'Products you are interested in?',
'留言' => 'Message',
'请输入留言' => 'Methods used',
'提交' => 'SUBMIT',
],
// 产品 - 产品详情页
'product/detail' => [
'产品详情' => 'Product Description',
'相关产品' => 'Related Products',
'发送查询' => 'Send Inquiry',
'姓名' => 'Name',
'请输入您的姓' => 'First name',
'请输入您的名' => 'Last name',
'公司/组织' => 'Company/Organization',
'电子邮箱' => 'Email Address',
'电话号码' => 'Phone Number',
'国家' => 'Country',
'请选择所属国家' => '--- Select your country ---',
'行业' => 'Industry',
'询问内容' => 'Inquiry',
'提交' => 'SUBMIT',
],
// 产品 - 分类
'product/category' => [
'查看全部' => 'View All',
],
// nas主题 - 首页
'topicnas/index' => [
'网络存储解决方案' => 'Network Storage Solutions',
'配套软件' => 'Software',
],
// nas主题 - 客户合作页
'topicnas/cooperation' => [
'合作优势' => 'Cooperation advantages',
'期待与您的合作' => 'Looking forward to working with you'
],
// nas主题 - 下载页
'topicnas/download' => [
'CyberData赛博云空间' => 'CyberData',
'Weline微链接' => 'Weline'
],
// nas主题 - 帮助页
'topicnas/help' => [
'帮助中心' => 'Quick Start Guide',
'请输入搜索关键字,如安装赛博云空间,影视库' => 'What are you looking for?',
'使用教程' => 'User\' s Guide',
'查看更多' => 'Click to view more',
'联系我们' => 'Contact US',
'目录' => 'Content'
],
// nas主题 - 帮助详情页
'topicnas/helpdetail' => [
'帮助中心' => 'Quick Start Guide',
'请输入搜索关键字,如安装赛博云空间,影视库' => 'What are you looking for?',
'使用教程' => 'User\' s Guide',
'联系我们' => 'Contact US',
'目录' => 'Content'
], ],
'topic_nas_help' => [
'module_title' => 'Quick Start Guide',
'search_input_placeholder' => 'What are you looking for?',
'article_section_title' => 'User\' s Guide',
'contact_section_title' => 'Contact US',
'view_more' => 'Click to view more',
'content' => 'Content'
]
]; ];

View File

@@ -1,226 +0,0 @@
<?php
return [
'header_navigation' => [
'product_categorys' => '产品列表',
'store' => '店铺'
],
'header_search' => [
'hot_product' => '热销产品',
'history' => '搜索记录',
],
'footer_navigation' => [
'product_categorys' => '产品'
],
'footer_contact' => '联系我们',
'index' => [
'featured_products' => '明星产品/热点产品',
'view_all' => '查看所有',
'learn_more' => '了解更多',
'orico_technology' => 'ORICO 技术',
'orico_technology_desc' => '强大功能、简单使用',
'faq' => '常见问题',
'faq_short_desc' => '回答您最关心的问题',
'faq_desc' => '客服团队的工作时间周一到周五早9点到晚6点 平均应答时间24小时内',
],
'article' => [
'detail_share' => '分享',
'detail_leave_reply' => '留言',
'detail_leave_reply_name' => '名称',
'detail_leave_reply_email' => '电子邮箱',
'detail_leave_reply_email_tip' => '您的电子邮件地址不会被公开',
'detail_leave_reply_comment' => '留言',
'detail_leave_reply_submit' => '提交留言',
'detail_recommend' => '你可能还喜欢',
],
'attachment' => [
'software_drives' => '软件和驱动程序',
'video' => '视频',
'support_model' => '支持型号',
'support_platform' => '支持系统',
'search_placeholder' => '搜索型号',
'no_data' => '查询无结果!',
'no_video' => '查询无此视频!',
],
'aboutus_introduction' => [
'title' => '品牌介绍',
'section_why_title' => '选择我们的理由',
'section_service_title' => '为您提供专属定制服务',
'section_difference_title' => '对于不同的情况',
],
'aboutus_mileage' => [
'achievement' => 'ORICO荣耀',
'events' => '品牌里程',
'development' => '品牌活动',
],
'aboutus_policy' => [
'title' => '售后政策_注意事项',
'banner_1_title' => '售后政策',
'banner_1_desc' => 'ORICO/奥睿科商城为您提供七天包退、15天换新、1年保修、终身维护的服务承诺',
'banner_3_title' => '为了保障您的合法权益,敬请关注以下信息',
'banner_3_desc' => '为了得到深圳市元创时代科技有限公司给予您的“包修、包换、包退”的权益,请您:',
'banner_5_title' => '特别说明'
],
'contact_index' => [
'title' => '客户服务',
],
'contact_message' => [
'title' => '联系我们',
'our_information' => '我们的信息',
'send_question' => '提交您的问题',
'form_name' => '姓名',
'form_name_placeholder' => '请输入你的姓名',
'form_email' => '电子邮箱',
'form_email_placeholder' => '请输入你的邮箱',
'form_question' => '您的问题',
'form_question_placeholder' => '请输入你的问题',
'form_submit' => '发送',
'become_a_distributor' => '成为经销商',
// 验证器中文本
'validate_name_required' => '姓名不能为空',
'validate_name_max' => '姓名不能超过64个字符',
'validate_email_required' => '邮箱不能为空',
'validate_email_email' => '邮箱格式不正确',
'validate_email_max' => '邮箱不能超过128个字符',
'validate_content_required' => '问题不能为空',
'validate_content_max' => '问题不能超过1024个字符',
// 返回文本
'send_success' => '提交成功',
'send_fail' => '提交失败',
],
'contact_distributor' => [
'title' => '成为经销商',
'section_title' => '成为经销商',
'section_desc_1' => '准备好加入我们了吗?',
'section_desc_2' => '在下面输入您的详细信息我们的销售团队将在2个工作日内回复您。',
'form_corp_name' => '公司名称',
'form_corp_name_placeholder' => '请输入公司名称',
'form_email' => '电子邮箱',
'form_email_placeholder' => '请输入邮箱',
'form_phone' => '电话号码',
'form_phone_placeholder' => '请输入电话号码',
'form_business_type' => '业务类型',
'form_online_shop_url' => '在线商店网址',
'form_online_shop_url_placeholder' => '请输入网址',
'form_enterprise_size' => '企业规模',
'form_corp_address' => '公司地址',
'form_corp_address_placeholder' => '请输入地址',
'form_message' => '留言',
'form_message_placeholder' => '请输入留言',
'form_submit' => '提交',
// 验证器中文本
'validate_name_required' => '公司名称不能为空',
'validate_name_max' => '公司名称不能超过64个字符',
'validate_email_required' => '邮箱不能为空',
'validate_email_email' => '邮箱格式不正确',
'validate_email_max' => '邮箱不能超过128个字符',
'validate_phone_required' => '电话号码不能为空',
'validate_phone_max' => '电话号码不能超过64个字符',
'validate_business_type_required' => '业务类型不能为空',
'validate_business_type_max' => '业务类型不能超过128个字符',
'validate_enterprise_size_required' => '企业规模不能为空',
'validate_enterprise_size_max' => '企业规模不能超过128个字符',
'validate_address_required' => '公司地址不能为空',
'validate_address_max' => '公司地址不能超过255个字符',
'validate_message_required' => '留言内容不能为空',
// 返回文本
'send_success' => '信息已成功提交',
'send_fail' => '信息提交失败',
],
'contact_bulkbuy' => [
'title' => '商务订单',
'form_title' => '批量购买',
'form_corp_name_label' => '公司名称',
'form_corp_name_placeholder' => '法定营业名称',
'form_website_url_label' => '官方网站',
'form_website_url_placeholder' => '请粘贴网址',
'form_username_label' => '姓名',
'form_firstname_placeholder' => '名',
'form_lastname_placeholder' => '姓',
'form_email_label' => '电子邮箱',
'form_email_placeholder' => '请输入邮箱',
'form_phone_label' => '电话号码',
'form_phone_placeholder' => '请输入电话号码',
'form_checkbox_label' => '您对哪个产品品类感兴趣?',
'form_message_label' => '留言',
'form_message_placeholder' => '请输入留言',
'form_submit' => '提交',
// 验证器中文本
'validate_corp_name_require' => '公司名称不能为空',
'validate_corp_name_max' => '公司名称不能超过128个字符',
'validate_url_max' => '网址不能超过255个字符',
'validate_first_name_require' => '名不能为空',
'validate_first_name_max' => '名不能超过64个字符',
'validate_last_name_require' => '姓不能为空',
'validate_last_name_max' => '姓不能超过64个字符',
'validate_email_require' => '邮箱不能为空',
'validate_email_email' => '邮箱格式不正确',
'validate_email_max' => '邮箱不能超过128个字符',
'validate_phone_max' => '电话号码不能超过32个字符',
'validate_interested_max' => '感兴趣的产品种类不能超过255个字符',
'validate_message_require' => '留言内容不能为空',
'validate_message_max' => '留言内容不能超过1024个字符',
// 返回文本
'send_success' => '信息已成功提交',
'send_fail' => '信息提交失败',
],
'product_newpro' => [
'view_all' => '查看全部'
],
'product_detail' => [
'detail_section_title' => '产品详情',
'related_products' => '相关产品',
'display_form' => '发送查询',
'form_name' => '姓名',
'form_first_name_placeholder' => '请输入您的姓',
'form_last_name_placeholder' => '请输入您的名',
'form_corp' => '公司/组织',
'form_email' => '电子邮箱',
'form_phone' => '电话号码',
'form_country' => '国家',
'form_country_placeholder' => '请选择所属国家',
'form_industry' => '行业',
'form_inquiry' => '询问内容',
'form_submit' => '提交',
// 验证器中文本
'validate_first_name_require' => '名不能为空',
'validate_first_name_max' => '名不能超过64个字符',
'validate_last_name_require' => '姓不能为空',
'validate_last_name_max' => '姓不能超过64个字符',
'validate_email_require' => '邮箱不能为空',
'validate_email_email' => '邮箱格式不正确',
'validate_email_max' => '邮箱不能超过128个字符',
'validate_phone_max' => '电话号码不能超过32个字符',
'validate_country_name_require' => '国家不能为空',
'validate_country_name_max' => '国家不能超过128个字符',
'validate_corp_name_require' => '公司/组织不能为空',
'validate_corp_name_max' => '公司/组织不能超过128个字符',
'validate_industry_require' => '行业不能为空',
'validate_industry_max' => '行业不能超过64个字符',
'validate_message_require' => '询问内容不能为空',
'validate_message_max' => '询问内容不能超过1024个字符',
// 返回文本
'send_success' => '信息已成功提交',
'send_fail' => '信息提交失败',
],
'topic_nas_index' => [
'solution_section_title' => '<span style="color:#004BFA;">ORICO</span>网络存储解决方案',
'software_section_title' => '<span style="color:#004BFA">NAS</span>配套软件',
],
'topic_nas_cooperation' => [
'advantages_section_title' => '合作优势',
'contacts_section_title' => '期待与您的合作'
],
'topic_nas_download' => [
'cyber_tab_title' => 'CyberData赛博云空间',
'weline_tab_title' => 'Weline微链接'
],
'topic_nas_help' => [
'module_title' => '帮助中心',
'search_input_placeholder' => '请输入搜索关键字,如安装赛博云空间,影视库',
'article_section_title' => '使用教程',
'contact_section_title' => '联系我们',
'view_more' => '查看更多',
'content' => '目录'
]
];

View File

@@ -1,6 +1,6 @@
{extend name="public/base" /} {extend name="public/base" /}
{block name="title"} {block name="title"}
{notempty name=":lang('aboutus_culture.title')"}<title>{:lang('aboutus_culture.title')}</title> {notempty name=":lang_i18n('文化介绍')"}<title>{:lang_i18n('文化介绍')}</title>
{else/}{__BLOCK__}{/notempty} {else/}{__BLOCK__}{/notempty}
{/block} {/block}
{block name="style"} {block name="style"}

View File

@@ -1,6 +1,6 @@
{extend name="public/base" /} {extend name="public/base" /}
{block name="title"} {block name="title"}
{notempty name=":lang('aboutus_introduction.title')"}<title>{:lang('aboutus_introduction.title')}</title>{else/}{__BLOCK__}{/notempty} {notempty name=":lang_i18n('品牌介绍')"}<title>{:lang_i18n('品牌介绍')}</title>{else/}{__BLOCK__}{/notempty}
{/block} {/block}
{block name="style"} {block name="style"}
<link rel="stylesheet" href="__CSS__/aboutus_introduction.css" /> <link rel="stylesheet" href="__CSS__/aboutus_introduction.css" />
@@ -14,7 +14,7 @@
<img src="{$focus_image.image}" alt="" class="bdimg1"> <img src="{$focus_image.image}" alt="" class="bdimg1">
{/notempty} {/notempty}
<div class="iotb_bgw"> <div class="iotb_bgw">
<h1 class="iotbt1">{:lang('aboutus_introduction.section_why_title')}</h1> <h1 class="iotbt1">{:lang_i18n('选择我们的理由')}</h1>
<div class="iotb_part1"> <div class="iotb_part1">
{notempty name="why"} {notempty name="why"}
{volist name="why" id="wh"} {volist name="why" id="wh"}
@@ -28,7 +28,7 @@
</div> </div>
</div> </div>
<div class="iotb_part2" style="background: #fff;"> <div class="iotb_part2" style="background: #fff;">
<h1 class="iotbt1">{:lang('aboutus_introduction.section_service_title')}</h1> <h1 class="iotbt1">{:lang_i18n('为您提供专属定制服务')}</h1>
{notempty name="service"} {notempty name="service"}
{volist name="service" id="se"} {volist name="service" id="se"}
<div class="fdimgs"> <div class="fdimgs">
@@ -45,7 +45,7 @@
</div> </div>
</div> </div>
<div class="iotb_part2" style="padding-bottom:0;background: #f2f2f2;"> <div class="iotb_part2" style="padding-bottom:0;background: #f2f2f2;">
<h1 class="iotbt1">{:lang('aboutus_introduction.section_difference_title')}</h1> <h1 class="iotbt1">{:lang_i18n('对于不同的情况')}</h1>
{notempty name="difference"} {notempty name="difference"}
{volist name="difference" id="diff"} {volist name="difference" id="diff"}
<div class="fdimgs fdimgs1"> <div class="fdimgs fdimgs1">

View File

@@ -7,7 +7,7 @@
<div class="achievementMain"> <div class="achievementMain">
<img src="__IMAGES__/Achievement.png" class="acvImg" /> <img src="__IMAGES__/Achievement.png" class="acvImg" />
<div class="achInfo"> <div class="achInfo">
<div class="title">{:lang('aboutus_mileage.achievement')}</div> <div class="title">{:lang_i18n('ORICO荣耀')}</div>
{notempty name="achievement"} {notempty name="achievement"}
<div class="achNums"> <div class="achNums">
{volist name="achievement" id="ac"} {volist name="achievement" id="ac"}
@@ -22,7 +22,7 @@
<div class="achTimes"> <div class="achTimes">
{notempty name="events"} {notempty name="events"}
<div class="timecontent"> <div class="timecontent">
<div class="title">{:lang('aboutus_mileage.events')}</div> <div class="title">{:lang_i18n('品牌里程')}</div>
<div class="timelist"> <div class="timelist">
<div class="timeline-time"> <div class="timeline-time">
<ul class="event_year"> <ul class="event_year">
@@ -58,7 +58,7 @@
<div class="tech"> <div class="tech">
{notempty name="development"} {notempty name="development"}
<div class="techcontent"> <div class="techcontent">
<div class="title">{:lang('aboutus_mileage.development')}</div> <div class="title">{:lang_i18n('品牌活动')}</div>
{volist name="development" id="de"} {volist name="development" id="de"}
<div class="techcon "> <div class="techcon ">
<div class="text"> <div class="text">

View File

@@ -1,6 +1,6 @@
{extend name="public/base" /} {extend name="public/base" /}
{block name="title"} {block name="title"}
<title>{:lang('aboutus_policy.title')}</title> <title>{:lang_i18n('售后政策_注意事项')}</title>
{/block} {/block}
{block name="style"} {block name="style"}
<link rel="stylesheet" href="__CSS__/aboutus_policy.css"> <link rel="stylesheet" href="__CSS__/aboutus_policy.css">
@@ -18,8 +18,8 @@
{/notempty} {/notempty}
</div> </div>
{/notempty} {/notempty}
<div class="lj_sale_policy">{:lang('aboutus_policy.banner_1_title')}</div> <div class="lj_sale_policy">{:lang_i18n('售后政策')}</div>
<div class="lj_sale_t">{:lang('aboutus_policy.banner_1_desc')}</div> <div class="lj_sale_t">{:lang_i18n('ORICO/奥睿科商城为您提供七天包退、15天换新、1年保修、终身维护的服务承诺')}</div>
<div class="swt-Container"> <div class="swt-Container">
<div class="lj_icon_l clearfix"> <div class="lj_icon_l clearfix">
{notempty name="policy.banner_1"} {notempty name="policy.banner_1"}
@@ -47,8 +47,8 @@
</div> </div>
{/volist} {/volist}
{/notempty} {/notempty}
<div class="lj_three_policy">{:lang('aboutus_policy.banner_3_title')}</div> <div class="lj_three_policy">{:lang_i18n('为了保障您的合法权益,敬请关注以下信息')}</div>
<div class="lj_t_small">{:lang('aboutus_policy.banner_3_desc')}</div> <div class="lj_t_small">{:lang_i18n('为了得到深圳市元创时代科技有限公司给予您的“包修、包换、包退”的权益,请您:')}</div>
<div class="lj_policy_icon clearfix"> <div class="lj_policy_icon clearfix">
{notempty name="policy.banner_3"} {notempty name="policy.banner_3"}
<ul> <ul>
@@ -72,7 +72,7 @@
</div> </div>
{/volist} {/volist}
{/notempty} {/notempty}
<div class="lj_three_policy">{:lang('aboutus_policy.banner_5_title')}</div> <div class="lj_three_policy">{:lang_i18n('特别说明')}</div>
<div class="lj_policy_four clearfix"> <div class="lj_policy_four clearfix">
{notempty name="policy.banner_5"} {notempty name="policy.banner_5"}
<ul> <ul>

View File

@@ -28,7 +28,7 @@
<div class="atmright"> <div class="atmright">
{notempty name="share_config"} {notempty name="share_config"}
<div class="blog_share"> <div class="blog_share">
<h3>{:lang('article.detail_share')}</h3> <h3>{:lang_i18n('分享')}</h3>
<div class="share_list"> <div class="share_list">
{volist name="share_config" id="sc"} {volist name="share_config" id="sc"}
<a class="atdit" {if condition="!empty($sc.is_blank) && $sc.is_blank.value == 1"}target="_blank"{/if} {notempty name="sc.url.value"}href="{$sc.url.value}"{/notempty}> <a class="atdit" {if condition="!empty($sc.is_blank) && $sc.is_blank.value == 1"}target="_blank"{/if} {notempty name="sc.url.value"}href="{$sc.url.value}"{/notempty}>
@@ -44,16 +44,16 @@
</div> </div>
{/notempty} {/notempty}
<div class="repply"> <div class="repply">
<h3>{:lang('article.detail_leave_reply')}</h3> <h3>{:lang_i18n('留言')}</h3>
<form action="{:url('article/comment', ['id' => $detail.id])}" method="POST" autocomplete="off"> <form action="{:url('article/comment', ['id' => $detail.id])}" method="POST" autocomplete="off">
<span>{:lang('article.detail_leave_reply_name')}</span> <span>{:lang_i18n('名称')}</span>
<input class="form-control itinp new_name" type="text" name="name" style="text-indent: 10px;"> <input class="form-control itinp new_name" type="text" name="name" style="text-indent: 10px;">
<span>{:lang('article.detail_leave_reply_email')}</span> <span>{:lang_i18n('电子邮箱')}</span>
<input class="form-control itinp new_email" type="email" name="email" style="text-indent: 10px; margin-bottom:0;"> <input class="form-control itinp new_email" type="email" name="email" style="text-indent: 10px; margin-bottom:0;">
<p style="color: #C6C7C9; font-size: 0.75rem; margin-bottom: 0.625rem;">{:lang('article.detail_leave_reply_email_tip')}</p> <p style="color: #C6C7C9; font-size: 0.75rem; margin-bottom: 0.625rem;">{:lang_i18n('您的电子邮件地址不会被公开')}</p>
<span>{:lang('article.detail_leave_reply_comment')}</span> <span>{:lang_i18n('留言内容')}</span>
<textarea class="form-control itinp new_comment" name="content" rows="3" style="text-indent: 10px;width: 98%; margin-top: 0.625rem;margin-bottom: 0.625rem;border: 1px solid #DBDBDB;"></textarea> <textarea class="form-control itinp new_comment" name="content" rows="3" style="text-indent: 10px;width: 98%; margin-top: 0.625rem;margin-bottom: 0.625rem;border: 1px solid #DBDBDB;"></textarea>
<div class="comment_btn" style="color:#ffffff;">{:lang('article.detail_leave_reply_submit')}</div> <div class="comment_btn" style="color:#ffffff;">{:lang_i18n('提交留言')}</div>
</form> </form>
</div> </div>
</div> </div>
@@ -63,7 +63,7 @@
<!-- 猜您喜欢 --> <!-- 猜您喜欢 -->
<div class="love"> <div class="love">
<div class="love1"> <div class="love1">
<p class="tt">{:lang('article.detail_recommend')}</p> <p class="tt">{:lang_i18n('你可能还喜欢')}</p>
<p><img src="__IMAGES__/1line.png" height="7"></p> <p><img src="__IMAGES__/1line.png" height="7"></p>
</div> </div>
<ul class="love2"> <ul class="love2">
@@ -131,7 +131,7 @@
input.select() input.select()
if (document.execCommand('copy')) { if (document.execCommand('copy')) {
document.execCommand('copy') document.execCommand('copy')
alert('链接复制成功') alert("{:lang_i18n('链接复制成功')}")
} }
document.body.removeChild(input) document.body.removeChild(input)
} }

View File

@@ -8,14 +8,14 @@
<div class="downloadMain"> <div class="downloadMain">
<div class="topimg"> <div class="topimg">
<img src="__IMAGES__/banner_01.png" /> <img src="__IMAGES__/banner_01.png" />
<div class="banner_title">{:lang('attachment.software_drives')}</div> <div class="banner_title">{:lang_i18n('软件和驱动程序')}</div>
</div> </div>
<div class="contact_c"> <div class="contact_c">
<!-- 搜索 --> <!-- 搜索 -->
<form action="{:url('attachment/index')}" method="get"> <form action="{:url('attachment/index')}" method="get">
<div class="search_all"> <div class="search_all">
<input type="hidden" name="id" value="{$Request.get.id}" /> <input type="hidden" name="id" value="{$Request.get.id}" />
<input type="text" name="keyword" placeholder="{:lang('attachment.search_placeholder')}" /> <input type="text" name="keyword" placeholder="{:lang_i18n('搜索型号')}" />
<button class="searchbtn" type="submit"><img src="__IMAGES__/search_blue.png" /></button> <button class="searchbtn" type="submit"><img src="__IMAGES__/search_blue.png" /></button>
</div> </div>
</form> </form>
@@ -34,7 +34,7 @@
</a> </a>
{/volist} {/volist}
{/notempty} {/notempty}
<a href="{:url('attachment/video')}"><div class="tabit">{:lang('attachment.video')}</div></a> <a href="{:url('attachment/video')}"><div class="tabit">{:lang_i18n('视频')}</div></a>
</div> </div>
<!-- 切换的内容 --> <!-- 切换的内容 -->
<div class="softlist"> <div class="softlist">
@@ -46,9 +46,9 @@
</div> </div>
<div> <div>
<p class="title">{$att.name}</p> <p class="title">{$att.name}</p>
<p class="sub_title">{:lang('attachment.support_model')}: </p> <p class="sub_title">{:lang_i18n('支持型号')}: </p>
<p class="des">{$att.applicable_to}</p> <p class="des">{$att.applicable_to}</p>
<p class="sub_title">{:lang('attachment.support_platform')}: </p> <p class="sub_title">{:lang_i18n('支持系统')}: </p>
<p class="des">{$att.support_platform}</p> <p class="des">{$att.support_platform}</p>
<p> <p>
{notempty name="att.attach"} {notempty name="att.attach"}
@@ -64,7 +64,7 @@
{/volist} {/volist}
<div class="page-box">{$page|raw}</div> <div class="page-box">{$page|raw}</div>
{else/} {else/}
<div class="softit">{:lang('attachment.no_data')}</div> <div class="softit">{:lang_i18n('查询无结果!')}</div>
{/notempty} {/notempty}
</div> </div>
</div> </div>

View File

@@ -8,13 +8,13 @@
<div class="downloadMain"> <div class="downloadMain">
<div class="topimg"> <div class="topimg">
<img src="__IMAGES__/banner_01.png" /> <img src="__IMAGES__/banner_01.png" />
<div class="banner_title">{:lang('attachment.software_drives')}</div> <div class="banner_title">{:lang_i18n('软件和驱动程序')}</div>
</div> </div>
<div class="contact_c"> <div class="contact_c">
<!-- 搜索 --> <!-- 搜索 -->
<form action="{:url('attachment/video')}" method="get"> <form action="{:url('attachment/video')}" method="get">
<div class="search_all"> <div class="search_all">
<input type="text" name="keyword" placeholder="{:lang('attachment.search_placeholder')}" /> <input type="text" name="keyword" placeholder="{:lang_i18n('搜索型号')}" />
<button class="searchbtn" type="submit"><img src="__IMAGES__/search_blue.png" /></button> <button class="searchbtn" type="submit"><img src="__IMAGES__/search_blue.png" /></button>
</div> </div>
</form> </form>
@@ -29,7 +29,7 @@
</a> </a>
{/volist} {/volist}
{/notempty} {/notempty}
<div class="tabit on">{:lang('attachment.video')}</div> <div class="tabit on">{:lang_i18n('视频')}</div>
</div> </div>
<!-- VIDEO 切换 --> <!-- VIDEO 切换 -->
<div class="vidotabs"> <div class="vidotabs">
@@ -69,7 +69,7 @@
{/volist} {/volist}
<div class="page-box">{$page|raw}</div> <div class="page-box">{$page|raw}</div>
{else/} {else/}
<ul><dl class="video-empty">{:lang('attachment.no_video')}</dl></ul> <ul><dl class="video-empty">{:lang_i18n('查询无此视频!')}</dl></ul>
{/notempty} {/notempty}
</div> </div>
</div> </div>

View File

@@ -1,6 +1,6 @@
{extend name="public/base" /} {extend name="public/base" /}
{block name="title"} {block name="title"}
{notempty name=":lang('contact_bulkbuy.title')"}<title>{:lang('contact_bulkbuy.title')}</title>{else /}{__BLOCK__}{/notempty} {notempty name=":lang_i18n('商务订单')"}<title>{:lang_i18n('商务订单')}</title>{else /}{__BLOCK__}{/notempty}
{/block} {/block}
{block name="style"} {block name="style"}
<link rel="stylesheet" href="__CSS__/contactus_bulkbuy.css"> <link rel="stylesheet" href="__CSS__/contactus_bulkbuy.css">
@@ -10,47 +10,47 @@
<!--首内容 --> <!--首内容 -->
<div class="bussinessMain"> <div class="bussinessMain">
<form class="bd_main" action="" method="post"> <form class="bd_main" action="" method="post">
<h1 class="sfbt1">{:lang('contact_bulkbuy.form_title')}</h1> <h1 class="sfbt1">{:lang_i18n('批量购买')}</h1>
<!--内容--> <!--内容-->
<div class="bd_ct "> <div class="bd_ct ">
<div class="bd_from" style="padding: 0 300px;"> <div class="bd_from" style="padding: 0 300px;">
<div class="theit"> <div class="theit">
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_bulkbuy.form_corp_name_label')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('公司名称')}<span class="redtag">*</span></label>
<input type="text" class="form-control itinp" placeholder="{:lang('contact_bulkbuy.form_corp_name_placeholder')}" name="corp_name" /> <input type="text" class="form-control itinp" placeholder="{:lang_i18n('法定营业名称')}" name="corp_name" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_bulkbuy.form_website_url_label')}</label> <label class="itlable">{:lang_i18n('官方网站')}</label>
<input type="text" class="form-control itinp" placeholder="{:lang('contact_bulkbuy.form_website_url_placeholder')}" name="url" /> <input type="text" class="form-control itinp" placeholder="{:lang_i18n('请粘贴网址')}" name="url" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_bulkbuy.form_username_label')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('姓名')}<span class="redtag">*</span></label>
<input type="text" class="form-control itinp" placeholder="{:lang('contact_bulkbuy.form_firstname_placeholder')}" name="first_name" /> <input type="text" class="form-control itinp" placeholder="{:lang_i18n('名')}" name="first_name" />
</div> </div>
<div class="bditem"> <div class="bditem">
<label class="itlable">&nbsp;</label> <label class="itlable">&nbsp;</label>
<input type="text" class="form-control itinp" placeholder="{:lang('contact_bulkbuy.form_lastname_placeholder')}" name="last_name" /> <input type="text" class="form-control itinp" placeholder="{:lang_i18n('姓')}" name="last_name" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_bulkbuy.form_email_label')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('电子邮箱')}<span class="redtag">*</span></label>
<input type="email" class="form-control itinp" placeholder="{:lang('contact_bulkbuy.form_email_placeholder')}" name="email" /> <input type="email" class="form-control itinp" placeholder="{:lang_i18n('请输入邮箱')}" name="email" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem bditem1"> <div class="bditem bditem1">
<label class="itlable">{:lang('contact_bulkbuy.form_phone_label')}</label> <label class="itlable">{:lang_i18n('电话号码')}</label>
<input type="text" class="form-control itinp" placeholder="{:lang('contact_bulkbuy.form_phone_placeholder')}" name="phone" /> <input type="text" class="form-control itinp" placeholder="{:lang_i18n('请输入电话号码')}" name="phone" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem bditem1"> <div class="bditem bditem1">
<label class="itlable">{:lang('contact_bulkbuy.form_checkbox_label')}</label> <label class="itlable">{:lang_i18n('您对哪个产品品类感兴趣?')}</label>
<div class="sfbchecks"> <div class="sfbchecks">
<div class="sfbcheckboxlist"> <div class="sfbcheckboxlist">
{notempty name="interested"} {notempty name="interested"}
@@ -66,14 +66,14 @@
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem bditem1"> <div class="bditem bditem1">
<label class="itlable">{:lang('contact_bulkbuy.form_message_label')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('留言')}<span class="redtag">*</span></label>
<textarea class="ittextarea ittextarea2" placeholder="{:lang('contact_bulkbuy.form_message_placeholder')}" name="message"></textarea> <textarea class="ittextarea ittextarea2" placeholder="{:lang_i18n('请输入留言')}" name="message"></textarea>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- 提交--> <!-- 提交-->
<div class="bttj" id="send">{:lang('contact_bulkbuy.form_submit')}</div> <div class="bttj" id="send">{:lang_i18n('提交')}</div>
</form> </form>
</div> </div>
</div> </div>

View File

@@ -1,6 +1,6 @@
{extend name="public/base" /} {extend name="public/base" /}
{block name="title"} {block name="title"}
<title>{:lang('contact_distributor.title')}</title> <title>{:lang_i18n('成为经销商')}</title>
{/block} {/block}
{block name="style"} {block name="style"}
<link rel="stylesheet" href="__CSS__/contactus_distributor.css" /> <link rel="stylesheet" href="__CSS__/contactus_distributor.css" />
@@ -9,9 +9,9 @@
<div class="orico_Page_distributor"> <div class="orico_Page_distributor">
<!--内容 --> <!--内容 -->
<div class="distributorMain"> <div class="distributorMain">
<h1 class="t1">{:lang('contact_distributor.section_title')}</h1> <h1 class="t1">{:lang_i18n('成为经销商')}</h1>
<p class="s1" style="padding-bottom:5px">{:lang('contact_distributor.section_desc_1')}</p> <p class="s1" style="padding-bottom:5px">{:lang_i18n('准备好加入我们了吗?')}</p>
<p class="s1 s2">{:lang('contact_distributor.section_desc_2')}</p> <p class="s1 s2">{:lang_i18n('在下面输入您的详细信息我们的销售团队将在2个工作日内回复您。')}</p>
<!--内容--> <!--内容-->
<form action="" method="post"> <form action="" method="post">
<div class="bd_ct"> <div class="bd_ct">
@@ -21,23 +21,23 @@
<div class="bd_from"> <div class="bd_from">
<div class="theit"> <div class="theit">
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_distributor.form_corp_name')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('公司名称')}<span class="redtag">*</span></label>
<input type="text" class="form-control itinp" name="corp_name" placeholder="{:lang('contact_distributor.form_corp_name_placeholder')}" /> <input type="text" class="form-control itinp" name="corp_name" placeholder="{:lang_i18n('请输入公司名称')}" />
</div> </div>
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_distributor.form_email')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('电子邮箱')}<span class="redtag">*</span></label>
<input type="email" class="form-control itinp" name="email" placeholder="{:lang('contact_distributor.form_email_placeholder')}" /> <input type="email" class="form-control itinp" name="email" placeholder="{:lang_i18n('请输入邮箱')}" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem bditem1"> <div class="bditem bditem1">
<label class="itlable">{:lang('contact_distributor.form_phone')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('电话号码')}<span class="redtag">*</span></label>
<input type="text" class="form-control itinp" name="phone" placeholder="{:lang('contact_distributor.form_phone_placeholder')}" /> <input type="text" class="form-control itinp" name="phone" placeholder="{:lang_i18n('请输入电话号码')}" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_distributor.form_business_type')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('业务类型')}<span class="redtag">*</span></label>
<select name="business_type" class="form-control itinp"> <select name="business_type" class="form-control itinp">
{volist name="types" id="ty"} {volist name="types" id="ty"}
<option value="{$ty.value}">{$ty.name}</option> <option value="{$ty.value}">{$ty.name}</option>
@@ -45,13 +45,13 @@
</select> </select>
</div> </div>
<div class="bditem"> <div class="bditem">
<label class="itlable">{:lang('contact_distributor.form_online_shop_url')}</label> <label class="itlable">{:lang_i18n('在线商店网址')}</label>
<input type="text" class="form-control itinp" name="url" placeholder="{:lang('contact_distributor.form_online_shop_url_placeholder')}" /> <input type="text" class="form-control itinp" name="url" placeholder="{:lang_i18n('请输入网址')}" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem bditem1"> <div class="bditem bditem1">
<label class="itlable">{:lang('contact_distributor.form_enterprise_size')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('企业规模')}<span class="redtag">*</span></label>
<select name="enterprise_size" class="form-control itinp"> <select name="enterprise_size" class="form-control itinp">
{volist name="sizes" id="si"} {volist name="sizes" id="si"}
<option value="{$si.value}">{$si.name}</option> <option value="{$si.value}">{$si.name}</option>
@@ -61,20 +61,20 @@
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem bditem1"> <div class="bditem bditem1">
<label class="itlable">{:lang('contact_distributor.form_corp_address')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('c公司地址')}<span class="redtag">*</span></label>
<input class="form-control itinp" name="address" placeholder="{:lang('contact_distributor.form_corp_address_placeholder')}" /> <input class="form-control itinp" name="address" placeholder="{:lang_i18n('请输入地址')}" />
</div> </div>
</div> </div>
<div class="theit"> <div class="theit">
<div class="bditem bditem1"> <div class="bditem bditem1">
<label class="itlable">{:lang('contact_distributor.form_message')}<span class="redtag">*</span></label> <label class="itlable">{:lang_i18n('留言')}<span class="redtag">*</span></label>
<textarea class="ittextarea" name="message" placeholder="{:lang('contact_distributor.form_message_placeholder')}"></textarea> <textarea class="ittextarea" name="message" placeholder="{:lang_i18n('请输入留言')}"></textarea>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- 提交--> <!-- 提交-->
<div class="bttj" id="send">{:lang('contact_distributor.form_submit')}</div> <div class="bttj" id="send">{:lang_i18n('提交')}</div>
</form> </form>
</div> </div>
</div> </div>

View File

@@ -1,6 +1,6 @@
{extend name="public/base" /} {extend name="public/base" /}
{block name="title"} {block name="title"}
<title>{:lang('contact_index.title')}</title> <title>{:lang_i18n('客户服务')}</title>
{/block} {/block}
{block name="style"} {block name="style"}
<link rel="stylesheet" href="__CSS__/contactus_index.css" /> <link rel="stylesheet" href="__CSS__/contactus_index.css" />

View File

@@ -1,5 +1,5 @@
{extend name="public/base" /} {extend name="public/base" /}
{block name="title"}<title>{:lang('contact_message.title')}</title>{/block} {block name="title"}<title>{:lang_i18n('联系我们')}</title>{/block}
{block name="style"} {block name="style"}
<link rel="stylesheet" href="__CSS__/contactus_message.css" /> <link rel="stylesheet" href="__CSS__/contactus_message.css" />
{/block} {/block}
@@ -15,7 +15,7 @@
<div class="contact_c"> <div class="contact_c">
<div class="all_contact"> <div class="all_contact">
<div class="info"> <div class="info">
<div class="title"> {:lang('contact_message.our_information')} </div> <div class="title"> {:lang_i18n('我们的信息')} </div>
{notempty name="our_information[0]"} {notempty name="our_information[0]"}
<div class="info_all"> <div class="info_all">
{assign name="first_info" value="$our_information|array_shift" /} {assign name="first_info" value="$our_information|array_shift" /}
@@ -47,36 +47,36 @@
{/notempty} {/notempty}
</div> </div>
<div class="question"> <div class="question">
<div class="title">{:lang('contact_message.send_question')}</div> <div class="title">{:lang_i18n('提交您的问题')}</div>
<div class="question_form"> <div class="question_form">
<form action="" method="post" autocomplete="off"> <form action="" method="post" autocomplete="off">
<div class="list"> <div class="list">
<div class="title">{:lang('contact_message.form_name')}<span class="f_red">*</span></div> <div class="title">{:lang_i18n('姓名')}<span class="f_red">*</span></div>
<div class="form_input"> <div class="form_input">
<input name="name" class="form-control itinp" placeholder="{:lang('contact_message.form_name_placeholder')}" /> <input name="name" class="form-control itinp" placeholder="{:lang_i18n('请输入你的姓名')}" />
</div> </div>
</div> </div>
<div class="list"> <div class="list">
<div class="title">{:lang('contact_message.form_email')} <span class="f_red">*</span></div> <div class="title">{:lang_i18n('电子邮箱')} <span class="f_red">*</span></div>
<div class="form_input"> <div class="form_input">
<input name="email" class="form-control itinp" placeholder="{:lang('contact_message.form_email_placeholder')}" /> <input name="email" class="form-control itinp" placeholder="{:lang_i18n('请输入你的邮箱')}" />
</div> </div>
</div> </div>
<div class="list"> <div class="list">
<div class="title">{:lang('contact_message.form_question')} <span class="f_red">*</span></div> <div class="title">{:lang_i18n('您的问题')} <span class="f_red">*</span></div>
<div class="form_input"> <div class="form_input">
<textarea rows="6" name="content" class="ittextarea" placeholder="{:lang('contact_message.form_question_placeholder')}"></textarea> <textarea rows="6" name="content" class="ittextarea" placeholder="{:lang_i18n('请输入你的问题')}"></textarea>
</div> </div>
</div> </div>
<div class="list"> <div class="list">
<div class="contact_button" id="send">{:lang('contact_message.form_submit')}</div> <div class="contact_button" id="send">{:lang_i18n('发送')}</div>
</div> </div>
</form> </form>
</div> </div>
</div> </div>
</div> </div>
<div class="become_dis"> <div class="become_dis">
<a href="{:url('contactus/distributor')}" class="text_blue">{:lang('contact_message.become_a_distributor')}</a> <a href="{:url('contactus/distributor')}" class="text_blue">{:lang_i18n('成为经销商')}</a>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -49,7 +49,7 @@
<div class="ftItme_left"> <div class="ftItme_left">
<p>{$topic.title}</p> <p>{$topic.title}</p>
<div class="subtitle"> <div class="subtitle">
<span>{:lang('index.view_all')}</span> <span>{:lang_i18n('查看所有')}</span>
<div class="tpicture"></div> <div class="tpicture"></div>
</div> </div>
</div> </div>
@@ -57,7 +57,7 @@
<div class="ftItme_left"> <div class="ftItme_left">
<p>{$topic.title}</p> <p>{$topic.title}</p>
<div class="subtitle"> <div class="subtitle">
<span>{:lang('index.view_all')}</span> <span>{:lang_i18n('查看所有')}</span>
<div class="tpicture"></div> <div class="tpicture"></div>
</div> </div>
</div> </div>
@@ -73,7 +73,7 @@
<!-- 明星产品/热点产品 --> <!-- 明星产品/热点产品 -->
{notempty name="featured_products"} {notempty name="featured_products"}
<div class="featuredProducts"> <div class="featuredProducts">
<p class="biaoti">{:lang('index.featured_products')}</p> <p class="biaoti">{:lang_i18n('明星产品/热点产品')}</p>
<div class="swiper fpSwiper"> <div class="swiper fpSwiper">
<div class="swiper-wrapper"> <div class="swiper-wrapper">
{volist name="featured_products" id="product"} {volist name="featured_products" id="product"}
@@ -83,7 +83,7 @@
</a> </a>
<div class="fpptitle">{$product.name}</div> <div class="fpptitle">{$product.name}</div>
<div class="subtitle">{$product.short_name}</div> <div class="subtitle">{$product.short_name}</div>
<a class="more">{:lang('index.learn_more')} ></a> <a class="more">{:lang_i18n('了解更多')} ></a>
</div> </div>
{/volist} {/volist}
</div> </div>
@@ -124,7 +124,7 @@
{/notempty}>{$scene.title}</p> {/notempty}>{$scene.title}</p>
<p class="subtitle" {notempty name="scene.desc_txt_color" }style="color:{$scene.desc_txt_color};" {/notempty}> <p class="subtitle" {notempty name="scene.desc_txt_color" }style="color:{$scene.desc_txt_color};" {/notempty}>
{$scene.desc|raw}</p> {$scene.desc|raw}</p>
<a class="sceneMore" href="{$scene.link}">{:lang('index.learn_more')} ></a> <a class="sceneMore" href="{$scene.link}">{:lang_i18n('了解更多')} ></a>
</div> </div>
<div style="background-image: url('{$scene.image}');" class="sceneimg"></div> <div style="background-image: url('{$scene.image}');" class="sceneimg"></div>
</div> </div>
@@ -133,8 +133,8 @@
{/notempty} {/notempty}
<!-- orico科技 --> <!-- orico科技 -->
<div class="oricoTechnology"> <div class="oricoTechnology">
<p class="ottitle">{:lang('index.orico_technology')}</p> <p class="ottitle">{:lang_i18n('ORICO 技术')}</p>
<span class="otsbtitle">{:lang('index.orico_technology_desc')}</span> <span class="otsbtitle">{:lang_i18n('强大功能、简单使用')}</span>
<div class="beforeafter ba-slider"> <div class="beforeafter ba-slider">
<!-- 对比前的图片 --> <!-- 对比前的图片 -->
<img src="__IMAGES__/indeximg1.jpg"> <img src="__IMAGES__/indeximg1.jpg">
@@ -161,7 +161,7 @@
{/notempty}>{$story.title}</div> {/notempty}>{$story.title}</div>
<div class="bssubtitle" {notempty name="story.desc_txt_color" }style="color:{$story.desc_txt_color};" <div class="bssubtitle" {notempty name="story.desc_txt_color" }style="color:{$story.desc_txt_color};"
{/notempty}>{$story.desc|raw}</div> {/notempty}>{$story.desc|raw}</div>
<a class="bsmore" href="{$story.link}">{:lang('index.learn_more')} ></a> <a class="bsmore" href="{$story.link}">{:lang_i18n('了解更多')} ></a>
</div> </div>
</div> </div>
{/volist} {/volist}
@@ -224,9 +224,9 @@
{notempty name="recommend_faq"} {notempty name="recommend_faq"}
<div class="oricoFQA"> <div class="oricoFQA">
<div class="fqaleft"> <div class="fqaleft">
<h1 class="title">{:lang('index.faq')}</h1> <h1 class="title">{:lang_i18n('常见问题')}</h1>
<p class="dec">{:lang('index.faq_short_desc')}</p> <p class="dec">{:lang_i18n('回答您最关心的问题')}</p>
<p class="sudec">{:lang('index.faq_desc')}</p> <p class="sudec">{:lang_i18n('客服团队的工作时间周一到周五早9点到晚6点 平均应答时间24小时内')}</p>
</div> </div>
<div class="fqaright"> <div class="fqaright">
<ul class="accordion"> <ul class="accordion">

View File

@@ -21,7 +21,7 @@
<div class="ori-pd-title"> <div class="ori-pd-title">
<div class="catname">{$vo.name}</div> <div class="catname">{$vo.name}</div>
<a class="catmore" href="{:url('product/subcategory', ['id' => $vo.id])}"> <a class="catmore" href="{:url('product/subcategory', ['id' => $vo.id])}">
<span class="tmore">{:lang('product_newpro.view_all')}</span> <span class="tmore">{:lang_i18n('查看全部')}</span>
<img src="__IMAGES__/more.png" class="catmoreImg" /> <img src="__IMAGES__/more.png" class="catmoreImg" />
</a> </a>
</div> </div>

View File

@@ -108,17 +108,17 @@
{volist name="product_purchase_links" id="ppp" key="k"} {volist name="product_purchase_links" id="ppp" key="k"}
<a class="thebt bttype{$k}" href="{$ppp.link}">{$ppp.platform_name}</a> <a class="thebt bttype{$k}" href="{$ppp.link}">{$ppp.platform_name}</a>
{/volist} {/volist}
<a class="thebt bttype3" id="open_form_modal">{:lang('product_detail.display_form')}</a> <a class="thebt bttype3" id="open_form_modal">{:lang_i18n('发送查询')}</a>
</div> </div>
</div> </div>
</div> </div>
<!-- 产品介绍详情--> <!-- 产品介绍详情-->
<div class="oriprInfo"> <div class="oriprInfo">
<div class="titleprinfo"> <div class="titleprinfo">
<a href="#detail" class="checkshow">{:lang('product_detail.detail_section_title')}</a> <a href="#detail" class="checkshow">{:lang_i18n('产品详情')}</a>
{notempty name="product_related"} {notempty name="product_related"}
<span>|</span> <span>|</span>
<a href="#related">{:lang('product_detail.related_products')}</a> <a href="#related">{:lang_i18n('相关产品')}</a>
{/notempty} {/notempty}
</div> </div>
<!-- 富文本渲染--> <!-- 富文本渲染-->
@@ -129,7 +129,7 @@
<!-- 关联产品 --> <!-- 关联产品 -->
{notempty name="product_related"} {notempty name="product_related"}
<div class="glcpmain" id="related"> <div class="glcpmain" id="related">
<div class="glcptitle">{:lang('product_detail.related_products')}</div> <div class="glcptitle">{:lang_i18n('相关产品')}</div>
<div class="swiper-container glcpswiper"> <div class="swiper-container glcpswiper">
<div class="swiper-wrapper"> <div class="swiper-wrapper">
{volist name="product_related" id="rel"} {volist name="product_related" id="rel"}
@@ -152,21 +152,21 @@
<div id="form_modal" class="XJmodal"> <div id="form_modal" class="XJmodal">
<div class="XJmodal-content"> <div class="XJmodal-content">
<span class="close">&times;</span> <span class="close">&times;</span>
<h2>{:lang('product_detail.display_form')}</h2> <h2>{:lang_i18n('发送查询')}</h2>
<form action="" method="post" autocomplete="off"> <form action="" method="post" autocomplete="off">
<div class="tkitem"> <div class="tkitem">
<div class="form-group"> <div class="form-group">
<label for="firstName"> <label for="firstName">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> {:lang('product_detail.form_name')}</label> <strong style="color: red; margin-right: 0.3125rem;"> * </strong> {:lang_i18n('姓名')}</label>
<div> <div>
<input type="text" name="first_name" id="firstName" placeholder="{:lang('product_detail.form_first_name_placeholder')}" class="detail-w"> <input type="text" name="first_name" id="firstName" placeholder="{:lang_i18n('请输入您的名')}" class="detail-w">
<input type="text" name="last_name" id="lastName" placeholder="{:lang('product_detail.form_last_name_placeholder')}" class="detail-w"> <input type="text" name="last_name" id="lastName" placeholder="{:lang_i18n('请输入您的姓')}" class="detail-w">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="corp"> <label for="corp">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> <strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_corp')} {:lang_i18n('公司/组织')}
</label> </label>
<input type="text" name="corp_name" id="corp" class="detail-w01"> <input type="text" name="corp_name" id="corp" class="detail-w01">
</div> </div>
@@ -174,15 +174,15 @@
<div class="tkitem"> <div class="tkitem">
<div class="form-group"> <div class="form-group">
<label for="email"> <label for="email">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> Email <strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_email')} {:lang_i18n('电子邮箱')}
</label> </label>
<input type="text" name="email" id="email" class="detail-w01"> <input type="text" name="email" id="email" class="detail-w01">
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="phone"> <label for="phone">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> Phone <strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_phone')} {:lang_i18n('电话号码')}
</label> </label>
<input type="text" name="phone" id="phone" class="detail-w01"> <input type="text" name="phone" id="phone" class="detail-w01">
</div> </div>
@@ -191,10 +191,10 @@
<div class="form-group"> <div class="form-group">
<label for="country"> <label for="country">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> <strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_country')} {:lang_i18n('国家')}
</label> </label>
<select name="country_name" id="country"> <select name="country_name" id="country">
<option value="">{:lang('product_detail.form_country_placeholder')}</option> <option value="">{:lang_i18n('请选择所属国家')}</option>
{volist name="country_list" id="country"} {volist name="country_list" id="country"}
<option value="{$country}">{$country}</option> <option value="{$country}">{$country}</option>
{/volist} {/volist}
@@ -203,7 +203,7 @@
<div class="form-group"> <div class="form-group">
<label for="industry"> <label for="industry">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> <strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_industry')} {:lang_i18n('行业')}
</label> </label>
<input type="text" name="industry" id="industry" class="detail-w01"> <input type="text" name="industry" id="industry" class="detail-w01">
</div> </div>
@@ -212,12 +212,12 @@
<div class="form-group" style="width: 100%;margin-right: 0px;"> <div class="form-group" style="width: 100%;margin-right: 0px;">
<label for="message"> <label for="message">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> <strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_inquiry')} {:lang_i18n('询问内容')}
</label> </label>
<textarea name="message" id="message"></textarea> <textarea name="message" id="message"></textarea>
</div> </div>
</div> </div>
<button type="button" id="send" class="submit-btn">{:lang('product_detail.form_submit')}</button> <button type="button" id="send" class="submit-btn">{:lang_i18n('提交')}</button>
</form> </form>
</div> </div>
</div> </div>

View File

@@ -24,7 +24,7 @@
<img src="__IMAGES__/bottomlogo.png" class="footerico" /> <img src="__IMAGES__/bottomlogo.png" class="footerico" />
</a> </a>
<div class="foootCt"> <div class="foootCt">
<p class="ftitle">{:lang('footer_navigation.product_categorys')}</p> <p class="ftitle">{:lang_i18n('产品')}</p>
<ul> <ul>
{volist name="header_categorys" id="vo"} {volist name="header_categorys" id="vo"}
<li><a href="{:url('product/category', ['id' => $vo.id])}" class="fline">{$vo.name}</a></li> <li><a href="{:url('product/category', ['id' => $vo.id])}" class="fline">{$vo.name}</a></li>
@@ -46,7 +46,7 @@
{/volist} {/volist}
{/if} {/if}
<div class="foootCt"> <div class="foootCt">
<p class="ftitle">{:lang('footer_contact')}</p> <p class="ftitle">{:lang_i18n('联系我们')}</p>
{if condition="!empty($contact_config)"} {if condition="!empty($contact_config)"}
<ul> <ul>
{volist name="contact_config" id="vo"} {volist name="contact_config" id="vo"}

View File

@@ -12,7 +12,7 @@
<ul> <ul>
{if condition="!empty($header_categorys)"} {if condition="!empty($header_categorys)"}
<li class="navItem"> <li class="navItem">
<a href="javascript:void(0);">{:lang('header_navigation.product_categorys')}</a> <a href="javascript:void(0);">{:lang_i18n('产品列表')}</a>
<img src="__IMAGES__/black-down.png" class="downimg" /> <img src="__IMAGES__/black-down.png" class="downimg" />
<ol class="navItemConten"> <ol class="navItemConten">
<!-- 左边子菜单--> <!-- 左边子菜单-->
@@ -88,7 +88,7 @@
</div> </div>
{notempty name="basic_config['navigation_store_url']['value']"} {notempty name="basic_config['navigation_store_url']['value']"}
<a class="storetopbt" href="{$basic_config['navigation_store_url']['value']}"> <a class="storetopbt" href="{$basic_config['navigation_store_url']['value']}">
<img src="__IMAGES__/shopico.png" class="storeImgico" />{:lang('header_navigation.store')} <img src="__IMAGES__/shopico.png" class="storeImgico" />{:lang_i18n('店铺')}
</a> </a>
{/notempty} {/notempty}
</div> </div>
@@ -101,11 +101,11 @@
<input type="text" name="keywords" id="serrchinput" autocomplete="off" /> <input type="text" name="keywords" id="serrchinput" autocomplete="off" />
<!-- 历史记录 --> <!-- 历史记录 -->
<div class="searchhistory"> <div class="searchhistory">
<p class="h_title">{:lang('header_search.history')}</p> <p class="h_title">{:lang_i18n('搜索记录')}</p>
<ul></ul> <ul></ul>
</div> </div>
<div class="popProduct"> <div class="popProduct">
<p class="h_title">{:lang('header_search.hot_product')}</p> <p class="h_title">{:lang_i18n('热销产品')}</p>
<div class="popmain"> <div class="popmain">
{volist name="header_hot_products" id="vo"} {volist name="header_hot_products" id="vo"}
<div class="popitem"> <div class="popitem">

View File

@@ -9,7 +9,7 @@
<img src="__IMAGES__/bottomlogo.png" class="footerico" /> <img src="__IMAGES__/bottomlogo.png" class="footerico" />
</a> </a>
<div class="foootCt"> <div class="foootCt">
<p class="ftitle">{:lang('footer_navigation.product_categorys')}</p> <p class="ftitle">{:lang_i18n('产品')}</p>
<ul> <ul>
{volist name="header_categorys" id="vo"} {volist name="header_categorys" id="vo"}
<li><a href="{:url('product/category', ['id' => $vo.id])}" class="fline">{$vo.name}</a></li> <li><a href="{:url('product/category', ['id' => $vo.id])}" class="fline">{$vo.name}</a></li>
@@ -31,7 +31,7 @@
{/volist} {/volist}
{/if} {/if}
<div class="foootCt"> <div class="foootCt">
<p class="ftitle">{:lang('footer_contact')}</p> <p class="ftitle">{:lang_i18n('联系我们')}</p>
{if condition="!empty($contact_config)"} {if condition="!empty($contact_config)"}
<ul> <ul>
{volist name="contact_config" id="vo"} {volist name="contact_config" id="vo"}

View File

@@ -47,7 +47,7 @@
<!-- 合作优势 --> <!-- 合作优势 -->
{notempty name="cooperation_advantages"} {notempty name="cooperation_advantages"}
<div class="narshzhb-hzys"> <div class="narshzhb-hzys">
<h2 class="hzys-title">{:lang('topic_nas_cooperation.advantages_section_title')}</h2> <h2 class="hzys-title">{:lang_i18n('合作优势')}</h2>
<div class="narshzhb-hzys-main"> <div class="narshzhb-hzys-main">
{volist name="cooperation_advantages" id="adv"} {volist name="cooperation_advantages" id="adv"}
<div class="narshzhb-hzys-it"> <div class="narshzhb-hzys-it">
@@ -62,7 +62,7 @@
<!-- 期待与您的合作 --> <!-- 期待与您的合作 -->
{notempty name="cooperation_cotacts"} {notempty name="cooperation_cotacts"}
<div class="narshzhb-qdhz"> <div class="narshzhb-qdhz">
<h2 class="hzys-title">{:lang('topic_nas_cooperation.contacts_section_title')}</h2> <h2 class="hzys-title">{:lang_i18n('期待与您的合作')}</h2>
{volist name="cooperation_cotacts" id="contacts" key="idx"} {volist name="cooperation_cotacts" id="contacts" key="idx"}
<div class="nars-qdhz-part"> <div class="nars-qdhz-part">
{volist name="contacts" id="co"} {volist name="contacts" id="co"}

View File

@@ -10,10 +10,10 @@
<div class="narsDtabs"> <div class="narsDtabs">
{egt name=":count($data)" value="2"} {egt name=":count($data)" value="2"}
{notempty name="data.cyber"} {notempty name="data.cyber"}
<div class="narsDtabIt narsDtabIt_active">{:lang('topic_nas_download.cyber_tab_title')}</div> <div class="narsDtabIt narsDtabIt_active">{:lang_i18n('CyberData赛博云空间')}</div>
{/notempty} {/notempty}
{notempty name="data.weline"} {notempty name="data.weline"}
<div class="narsDtabIt">{:lang('topic_nas_download.weline_tab_title')}</div> <div class="narsDtabIt">{:lang_i18n('Weline微链接')}</div>
{/notempty} {/notempty}
{/egt} {/egt}
</div> </div>

View File

@@ -10,7 +10,7 @@
<div class="pagetopbg"> <div class="pagetopbg">
<img src="__IMAGES__/nas_help_banner.jpg" class="hpbgimg" /> <img src="__IMAGES__/nas_help_banner.jpg" class="hpbgimg" />
<div class='nhlp-search'> <div class='nhlp-search'>
<input class="nhlp-ipt" id="search-input" placeholder="{:lang('topic_nas_help.search_input_placeholder')}" autocomplete="off" /> <input class="nhlp-ipt" id="search-input" placeholder="{:lang_i18n('请输入搜索关键字,如安装赛博云空间,影视库')}" autocomplete="off" />
<img src="__IMAGES__/nas_help_search.png" class="searchimg" /> <img src="__IMAGES__/nas_help_search.png" class="searchimg" />
</div> </div>
<!-- 下拉搜索框 --> <!-- 下拉搜索框 -->
@@ -23,7 +23,7 @@
<!-- 使用教程 --> <!-- 使用教程 -->
{notempty name="article_categorys"} {notempty name="article_categorys"}
<div class="nhlppart1"> <div class="nhlppart1">
<h1 class="helph1">{:lang('topic_nas_help.article_section_title')}</h1> <h1 class="helph1">{:lang_i18n('使用教程')}</h1>
<div class="nhlp-row"> <div class="nhlp-row">
{volist name="article_categorys" id="vo" key="idx"} {volist name="article_categorys" id="vo" key="idx"}
<div class="nhlpit {gt name='idx' value='6'}nhlpit-w{/gt}"> <div class="nhlpit {gt name='idx' value='6'}nhlpit-w{/gt}">
@@ -40,7 +40,7 @@
</span> </span>
</a> </a>
{egt name="index" value="3"} {egt name="index" value="3"}
<div class="ckgdbt">{:lang('topic_nas_help.view_more')} ></div> <a class="ckgdbt" href="{:url('/index/topic/nas/help_detail', ['id' => isset($vo.article[0])?$vo.article[0]['id']:0])}">{:lang_i18n('查看更多')} ></a>
{/egt} {/egt}
{/volist} {/volist}
</div> </div>
@@ -52,7 +52,7 @@
<!-- 联系我们 --> <!-- 联系我们 -->
{notempty name="contacts"} {notempty name="contacts"}
<div class="nhlp-lxwm"> <div class="nhlp-lxwm">
<h1 class="lxwmtitle">{:lang('topic_nas_help.contact_section_title')}</h1> <h1 class="lxwmtitle">{:lang_i18n('联系我们')}</h1>
<div class="nhlp-row"> <div class="nhlp-row">
<div class="nhlp-row-content"> <div class="nhlp-row-content">
{volist name="contacts" id="co" key="idx" offset="0" length="3"} {volist name="contacts" id="co" key="idx" offset="0" length="3"}

View File

@@ -18,9 +18,9 @@
<div class="narshelpdetailPc"> <div class="narshelpdetailPc">
<!-- top 搜索--> <!-- top 搜索-->
<div class="narsssmain"> <div class="narsssmain">
<div class="ml">{:lang('topic_nas_help.module_title')}/{:lang('topic_nas_help.article_section_title')}</div> <div class="ml">{:lang_i18n('帮助中心')}/{:lang_i18n('使用教程')}</div>
<div class="nars-hlp-search"> <div class="nars-hlp-search">
<input id="search-input" placeholder="{:lang('topic_nas_help.search_input_placeholder')}" autocomplete="off" /> <input id="search-input" placeholder="{:lang_i18n('请输入搜索关键字,如安装赛博云空间,影视库')}" autocomplete="off" />
<img src="__IMAGES__/nas_help_detail_search.png" class="ssimg"> <img src="__IMAGES__/nas_help_detail_search.png" class="ssimg">
</div> </div>
<!-- 下拉搜索框 --> <!-- 下拉搜索框 -->
@@ -53,7 +53,7 @@
<!--锚点定位 --> <!--锚点定位 -->
<div class="nars-hlpdt-mr"> <div class="nars-hlpdt-mr">
<div id="title-list"> <div id="title-list">
<h2 class="tt">{:lang('topic_nas_help.content')}</h2> <h2 class="tt">{:lang_i18n('目录')}</h2>
<ul></ul> <ul></ul>
</div> </div>
</div> </div>

View File

@@ -65,7 +65,7 @@
<!--解決方案--> <!--解決方案-->
{notempty name="nas_solution"} {notempty name="nas_solution"}
<div class="nars-jjfa"> <div class="nars-jjfa">
<span class="jjfa-title">{:lang('topic_nas_index.solution_section_title')}</span> <span class="jjfa-title"><span style="color:#004BFA;">ORICO</span> {:lang_i18n('网络存储解决方案')}</span>
<div class="swiper jjfaSwiper"> <div class="swiper jjfaSwiper">
<div class="swiper-wrapper"> <div class="swiper-wrapper">
{volist name="nas_solution" id="so"} {volist name="nas_solution" id="so"}
@@ -88,7 +88,7 @@
<!--微链接 --> <!--微链接 -->
{notempty name="nas_software"} {notempty name="nas_software"}
<div class="nars-wlj"> <div class="nars-wlj">
<span class="wlj-title">{:lang('topic_nas_index.software_section_title')}</span> <span class="wlj-title"><span style="color:#004BFA">NAS</span> {:lang_i18n('配套软件')}</span>
{volist name="nas_software" id="soft" offset="0" length="3"} {volist name="nas_software" id="soft" offset="0" length="3"}
<a class="wltitem" {notempty name="soft.link"}href="{$soft.link}"{/notempty}> <a class="wltitem" {notempty name="soft.link"}href="{$soft.link}"{/notempty}>
<div class="wljcp"> <div class="wljcp">