feat: mobile联系我们 - 售后政策页
This commit is contained in:
@@ -141,4 +141,14 @@ return [
|
|||||||
'品牌里程' => 'Brand Events',
|
'品牌里程' => 'Brand Events',
|
||||||
'品牌活动' => 'Tech Development',
|
'品牌活动' => '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:'
|
||||||
|
],
|
||||||
];
|
];
|
||||||
84
app/index/view/mobile/about_us/policy.html
Normal file
84
app/index/view/mobile/about_us/policy.html
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
{extend name="public/base"/}
|
||||||
|
{block name="title"}
|
||||||
|
<title>{:lang_i18n('售后政策_注意事项')}</title>
|
||||||
|
{/block}
|
||||||
|
{block name="style"}
|
||||||
|
<link rel="stylesheet" href="__CSS__/aboutus_policy.css">
|
||||||
|
{/block}
|
||||||
|
{block name="main"}
|
||||||
|
<div class="oricoEGapp">
|
||||||
|
<!-- 内容 -->
|
||||||
|
<div class="oricoEGapp-policy">
|
||||||
|
{notempty name="policy.focus_image"}
|
||||||
|
<a {notempty name="policy.focus_image.link"}href="{$policy.focus_image.link}"{/notempty}>
|
||||||
|
<img src="{$policy.focus_image.image}" class="pl-img" />
|
||||||
|
</a>
|
||||||
|
{/notempty}
|
||||||
|
<div class="m_Container">
|
||||||
|
<strong class="textpoint">{:lang_i18n('售后政策')}</strong>
|
||||||
|
<p class="decs">{:lang_i18n('ORICO/奥睿科商城为您提供七天包退、15天换新、1年保修、终身维护的服务承诺')}</p>
|
||||||
|
</div>
|
||||||
|
{notempty name="policy.banner_1"}
|
||||||
|
{volist name="policy.banner_1" id="b1"}
|
||||||
|
<div class="m_Container">
|
||||||
|
<strong class="textpoint">{$b1.title}</strong>
|
||||||
|
<div class="decs">{$b1.desc|raw}</div>
|
||||||
|
</div>
|
||||||
|
{/volist}
|
||||||
|
{/notempty}
|
||||||
|
|
||||||
|
{notempty name="policy.banner_2"}
|
||||||
|
{volist name="policy.banner_2" id="b2"}
|
||||||
|
<img src="{$b2.image}" class="pl-img m-t" />
|
||||||
|
<div class="m_Container">
|
||||||
|
<strong class="textpoint">{$b2.title}</strong>
|
||||||
|
<div class="decs decs-left">{$b2.desc|raw}</div>
|
||||||
|
</div>
|
||||||
|
{/volist}
|
||||||
|
{/notempty}
|
||||||
|
|
||||||
|
{notempty name="policy.banner_3"}
|
||||||
|
<div class="m_Container">
|
||||||
|
<strong class="textpoint">{:lang_i18n('为了保障您的合法权益,敬请关注以下信息')}</strong>
|
||||||
|
<p class="decs">{:lang_i18n('为了得到深圳市元创时代科技有限公司给予您的“包修、包换、包退”的权益,请您:')}</p>
|
||||||
|
<div class="decs decs-left">
|
||||||
|
{volist name="policy.banner_3" id="b3"}
|
||||||
|
{$b3.title}<br/>
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/notempty}
|
||||||
|
|
||||||
|
{notempty name="policy.banner_4"}
|
||||||
|
{volist name="policy.banner_4" id="b4"}
|
||||||
|
<img src="{$b4.image}" class="pl-img m-t" />
|
||||||
|
<div class="m_Container">
|
||||||
|
<strong class="textpoint">{$b4.title}</strong>
|
||||||
|
<div class="decs decs-left">{$b4.desc|raw}</div>
|
||||||
|
</div>
|
||||||
|
{/volist}
|
||||||
|
{/notempty}
|
||||||
|
|
||||||
|
{notempty name="policy.banner_5"}
|
||||||
|
<div class="m_Container">
|
||||||
|
<strong class="textpoint">{:lang_i18n('特别说明')}</strong>
|
||||||
|
<p class="decs decs-left">
|
||||||
|
{volist name="policy.banner_5" id="b5" key="k"}
|
||||||
|
{$k+1}、{$b5.title}<br/>
|
||||||
|
{/volist}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{/notempty}
|
||||||
|
|
||||||
|
{notempty name="policy.banner_6"}
|
||||||
|
{volist name="policy.banner_6" id="b6"}
|
||||||
|
<img src="{$b6.image}" class="pl-img m-t" />
|
||||||
|
<div class="m_Container">
|
||||||
|
<strong class="textpoint">{$b6.title}</strong>
|
||||||
|
<div class="decs decs-left">{$b6.desc|raw}</div>
|
||||||
|
</div>
|
||||||
|
{/volist}
|
||||||
|
{/notempty}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/block}
|
||||||
42
public/static/index/mobile/css/aboutus_policy.css
Normal file
42
public/static/index/mobile/css/aboutus_policy.css
Normal file
@@ -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;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user