From 2ce5ef51698430b08d2adb66133309b7999d54d6 Mon Sep 17 00:00:00 2001 From: jsasg <735273025@qq.com> Date: Thu, 5 Jun 2025 15:54:09 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20mobile=E8=81=94=E7=B3=BB=E6=88=91?= =?UTF-8?q?=E4=BB=AC=20-=20=E5=94=AE=E5=90=8E=E6=94=BF=E7=AD=96=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/index/lang/en-us/mobile.php | 10 +++ app/index/view/mobile/about_us/policy.html | 84 +++++++++++++++++++ .../index/mobile/css/aboutus_policy.css | 42 ++++++++++ 3 files changed, 136 insertions(+) create mode 100644 app/index/view/mobile/about_us/policy.html create mode 100644 public/static/index/mobile/css/aboutus_policy.css diff --git a/app/index/lang/en-us/mobile.php b/app/index/lang/en-us/mobile.php index 3ad65a6f..b7e110f2 100644 --- a/app/index/lang/en-us/mobile.php +++ b/app/index/lang/en-us/mobile.php @@ -141,4 +141,14 @@ return [ '品牌里程' => 'Brand Events', '品牌活动' => 'Tech Development', ], + + // 关于我们 - 售后政策 + '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:' + ], ]; \ No newline at end of file diff --git a/app/index/view/mobile/about_us/policy.html b/app/index/view/mobile/about_us/policy.html new file mode 100644 index 00000000..543c6b40 --- /dev/null +++ b/app/index/view/mobile/about_us/policy.html @@ -0,0 +1,84 @@ +{extend name="public/base"/} +{block name="title"} +{:lang_i18n('售后政策_注意事项')} +{/block} +{block name="style"} + +{/block} +{block name="main"} +
+ +
+ {notempty name="policy.focus_image"} + + + + {/notempty} +
+ {:lang_i18n('售后政策')} +

{:lang_i18n('ORICO/奥睿科商城为您提供七天包退、15天换新、1年保修、终身维护的服务承诺')}

+
+ {notempty name="policy.banner_1"} + {volist name="policy.banner_1" id="b1"} +
+ {$b1.title} +
{$b1.desc|raw}
+
+ {/volist} + {/notempty} + + {notempty name="policy.banner_2"} + {volist name="policy.banner_2" id="b2"} + +
+ {$b2.title} +
{$b2.desc|raw}
+
+ {/volist} + {/notempty} + + {notempty name="policy.banner_3"} +
+ {:lang_i18n('为了保障您的合法权益,敬请关注以下信息')} +

{:lang_i18n('为了得到深圳市元创时代科技有限公司给予您的“包修、包换、包退”的权益,请您:')}

+
+ {volist name="policy.banner_3" id="b3"} + {$b3.title}
+ {/volist} +
+
+ {/notempty} + + {notempty name="policy.banner_4"} + {volist name="policy.banner_4" id="b4"} + +
+ {$b4.title} +
{$b4.desc|raw}
+
+ {/volist} + {/notempty} + + {notempty name="policy.banner_5"} +
+ {:lang_i18n('特别说明')} +

+ {volist name="policy.banner_5" id="b5" key="k"} + {$k+1}、{$b5.title}
+ {/volist} +

+
+ {/notempty} + + {notempty name="policy.banner_6"} + {volist name="policy.banner_6" id="b6"} + +
+ {$b6.title} +
{$b6.desc|raw}
+
+ {/volist} + {/notempty} +
+
+{/block} \ No newline at end of file diff --git a/public/static/index/mobile/css/aboutus_policy.css b/public/static/index/mobile/css/aboutus_policy.css new file mode 100644 index 00000000..0a1193a1 --- /dev/null +++ b/public/static/index/mobile/css/aboutus_policy.css @@ -0,0 +1,42 @@ +.oricoEGapp-policy { + display: flex; + flex-direction: column; + margin-top: 3.3rem; + background: #fff; + padding-bottom: 1rem; +} + +.oricoEGapp-policy .pl-img { + width: 100%; +} + +.oricoEGapp-policy .m_Container { + display: flex; + flex-direction: column; + margin: 0 1rem; + margin-top: 0.5rem; +} + +.oricoEGapp-policy .m_Container .textpoint { + margin-top: 1.12rem; + text-align: center; + color: #333; + font-size: 0.85rem; +} + +.oricoEGapp-policy .m_Container .decs { + margin-top: 0.68rem; + color: #666; + font-size: 0.64rem; + line-height: 1.07rem; + text-align: center; + width: 100%; +} + +.oricoEGapp-policy .m_Container .decs-left { + text-align: left; +} + +.oricoEGapp-policy .m-t { + margin: 0.5rem 0; +} \ No newline at end of file